-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.16 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
{
"name": "apix/simple-cache",
"description": "The PSR-16 extension to Apix-Cache.",
"type": "library",
"keywords": ["psrCache", "psr-16", "psr-cache", "psr-simple-cache", "session", "cache", "caching", "taggable", "cache-busting", "psr-6"],
"homepage": "https://github.com/apix/simple-cache",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Franck Cassedanne",
"email": "[email protected]"
},
{
"name": "Apix Cache Community",
"homepage": "https://github.com/frqnck/apix-cache/contributors"
}
],
"support": {
"irc": "irc://irc.freenode.org/ouarz"
},
"require": {
"php": ">=5.3",
"apix/cache": "^1.3",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0|^5.0",
"satooshi/php-coveralls": "~0.7.1"
},
"autoload": {
"psr-4": {
"Apix\\SimpleCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Apix\\SimpleCache\\tests\\": "tests/"
}
},
"provide": {
"psr/simple-cache-implementation": "^1.0"
}
}