-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
34 lines (34 loc) · 901 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
33
34
{
"name": "havenshen/slim-born",
"description": "Slim Framework 3 skeleton application has authentication.",
"type": "project",
"keywords": ["slim", "slim 3", "skeleton", "authentication"],
"homepage": "https://github.com/HavenShen/slim-born",
"license": "MIT",
"authors": [
{
"name": "HavenShen",
"email": "havenshen@gmail.com"
}
],
"require": {
"slim/slim": "4.*",
"slim/twig-view": "^3.0",
"illuminate/database": "^6.20",
"respect/validation": "^1.0",
"slim/csrf": "^1.0.0",
"slim/flash": "^0.1.0",
"vlucas/phpdotenv": "^2.4",
"php-di/php-di": "^6.2",
"slim/psr7": "^1.1"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"symfony/var-dumper": "^5.1"
}
}