-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
68 lines (68 loc) · 2.19 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
64
65
66
67
68
{
"name": "cache/adapter-bundle",
"type": "symfony-bundle",
"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.6 || ^7.0",
"cache/array-adapter": "^1.0",
"cache/namespaced-cache": "^1.0",
"psr/cache": "^1.0",
"psr/log": "^1.0",
"symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0",
"symfony/options-resolver": "^2.7 || ^3.0 || ^4.0"
},
"require-dev": {
"cache/apc-adapter": "^1.0",
"cache/apcu-adapter": "^1.0",
"cache/chain-adapter": "^1.0",
"cache/doctrine-adapter": "^1.0",
"cache/filesystem-adapter": "^1.0",
"cache/memcache-adapter": "^1.0",
"cache/memcached-adapter": "^1.0",
"cache/predis-adapter": "^1.0",
"cache/prefixed-cache": "^1.0",
"cache/redis-adapter": "^1.0",
"cache/void-adapter": "^1.0",
"doctrine/cache": "^1.6",
"matthiasnoback/symfony-dependency-injection-test": "^1.1 || ^2.3",
"nyholm/symfony-bundle-test": "^1.2.0",
"predis/predis": "^1.1",
"symfony/phpunit-bridge": "^3.3 || ^4.0"
},
"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/"
}
},
"scripts": {
"test": "vendor/bin/simple-phpunit",
"test-ci": "vendor/bin/simple-phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"config": {
"sort-packages": true
}
}