-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
58 lines (58 loc) · 1.7 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "woohoolabs/yin",
"description": "Woohoo Labs. Yin",
"type": "library",
"keywords": ["Woohoo Labs.", "Yin", "JSON API", "PSR-7"],
"license": "MIT",
"authors": [
{
"name": "Máté Kocsis",
"email": "kocsismate@woohoolabs.com"
}
],
"support": {
"issues": "https://github.com/woohoolabs/yin/issues",
"source": "https://github.com/woohoolabs/yin"
},
"require": {
"php": "^7.1.0||^8.0.0",
"psr/http-message-implementation": "^1.0.0"
},
"require-dev": {
"justinrainbow/json-schema": "^5.2.0",
"laminas/laminas-diactoros": "^2.0.0",
"laminas/laminas-httphandlerrunner": "^1.0.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^7.0.0||^8.2.0||^9.0.0",
"seld/jsonlint": "^1.7.0",
"squizlabs/php_codesniffer": "^3.5.1",
"woohoolabs/coding-standard": "^1.1.2",
"woohoolabs/releaser": "^1.1"
},
"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",
"phpstan": "phpstan",
"phpcs": "phpcs",
"phpcbf": "phpcbf"
},
"config": {
"sort-packages": true
}
}