forked from tedious/Stash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 821 Bytes
/
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
{
"name": "tedivm/stash",
"description": "The place to keep your cache.",
"keywords": [
"cache",
"caching",
"sessions",
"memcached",
"redis",
"apc",
"psr-6",
"psr6"
],
"homepage": "http://github.com/tedious/Stash",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Robert Hafner",
"email": "[email protected]"
},
{
"name": "Josh Hall-Bachner",
"email": "[email protected]"
}
],
"require": {
"php": ">7.0",
"psr/cache": "~1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.8",
"phpunit/phpunit": "^6",
"satooshi/php-coveralls": "1.0.*"
},
"autoload": {
"psr-4": {
"Stash\\": "src/Stash/"
}
},
"provide": {
"psr/cache-implementation": "1.0.0"
}
}