This repository has been archived by the owner on Jan 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
51 lines (51 loc) · 1.52 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": "mimmi20/wurflcache",
"description": "the Cache Classes for the Wurfl PHP Library for PHP 5.3",
"type": "library",
"license": "MIT",
"keywords": ["Wurfl", "Cache"],
"homepage": "https://github.com/mimmi20/WurflCache",
"authors": [
{
"name": "Thomas Müller",
"homepage": "https://github.com/mimmi20",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/mimmi20/WurflCache/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/mimmi20/WurflCache/issues",
"source": "https://github.com/mimmi20/WurflCache"
},
"require": {
"php": ">=5.3.3",
"symfony/filesystem": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"zendframework/zend-cache": "2.3.*",
"desarrolla2/cache": "*",
"doctrine/cache": "1.4.*@dev",
"zetacomponents/cache": "dev-master",
"mikey179/vfsStream": "1.3.*@dev"
},
"suggest": {
"zendframework/zend-cache": "to use other caches handled by zend",
"desarrolla2/cache": "to use other caches handled by desarrolla",
"doctrine/cache": "to use other caches handled by doctrine",
"zetacomponents/cache": "to use other caches handled by zeta"
},
"autoload": {
"psr-4": {
"WurflCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WurflCacheTest\\": "tests/"
}
}
}