-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
39 lines (39 loc) · 1.06 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
{
"name": "lbarulski/cache-tags-bundle",
"description": "Bundle for custom varnish tags",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Łukasz Barulski",
"email": "tracerout@yahoo.com"
},
{
"name": "Tomasz Wójcik",
"email": "tomasz.prgtw.wojcik@gmail.com"
},
{
"name": "Marcin Chyłek",
"email": "marcin@chylek.pl"
}
],
"autoload": {
"psr-4": {
"lbarulski\\CacheTagsBundle\\": "CacheTagsBundle/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"doctrine/annotations": "1.*",
"sensio/framework-extra-bundle": "^3 || ^4 || ^5 || ^6",
"symfony/dependency-injection": "^2.8 || ^3.0 || ^4.0",
"symfony/http-kernel": "^2.8 || ^3.0 || ^4.0",
"symfony/config": "^2.8 || ^3.0 || ^4.0",
"symfony/console": "^2.8 || ^3.0 || ^4.0"
},
"extra": {
"branch-alias": {
"dev-master": "v2.0.x-dev"
}
}
}