-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
70 lines (70 loc) · 2.19 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
62
63
64
65
66
67
68
69
70
{
"name": "http-interop/http-factory-discovery",
"description": "Utility to locate available HTTP factory implementations",
"keywords": [
"discovery",
"factory",
"client",
"http",
"psr-7",
"psr7",
"psr-17",
"psr17",
"psr-18",
"psr18"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/http-interop/http-factory-discovery",
"authors": [
{
"name": "Woody Gilk",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"require": {
"php": ">=7.1",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"nyholm/psr7": "^1.0",
"php-http/guzzle6-adapter": "^2.0",
"phpstan/phpstan": "^0.10.3",
"phpstan/phpstan-phpunit": "^0.10.0",
"phpunit/phpunit": "^7.3",
"squizlabs/php_codesniffer": "^3.3"
},
"suggest": {
"http-interop/http-factory-diactoros": "HTTP Factory implementation for Zend Diactoros",
"http-interop/http-factory-guzzle": "HTTP Factory implementation for Guzzle",
"http-interop/http-factory-slim": "HTTP Factory implementation for Slim",
"nyholm/psr7": "HTTP Messages with Factory implementation",
"php-http/guzzle6-adapter": "HTTP Client implementation for Guzzle",
"zendframework/zend-diactoros": "HTTP Messages with Factory implementation",
"sunrise/http-factory": "HTTP Messages with Factory implementation"
},
"autoload": {
"psr-4": {
"Http\\Factory\\Discovery\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Http\\Factory\\Discovery\\": "tests/"
}
},
"scripts": {
"analyze": "phpstan analyse -l 7 --no-progress src tests",
"check": "phpcs",
"test": "phpunit --testdox",
"test-factory": "phpunit --testsuite factory --testdox",
"test-all-factory": "scripts/test-all-factory",
"test-client": "phpunit --testsuite client --testdox",
"test-all-client": "scripts/test-all-client"
}
}