-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
executable file
·41 lines (41 loc) · 1.08 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
{
"name": "phpixie/cache",
"description": "Cache library for PHPixie",
"keywords": ["cache", "psr-6", "psr-16", "memcached", "redis"],
"homepage": "http://phpixie.com",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Roman Tsiupa",
"email": "[email protected]",
"homepage": "http://dracony.org"
}
],
"require-dev": {
"phpixie/test": "~3.1",
"phpixie/filesystem": "~3.1",
"predis/predis": "^1.1"
},
"autoload": {
"psr-4": {
"PHPixie\\": "src/PHPixie",
"PHPixie\\Tests\\": "tests/PHPixie/Tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"require": {
"phpixie/slice": "~3.0",
"psr/cache": "^1.0",
"psr/simple-cache": "^0.3.0"
},
"suggest": {
"phpixie/filesystem": "Required for file based cache",
"ext-memcached": "Required for memcached support",
"predis/predis": "Required for redis support"
}
}