forked from NickChen14/slim-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (42 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
{
"name": "debril/slim-angular",
"description": "A raw web stack based on Angular, Bootstrap and Slim Framework",
"keywords": ["slim", "stack","docker", "rest", "router", "psr7", "angular", "gulp", "less", "bootstrap"],
"homepage": "https://github.com/alexdebril/slim-angular",
"license": "MIT",
"authors": [
{
"name": "Alex Debril",
"email": "alex.debril@gmail.com",
"homepage": "http://www.debril.org/"
}
],
"require": {
"php": ">=5.6.0",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"monolog/monolog": "^1.17",
"slim/csrf": "^0.7.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0",
"phing/phing": "^2.15"
},
"autoload": {
"psr-4": {
"App\\": "php/app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "php/tests/"
}
},
"scripts": {
"start": "php -S 0.0.0.0:8080 -t public public/index.php",
"build": "./vendor/bin/phing",
"gulp": "./node_modules/gulp/bin/gulp.js watch",
"test": "phpunit",
"newman": "./node_modules/newman/bin/newman.js run rest-api.postman_collection.json"
}
}