forked from php-cache/adapter-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.4 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
{
"name": "cache/adapter-bundle",
"type": "library",
"description": "A bundle that registers cache implementations as Symfony services supporting PSR-6 and tagging",
"keywords": [],
"homepage": "https://github.com/php-cache/adapter-bundle",
"license": "MIT",
"authors": [
{
"name": "Aaron Scherer",
"email": "[email protected]",
"homepage": "https://github.com/aequasi"
},
{
"name": "Tobias Nyholm",
"email": "[email protected]",
"homepage": "https://github.com/Nyholm"
}
],
"require": {
"php": "^5.5|^7",
"symfony/framework-bundle": "^2.7|^3.0",
"symfony/options-resolver": "^2.7|^3.0",
"psr/cache": "1.0.0"
},
"require-dev": {
"phpunit/phpunit": "5.0.*|^4.0",
"matthiasnoback/symfony-dependency-injection-test": "0.7.*",
"cache/array-adapter": "@stable"
},
"suggest": {
"cache/*-adapter": "A actual implementation of PSR-6 cache",
"cache/cache-bundle": "To integrate with the symfony framework"
},
"autoload": {
"psr-4": {
"Cache\\AdapterBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cache\\AdapterBundle\\Tests\\": "tests/"
}
}
}