This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
65 lines (65 loc) · 1.88 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
{
"name": "leafs/skeleton",
"description": "A boiler-plate application for rapid development with Leaf PHP.",
"type": "library",
"keywords": [
"framework",
"leaf",
"leafPHP",
"leaf api"
],
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "[email protected]",
"homepage": "https://mychi.netlify.com",
"role": "Developer"
}
],
"require": {
"leafs/mvc-core": "*",
"leafs/leaf": "^3.3",
"leafs/logger": "*",
"leafs/cors": "*",
"leafs/router": "*",
"leafs/auth": "*",
"leafs/form": "*",
"leafs/bareui": "*"
},
"autoload": {
"psr-4": {
"Db\\": "db/",
"Lib\\": "lib/",
"App\\": "app/",
"Config\\": "config/",
"Models\\": "models/",
"Helpers\\": "helpers/",
"Workers\\": "workers/",
"Database\\": "database/",
"App\\Http\\": "app/http/",
"App\\Utils\\": "app/utils/",
"App\\Views\\": "app/views/",
"App\\Models\\": "app/models/",
"Controllers\\": "controllers/",
"App\\Scripts\\": "app/scripts/",
"App\\Workers\\": "app/workers/",
"App\\Console\\": "app/console/",
"App\\Helpers\\": "app/helpers/",
"App\\Services\\": "app/services/",
"App\\Controllers\\": "app/controllers/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": false
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php -r \"unlink('README.MD'); rename('README2.MD', 'README.MD');\""
]
},
"minimum-stability": "dev",
"prefer-stable": true
}