-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.25 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
{
"name": "leafs/mvc",
"description": "A lightweight PHP MVC framework for rapid API development.",
"type": "library",
"keywords": [
"framework",
"leaf",
"leafPHP",
"mvc",
"leaf mvc"
],
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "[email protected]",
"homepage": "https://mychi.netlify.app",
"role": "Maintainer"
}
],
"require": {
"leafs/aloe": "^1.2",
"illuminate/console": "^8.75",
"leafs/blade": "^1.2",
"leafs/mvc-core": "1.1.6",
"leafs/leaf": "v3.0-rc",
"leafs/logger": "^1.0",
"leafs/cors": "^1.0",
"leafs/router": "^0.1.4",
"leafs/auth": "^2.0",
"leafs/form": "^1.0",
"erusev/parsedown": "^1.7",
"leafs/mail": "^1.0",
"phpmailer/phpmailer": "^6.5"
},
"require-dev": {
"fakerphp/faker": "^1.16"
},
"autoload": {
"psr-4": {
"Lib\\": "lib/",
"App\\": "app/",
"Config\\": "config/",
"App\\Jobs\\": "app/jobs/",
"App\\Http\\": "app/http/",
"App\\Views\\": "app/views/",
"App\\Utils\\": "app/utils/",
"App\\Models\\": "app/models/",
"App\\Workers\\": "app/workers/",
"App\\Console\\": "app/console/",
"App\\Scripts\\": "app/scripts/",
"App\\Helpers\\": "app/helpers/",
"App\\Services\\": "app/services/",
"App\\Controllers\\": "app/controllers/",
"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": {
"composer/package-versions-deprecated": 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');\""
]
},
"minimum-stability": "dev",
"prefer-stable": true
}