-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·36 lines (36 loc) · 1.05 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
{
"name": "edhaase/slim-skeleton",
"description": "Scaffolding for a web service or application with Slim",
"license": "MIT",
"type": "project",
"keywords": ["slim", "skeleton"],
"authors": [{
"name": "Edward Haase",
"email": "[email protected]"
}],
"require": {
"php": ">=5.5.0",
"slim/slim": "~3.1",
"monolog/monolog": "^1.17",
"oscarotero/psr7-middlewares": "^3.8",
"tedivm/stash": "^0.13.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5",
"codeception/codeception": "^2.1"
},
"scripts": {
"codecept": "codecept",
"test": "codecept run",
"cs": "phpcs --standard=PSR2 src/",
"cbf": "phpcbf --standard=PSR2 src/",
"serve": "php -S 0.0.0.0:3000 -t public/ public/index.php",
"post-create-project-cmd": "php -r \"copy('config.example.php', 'config.php');\"",
"bootstrap": "@post-create-project-cmd"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
}
}