blob: 4d77920b748c593793f31c453f457f8424840140 (
plain)
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
|
{
"name": "http-interop/http-factory-tests",
"description": "Unit tests for HTTP factories",
"keywords": [
"psr-7",
"psr-17",
"http",
"factory",
"test"
],
"license": "MIT",
"authors": [
{
"name": "PHP-FIG",
"homepage": "http://www.php-fig.org/"
}
],
"require": {
"php": "^7.1 || ^8.0",
"psr/http-factory": "^1.0",
"phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
},
"autoload": {
"psr-4": {
"Interop\\Http\\Factory\\": "test/"
}
}
}
|