-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
46 lines (46 loc) · 1.25 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
{
"name": "brightfish/caching-guzzle",
"description": "Cache HTTP responses through Guzzle middleware",
"type": "library",
"keywords": ["guzzle", "middleware", "cache", "laravel", "http-cache"],
"license": "GPL-3.0-only",
"homepage": "https://github.com/brightfish-be/caching-guzzle#readme",
"authors": [
{
"name": "Arnaud Coolsaet",
"email": "[email protected]",
"homepage": "https://dotburo.org"
},
{
"name": "Peter Forret",
"email": "[email protected]",
"homepage": "https://brightfish.be"
}
],
"require": {
"php": "^7.1|^8.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"psr/simple-cache": "^1"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"friendsofphp/php-cs-fixer": "^2.16"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Brightfish\\CachingGuzzle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"version": "1.3.3"
}