-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
29 lines (29 loc) · 898 Bytes
/
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
{
"name": "toflar/psr6-symfony-http-cache-store",
"description": "An alternative store implementation for Symfony's HttpCache reverse proxy that supports auto-pruning of expired entries and cache invalidation by tags.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Yanick Witschi",
"email": "yanick.witschi@terminal42.ch"
}
],
"require": {
"php": "^8.0",
"symfony/lock": "^6.0 || ^7.0",
"symfony/cache": "^6.0 || ^7.0",
"symfony/http-foundation": "^6.0 || ^7.0",
"symfony/http-kernel": "^6.0 || ^7.0",
"symfony/options-resolver": "^6.0 || ^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Toflar\\Psr6HttpCacheStore\\": "src"
}
},
"minimum-stability": "dev"
}