-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
64 lines (64 loc) · 1.49 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "smoke/zf2-cache-storage-redis-array",
"description": "RedisArray Cache Storage for Zend Framework 2",
"type": "library",
"keywords": [
"zf2",
"redis",
"redisArray",
"cache"
],
"license": "MIT",
"homepage": "https://github.com/smoke/zf2-cache-storage-redis-array",
"authors": [
{
"name": "Radoslav Kirilov",
"email": "[email protected]"
},
{
"name": "Maximilian Bösing",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5 || ^7.0",
"ext-redis": ">=2.2.3",
"zendframework/zend-cache": "^2.0"
},
"autoload": {
"psr-0": {
"Smoke\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SmokeTest\\": "test/Smoke",
"PsrTest\\": "test/Psr"
}
},
"require-dev": {
"cache/integration-tests": "^0.16.0",
"phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.8 || ^7.1.2",
"squizlabs/php_codesniffer": "^3.3",
"zendframework/zend-serializer": "^2.7"
},
"archive": {
"exclude": [
"test/",
"phpunit.xml.dist",
".ci/"
]
},
"config": {
"sort-packages": true
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always"
}
}