-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
54 lines (54 loc) · 1.29 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
{
"name": "amphp/http-client-cache",
"description": "An async HTTP cache for Amp's HTTP client.",
"type": "library",
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-filter": "*",
"ext-hash": "*",
"amphp/amp": "^3",
"amphp/byte-stream": "^2",
"amphp/http": "^2",
"amphp/http-client": "^5",
"amphp/cache": "^2",
"amphp/pipeline": "^1",
"psr/log": "^3|^2|^1.1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"amphp/php-cs-fixer-config": "^2",
"monolog/monolog": "^3",
"amphp/log": "^2",
"amphp/phpunit-util": "^3",
"amphp/file": "^3",
"psalm/phar": "^5.6"
},
"license": "MIT",
"authors": [
{
"name": "Niklas Keller",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Amp\\Http\\Client\\Cache\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Amp\\Http\\Client\\Cache\\": "test"
}
},
"conflict": {
"amphp/file": "<3 || >=4"
},
"scripts": {
"test": "php vendor/bin/phpunit",
"code-style": "php vendor/bin/php-cs-fixer fix"
}
}