forked from woohoolabs/yin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.33 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
44
45
46
47
{
"name": "woohoolabs/yin",
"description": "Woohoo Labs. Yin",
"type": "library",
"keywords": ["Woohoo Labs.", "Yin", "JSON API", "PSR-7"],
"homepage": "http://yin.woohoolabs.com",
"license": "MIT",
"authors": [
{
"name":"Máté Kocsis",
"email":"[email protected]"
}
],
"support": {
"issues": "https://github.com/woohoolabs/yin/issues",
"source": "https://github.com/woohoolabs/yin"
},
"require": {
"php":"^5.6.0||^7.0.0",
"psr/http-message-implementation": "^1.0.0"
},
"require-dev": {
"justinrainbow/json-schema": "^2.0.0",
"phpunit/phpunit": "^5.4.0",
"seld/jsonlint": "^1.4.0",
"squizlabs/php_codesniffer": "^2.3.1",
"zendframework/zend-diactoros": "^1.3.0"
},
"suggest": {
"justinrainbow/json-schema": "Allows to validate the request and response body against the JSON API schema",
"seld/jsonlint": "Allows to lint the request and response body"
},
"autoload": {
"psr-4": {
"WoohooLabs\\Yin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WoohooLabs\\Yin\\Tests\\": "tests/",
"WoohooLabs\\Yin\\Examples\\": "examples/"
}
},
"scripts": {
"test": "phpunit"
}
}