-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (46 loc) · 1.53 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
{
"name": "webfactory/wfdmeta-bundle",
"description": "Bundle to query the wfd_meta table and use it for ConfigCache expiry. Useful as example code, please see the README file.",
"license": "MIT",
"authors": [
{
"name": "webfactory GmbH",
"email": "[email protected]",
"homepage": "http://www.webfactory.de",
"role": "Developer"
}
],
"require": {
"php": ">= 8.1",
"doctrine/dbal": "^2.13|^3.0",
"doctrine/orm": "^2.8|^3.0",
"doctrine/persistence": "^2.1|^3.0",
"psr/container": "^1.0",
"psr/log": "^1|^2|^3",
"symfony/config": "^5.4|^6.4|^7.0",
"symfony/service-contracts": "^2.5|^3.0",
"symfony/dependency-injection": "^5.4|^6.4|^7.0",
"symfony/filesystem": "^5.4|^6.4|^7.0",
"symfony/finder": "^5.4|^6.4|^7.0",
"symfony/http-foundation": "^5.4|^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
"symfony/lock": "^5.4|^6.4|^7.0",
"symfony/twig-bundle": "^5.4|^6.4|^7.0",
"twig/twig": "^2.0|^3.0"
},
"suggest": {
"webfactory/http-cache-bundle": "If you want to use wfd_meta information to determine Last-Modified information for requests"
},
"require-dev": {
"phpunit/phpunit": "^9.6.18|^10.5",
"symfony/phpunit-bridge": ">=7.0"
},
"autoload": {
"psr-4": {
"Webfactory\\Bundle\\WfdMetaBundle\\": "src"
}
},
"config": {
"sort-packages": true
}
}