-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.13 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
{
"name": "services/http-factory-nyholm",
"type": "library",
"description": "Provides nyholm Psr-17 http-factory implementation",
"keywords": [
"psr-7",
"psr-17",
"http-message",
"http-factory",
"service-provider"
],
"license": "MIT",
"homepage": "https://github.com/php-services/http-factory-nyholm",
"support": {
"issues": "https://github.com/php-services/http-factory-nyholm/issues",
"source": "https://github.com/php-services/http-factory-nyholm"
},
"authors": [
{
"name": "pmall",
"email": "pierre.mallinjoud@gmail.com"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.0",
"container-interop/service-provider": "^0.4.0",
"nyholm/psr7": "^1.0",
"psr/container": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"eloquent/phony-kahlan": "^2.0",
"kahlan/kahlan": "^4.0",
"phpstan/phpstan": "^0.11.2"
},
"autoload": {
"psr-4": {
"Services\\Http\\": "src"
}
}
}