-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 914 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
{
"name": "harryosmar/php-restful-api-response",
"description": "php restful api response implement PSR-7: HTTP message interfaces",
"type": "library",
"authors": [
{
"name": "Harry Sitohang",
"email": "harryosmarsitohang@gmail.com"
}
],
"require": {
"php": ">=7.0",
"league/fractal": "^0.17.0",
"zendframework/zend-diactoros": "^1.7"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.7"
},
"autoload": {
"psr-4": {
"PhpRestfulApiResponse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpRestfulApiResponse\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit -c phpunit.xml --coverage-text --coverage-clover=coverage.clover --debug"
}
}