-
Notifications
You must be signed in to change notification settings - Fork 60
/
composer.json
65 lines (65 loc) · 2.03 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "friendsofsymfony/http-cache",
"type": "library",
"description": "Tools to manage HTTP caching proxies with PHP",
"keywords": [ "http", "caching", "purge", "invalidation", "varnish", "nginx" ],
"homepage": "https://github.com/friendsofsymfony/FOSHttpCache",
"license": "MIT",
"authors": [
{
"name": "Liip AG",
"homepage": "http://www.liip.ch/"
},
{
"name": "Driebit",
"homepage": "http://www.driebit.nl",
"email": "tech@driebit.nl"
},
{
"name": "Community contributions",
"homepage": "https://github.com/friendsofsymfony/FOSHttpCache/contributors"
}
],
"require": {
"php": "^8.1",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/options-resolver": "^6.4 || ^7.0",
"php-http/client-common": "^1.1.0 || ^2.0",
"php-http/discovery": "^1.12",
"php-http/async-client-implementation": "^1.1.0 || ^2.0",
"psr/http-client-implementation": "^1.0 || ^2.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"mockery/mockery": "^1.6.0",
"monolog/monolog": "^1.0",
"php-http/guzzle7-adapter": "^1",
"php-http/mock-client": "^1.6.0",
"symfony/process": "^6.4|| ^7.0",
"symfony/http-kernel": "^6.4|| ^7.0",
"phpunit/phpunit": "^10.5"
},
"conflict": {
"toflar/psr6-symfony-http-cache-store": "<2.2.1"
},
"suggest": {
"friendsofsymfony/http-cache-bundle": "For integration with the Symfony framework",
"monolog/monolog": "For logging issues while invalidating",
"phpunit/phpunit": "To build tests with the WebServerSubscriber, ^10.0"
},
"autoload": {
"psr-4": {
"FOS\\HttpCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FOS\\HttpCache\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}