forked from bramstroker/zf2-fullpage-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.11 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
{
"name": "stroker/cache",
"description": "Provides a full page cache solution for ZF2",
"type": "library",
"keywords": [
"zf2",
"cache",
"fpc"
],
"homepage": "https://github.com/bramstroker/zf2-fullpage-cache",
"license": "MIT",
"authors": [
{
"name": "Bram Gerritsen",
"email": "[email protected]"
},
{
"name": "Freek Gruntjes"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-modulemanager": ">= 2.2",
"zendframework/zend-eventmanager": ">= 2.2",
"zendframework/zend-http": ">= 2.2",
"zendframework/zend-mvc": ">= 2.2",
"zendframework/zend-cache": ">= 2.2"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"mockery/mockery": "*",
"satooshi/php-coveralls": "dev-master",
"mikey179/vfsStream": "1.*"
},
"autoload": {
"psr-0": {
"StrokerCache\\": "src/",
"StrokerCacheTest\\": "test/"
},
"classmap": [
"./Module.php"
]
}
}