-
Notifications
You must be signed in to change notification settings - Fork 83
/
composer.json
95 lines (95 loc) · 3.14 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "friendsofsymfony/http-cache-bundle",
"type": "symfony-bundle",
"description": "Set path based HTTP cache headers and send invalidation requests to your HTTP cache",
"keywords": [
"http",
"caching",
"purge",
"invalidation",
"varnish",
"esi"
],
"homepage": "https://github.com/FriendsOfSymfony/FOSHttpCacheBundle",
"license": "MIT",
"authors": [
{
"name": "Liip AG",
"homepage": "http://www.liip.ch/"
},
{
"name": "Driebit",
"homepage": "http://www.driebit.nl",
"email": "[email protected]"
},
{
"name": "Community contributions",
"homepage": "https://github.com/friendsofsymfony/FOSHttpCacheBundle/contributors"
}
],
"require": {
"php": "^8.1",
"friendsofsymfony/http-cache": "^2.15 || ^3.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/expression-language": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/security-bundle": "^6.4 || ^7.0"
},
"require-dev": {
"php-http/guzzle7-adapter": "^0.1.1",
"php-http/message": "^1.0 || ^2.0",
"php-http/httplug": "^2.2.0",
"php-http/discovery": "^1.13",
"guzzlehttp/guzzle": "^7.2",
"mockery/mockery": "^1.6.9",
"monolog/monolog": "*",
"symfony/browser-kit": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/finder": "^6.4 || ^7.0",
"phpunit/phpunit": "^10.5",
"symfony/twig-bundle": "^6.4 || ^7.0",
"twig/twig": "^v3.8",
"symfony/yaml": "^6.4 || ^7.0",
"symfony/css-selector": "^6.4 || ^7.0",
"symfony/monolog-bundle": "^3.0",
"symfony/routing": "^6.4 || ^7.0",
"matthiasnoback/symfony-config-test": "^4.3.0 || ^5.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.3.1 || ^5.0",
"phpstan/phpstan": "^2",
"phpstan/phpstan-symfony": "^2",
"phpstan/extension-installer": "^1.4",
"jean-beru/fos-http-cache-cloudfront": "^1.1",
"friendsofphp/php-cs-fixer": "^3.54"
},
"suggest": {
"jean-beru/fos-http-cache-cloudfront": "To use CloudFront proxy",
"sensio/framework-extra-bundle": "For Tagged Cache Invalidation",
"symfony/expression-language": "For Tagged Cache Invalidation",
"symfony/console": "To send invalidation requests from the command line"
},
"conflict": {
"twig/twig": "<1.12.0",
"symfony/monolog-bridge": "<3.4.4"
},
"autoload": {
"psr-4": {
"FOS\\HttpCacheBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FOS\\HttpCacheBundle\\Tests\\": "tests/"
},
"classmap": [
"tests/Functional/Fixtures/app/AppKernel.php"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true
}
}
}