-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
84 lines (84 loc) · 2.58 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
84
{
"name": "leafs/mvc",
"description": "A lightweight PHP MVC framework powered by Leaf",
"type": "library",
"keywords": [
"framework",
"leaf",
"leafPHP",
"mvc",
"leaf mvc"
],
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "mickdd22@gmail.com",
"homepage": "https://mychi.netlify.app",
"role": "Maintainer"
}
],
"require": {
"leafs/aloe": "^1.4",
"illuminate/console": "^8.75",
"leafs/blade": "*",
"leafs/mvc-core": "dev-main",
"leafs/leaf": "^3.3",
"leafs/logger": "*",
"leafs/cors": "*",
"leafs/auth": "*",
"leafs/db": "^2.1",
"leafs/vite": "^0.1.0",
"leafs/devtools": "^0.1.0"
},
"require-dev": {
"fakerphp/faker": "^1.16"
},
"autoload": {
"psr-4": {
"Lib\\": "lib/",
"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/"
}
},
"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 \"unlink('README.MD'); rename('README2.MD', 'README.MD');\""
],
"post-create-project-cmd": [
"@php leaf key:generate"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}