-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·50 lines (48 loc) · 1.22 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
{
"name": "slim/slim-skeleton",
"description": "A Slim Framework skeleton application for rapid development",
"keywords": [
"microframework",
"rest",
"router",
"psr7"
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"bshaffer/oauth2-server-php": "^1.11",
"monolog/monolog": "^1.24",
"php-di/php-di": "^6.0",
"respect/validation": "^2.0",
"selective/validation": "^0.9.0",
"slim/flash": "^0.4.0",
"slim/php-view": "^2.2",
"slim/psr7": "^0.5",
"slim/slim": "^4.1",
"vlucas/phpdotenv": "^5.2"
},
"require-dev": {
"nunomaduro/phpinsights": "^1.14",
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "3.*"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S localhost:8081 -t public -c php.ini",
"test": "phpunit",
"start-remote": "php -S 0.0.0.0:8081 -t public -c php.ini"
}
}