-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
61 lines (61 loc) · 1.75 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
59
60
61
{
"name": "woohoolabs/yang",
"description": "Woohoo Labs. Yang",
"type": "library",
"keywords": ["Woohoo Labs.", "Yang", "JSON API", "PSR-7", "PSR-18"],
"license": "MIT",
"authors": [
{
"name": "Máté Kocsis",
"email": "kocsismate@woohoolabs.com"
}
],
"support": {
"issues": "https://github.com/woohoolabs/yang/issues",
"source": "https://github.com/woohoolabs/yang"
},
"require": {
"php": "^7.4.0||^8.0.0",
"php-http/httplug": "^2.0.0",
"psr/http-client": "^1.0.0",
"psr/http-message-implementation": "^1.0.0"
},
"require-dev": {
"guzzlehttp/psr7": "^2.6.0",
"php-http/guzzle7-adapter": "^1.0.0",
"phpstan/phpstan": "^1.10.12",
"phpstan/phpstan-phpunit": "^1.3.0",
"phpstan/phpstan-strict-rules": "^1.5.0",
"phpunit/phpunit": "^9.6.0",
"squizlabs/php_codesniffer": "^3.7.0",
"woohoolabs/coding-standard": "^2.4.0",
"woohoolabs/releaser": "^1.1.0"
},
"suggest": {
"php-http/guzzle7-adapter": "Allows to use Guzzle 7 as the HTTP client implementation"
},
"autoload": {
"psr-4": {
"WoohooLabs\\Yang\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WoohooLabs\\Yang\\Tests\\": "tests/",
"WoohooLabs\\Yang\\Examples\\": "examples/"
}
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse --level max src tests",
"phpcs": "phpcs",
"phpcbf": "phpcbf"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform-check": false
}
}