forked from doctrine/DoctrineCacheBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
63 lines (63 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
{
"name": "doctrine/doctrine-cache-bundle",
"homepage": "https://www.doctrine-project.org",
"description": "Symfony Bundle for Doctrine Cache",
"keywords": ["cache", "caching"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Benjamin Eberlei",
"email": "kontakt@beberlei.de"
},
{
"name": "Fabio B. Silva",
"email": "fabio.bat.silva@gmail.com"
},
{
"name": "Guilherme Blanco",
"email": "guilhermeblanco@hotmail.com"
},
{
"name": "Symfony Community",
"homepage": "http://symfony.com/contributors"
},
{
"name": "Doctrine Project",
"homepage": "http://www.doctrine-project.org/"
}
],
"require": {
"php": ">=7.1",
"symfony/doctrine-bridge": "^3.4|^4.0|^6.4",
"doctrine/inflector": "*",
"doctrine/cache": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"symfony/phpunit-bridge": "*",
"symfony/yaml": "^3.4|^4.0|^6.4",
"symfony/validator": "^3.4|^4.0|^6.4",
"symfony/console": "^3.4|^4.0|^6.4",
"symfony/finder": "^3.4|^4.0|^6.4",
"symfony/framework-bundle": "^3.4|^4.0|^6.4"
},
"autoload": {
"psr-4": { "Doctrine\\Bundle\\DoctrineCacheBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": { "Doctrine\\Bundle\\DoctrineCacheBundle\\Tests\\": "Tests" }
},
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev"
}
}
}