-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 992 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
35
36
37
38
39
{
"name": "harryosmar/php-bootstrap",
"description": "php bootstrapping for simple web app",
"optimize-autoloader": true,
"type": "project",
"authors": [
{
"name": "Harry Sitohang",
"email": "harryosmarsitohang@gmail.com"
}
],
"require": {
"php": ">=7.0.0",
"league/route": "^3.0",
"symfony/console": "^3.3",
"league/fractal": "^0.17.0",
"phpcollection/phpcollection": "^0.5.0",
"zendframework/zend-diactoros": "^1.7",
"harryosmar/php-restful-api-response": "v1.1.4"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.7"
},
"autoload": {
"psr-4": {
"PhpBootstrap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit -c phpunit.xml"
}
}