forked from codecourse/slender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 895 Bytes
/
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
{
"name": "codecourse/slender",
"description": "A slender starter structure for Slim",
"keywords": ["framework", "slim", "codecourse"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.0.0",
"slim/slim": "^4.11",
"slim/twig-view": "^3.3",
"symfony/var-dumper": "^3.2",
"vlucas/phpdotenv": "^2.4",
"slim/psr7": "^1.6",
"php-di/php-di": "^6.0",
"kanellov/slim-twig-flash": "^0.2.0",
"slim/csrf": "^1.3",
"slim/http-cache": "^1.1",
"slim/flash": "^0.4.0",
"selective/basepath": "^2.1",
"illuminate/database": "^8.83"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}