-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.02 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.02 KB
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
{
"name": "slim/slim-skeleton",
"description": "A Slim Framework skeleton application for rapid development",
"homepage": "http://github.com/slimphp/Slim-Skeleton",
"license": "MIT",
"authors": [
{
"name": "Josh Lockhart",
"email": "info@joshlockhart.com",
"homepage": "http://www.joshlockhart.com/"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"monolog/monolog": "^2.2",
"php-di/php-di": "^6.3",
"slim/psr7": "^1.3",
"slim/slim": "^4.7"
},
"require-dev": {
"jangregor/phpstan-prophecy": "^0.8.1",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "^0.12.64",
"phpunit/phpunit": "^8.5"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/api/"
}
},
"scripts": {
"start": "php -S localhost:8080 -t ./",
"test": "phpunit"
}
}