forked from FriendsOfSymfony/FOSHttpCacheBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 2.15 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
{
"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": "tech@driebit.nl"
},
{
"name": "Community contributions",
"homepage": "https://github.com/friendsofsymfony/FOSHttpCacheBundle/contributors"
}
],
"require": {
"php": "^5.6.0||^7.0.0",
"friendsofsymfony/http-cache": "^2.0.0",
"symfony/framework-bundle": "^2.8||^3.0",
"symfony/http-foundation": "~2.8.13||^3.1.6"
},
"require-dev": {
"phpunit/phpunit": "^5.5.0",
"php-http/guzzle6-adapter": "^1.0",
"php-http/message": "^1.0",
"mockery/mockery": "0.9.*",
"monolog/monolog": "*",
"sensio/framework-extra-bundle": "^3.0",
"symfony/symfony": "^2.8||^3.0",
"symfony/phpunit-bridge": "^2.7||^3.0",
"symfony/expression-language": "^2.4||^3.0",
"symfony/monolog-bundle": "^2.3||^3.0",
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
"matthiasnoback/symfony-dependency-injection-test": "^0.7.4"
},
"suggest": {
"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"
},
"autoload": {
"psr-4": {
"FOS\\HttpCacheBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FOS\\HttpCacheBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
}
}