-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
49 lines (49 loc) · 1.41 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
{
"name": "emanueleminotto/twig-cache-bundle",
"description": "Symfony 2 Bundle for twigphp/twig-cache-extension",
"keywords": [
"bundle",
"cache",
"symfony",
"twig"
],
"license": "MIT",
"authors": [
{
"name": "Emanuele Minotto",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"twig/cache-extension": "^1.4"
},
"require-dev": {
"doctrine/cache": "^1.4",
"matthiasnoback/symfony-dependency-injection-test": "^4.2.0",
"phpunit/phpunit": "^7.0|^8.0",
"symfony/framework-bundle": "^4.0|^5.0",
"symfony/twig-bundle": "^4.0|^5.0"
},
"autoload": {
"exclude-from-classmap": [
"/Tests/"
],
"psr-4": {
"EmanueleMinotto\\TwigCacheBundle\\": "."
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"test": "phpunit --colors=always"
},
"suggest": {
"itinance/doctrine-cache-adapter-with-site-context": "a Cache Adapter used to respect the current site context in a white-label/multi-site environment",
"cache/adapter-bundle": "To make use of PSR-6 cache implementation via PsrCacheAdapter.",
"cache/cache-bundle": "To easily be able to configure adapters in your Symfony application."
}
}