-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
composer.json
51 lines (51 loc) · 1.3 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
{
"name": "tedivm/stash-bundle",
"type": "symfony-bundle",
"description": "Incorporates the Stash caching library into Symfony.",
"keywords": [
"apc",
"cache",
"caching",
"memcached",
"redis",
"sessions",
"stash",
"symfony"
],
"homepage": "http://github.com/tedious/TedivmStashBundle",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Josh Hall-Bachner",
"email": "[email protected]"
},
{
"name": "Robert Hafner",
"email": "[email protected]"
}
],
"require": {
"php": "^7 || ^8",
"tedivm/stash": ">=0.15",
"symfony/config": "^3.4 || ^4.0 || ^5.0",
"symfony/http-kernel": "^3.4 || ^4.0 || ^5.0",
"symfony/dependency-injection": "^3.4 || ^4.0 || ^5.0"
},
"config": {
"vendor-dir": "vendor",
"sort-packages": true,
"platform": {
"php": "7.0.8"
}
},
"require-dev": {
"doctrine/cache": "^1.6",
"friendsofphp/php-cs-fixer": "^2",
"php-coveralls/php-coveralls": "^2",
"phpunit/phpunit": "^6.5",
"symfony/phpunit-bridge": "*"
},
"autoload": {
"psr-4": {"Tedivm\\StashBundle\\": ""}
}
}