-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
48 lines (48 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
45
46
47
48
{
"name": "tuupola/http-factory",
"description": "Lightweight autodiscovering PSR-17 HTTP factories",
"keywords": [
"psr-7",
"psr-17",
"http"
],
"homepage": "https://github.com/tuupola/http-factory",
"license": "MIT",
"authors": [
{
"name": "Mika Tuupola",
"email": "tuupola@appelsiini.net",
"homepage": "https://appelsiini.net/",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.1|^8.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"http-interop/http-factory-tests": "^0.9.0",
"overtrue/phplint": "^3.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"squizlabs/php_codesniffer": "^3.0"
},
"conflict": {
"nyholm/psr7": "<1.0"
},
"provide": {
"psr/http-factory-implementation": "^1.0"
},
"autoload": {
"psr-4": {
"Tuupola\\Http\\Factory\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tuupola\\Http\\Factory\\": "tests"
}
}
}