forked from php-cache/cache-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2.42 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
69
70
71
{
"name": "cache/cache-bundle",
"type": "symfony-bundle",
"description": "Symfony 2 bundle providing integration between PSR-6 compliant cache services and the framework. It supports cache for sessions, routing and Doctrine",
"keywords": [
"cache",
"psr6",
"doctrine",
"router",
"session"
],
"homepage": "http://www.php-cache.com/en/latest/",
"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 || ^8.0",
"cache/session-handler": "^1.0",
"cache/taggable-cache": "^1.0",
"nyholm/nsa": "^1.1",
"symfony/config": "^2.7 || ^3.0 || ^4.0",
"symfony/console": "^2.7 || ^3.0 || ^4.0",
"symfony/dependency-injection": "^2.7 || ^3.0 || ^4.0",
"symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0",
"symfony/http-foundation": "^2.7 || ^3.0 || ^4.0",
"symfony/http-kernel": "^2.7 || ^3.0 || ^4.0",
"symfony/var-dumper": "^2.7 || ^3.3 || ^4.0"
},
"require-dev": {
"cache/array-adapter": "^1.0",
"cache/psr-6-doctrine-bridge": "^3.0",
"doctrine/annotations": "^1.0",
"matthiasnoback/symfony-dependency-injection-test": "^1.1 || ^2.3",
"nyholm/symfony-bundle-test": "^1.2",
"symfony/phpunit-bridge": "^3.3 || ^4.0",
"symfony/routing": "^2.7 || ^3.0 || ^4.0",
"symfony/serializer": "^2.7 || ^3.0 || ^4.0",
"symfony/validator": "^2.7 || ^3.0 || ^4.0"
},
"suggest": {
"cache/adapter-bundle": "To register PSR-6 compliant cache implementations as services.",
"cache/psr-6-doctrine-bridge": "To be able to use Doctrine query, result and metadata cache."
},
"autoload": {
"psr-4": {
"Cache\\CacheBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cache\\CacheBundle\\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
}
}