mirror of
https://github.com/FriendsOfSymfony/FOSHttpCache.git
synced 2026-03-23 22:42:18 +01:00
66 lines
2.1 KiB
JSON
66 lines
2.1 KiB
JSON
{
|
|
"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 || ^8.0",
|
|
"symfony/options-resolver": "^6.4 || ^7.0 || ^8.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 || ^8.0",
|
|
"symfony/http-kernel": "^6.4|| ^7.0 || ^8.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
|
|
}
|
|
}
|
|
}
|