-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
83 lines (83 loc) · 2.74 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "friendlylabs/surveyr",
"description": "An open source form builder for everyone",
"type": "project",
"keywords": [ "php", "origin", "leaf", "leafs", "starter", "kit", "simple", "minimal" ],
"license": "MIT",
"authors": [
{
"name": "Abdulbasit Rubeya",
"email": "[email protected]",
"homepage": "https://github.com/ibnsultan",
"role": "Maintainer"
}
],
"require": {
"leafs/aloe": "*",
"illuminate/console": "^8.75",
"leafs/blade": "*",
"leafs/mvc-core": "^1.7",
"leafs/leaf": "^3.7",
"leafs/logger": "*",
"leafs/cors": "*",
"leafs/auth": "*",
"leafs/db": "*",
"leafs/vite": "*",
"leafs/csrf": "^0.5.1",
"nette/mail": "^4.0",
"google/apiclient": "^2.17"
},
"require-dev": {
"fakerphp/faker": "^1.16"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Tests\\": "tests/",
"Config\\": "config/",
"App\\Http\\": "app/http/",
"App\\Jobs\\": "app/jobs/",
"App\\Lang\\": "app/lang/",
"App\\Mail\\": "app/mail/",
"App\\Views\\": "app/views/",
"App\\Utils\\": "app/utils/",
"App\\Events\\": "app/events/",
"App\\Models\\": "app/models/",
"App\\Workers\\": "app/workers/",
"App\\Console\\": "app/console/",
"App\\Scripts\\": "app/scripts/",
"App\\Helpers\\": "app/helpers/",
"App\\Channels\\": "app/channels/",
"App\\Services\\": "app/services/",
"App\\Middleware\\": "app/middleware/",
"App\\Components\\": "app/components/",
"App\\Controllers\\": "app/controllers/",
"App\\Notifications\\": "app/notifications/",
"App\\Database\\Seeds\\": "app/database/seeds/",
"App\\Database\\Schema\\": "app/database/schema/",
"App\\Database\\Factories\\": "app/database/factories/"
},
"exclude-from-classmap": [
"app/database/migrations"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": false,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php -r \"if (file_exists('README2.MD')) {unlink('README.MD'); rename('README2.MD', 'README.MD');}\""
],
"post-create-project-cmd": [
"@php leaf key:generate",
"@php leaf link"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}