-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
50 lines (50 loc) · 1.29 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
{
"name": "stroker/cache",
"description": "Provides a full page cache solution for Laminas",
"type": "library",
"keywords": [
"laminas",
"cache",
"fpc"
],
"homepage": "https://github.com/bramstroker/zf2-fullpage-cache",
"license": "MIT",
"authors": [
{
"name": "Bram Gerritsen",
"email": "[email protected]"
},
{
"name": "Freek Gruntjes"
}
],
"require": {
"php": ">=7.2",
"laminas/laminas-modulemanager": "^2.7",
"laminas/laminas-eventmanager": "^3.1",
"laminas/laminas-servicemanager": "^3.2",
"laminas/laminas-http": "^2.6",
"laminas/laminas-mvc": "^3.0",
"laminas/laminas-cache": "^2.7",
"laminas/laminas-console": "^2.6",
"laminas/laminas-mvc-console": "^1.1",
"laminas/laminas-dependency-plugin": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~5",
"mockery/mockery": "*",
"mikey179/vfsstream": "~1.6"
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"StrokerCache\\": "src/",
"StrokerCacheTest\\": "test/"
},
"classmap": [
"./Module.php"
]
}
}