-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathcomposer.json
30 lines (30 loc) · 895 Bytes
/
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
{
"name":"colinmollenhour/cache-backend-redis",
"type":"magento-module",
"license":"BSD-3-Clause-Modification",
"homepage":"https://github.com/colinmollenhour/Cm_Cache_Backend_Redis",
"description":"Zend_Cache backend using Redis with full support for tags.",
"authors":[
{
"name":"Colin Mollenhour"
}
],
"require":{
"colinmollenhour/credis": "^1.14"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpunit/phpunit": "^9",
"zf1s/zend-cache": "~1.15"
},
"autoload": {
"classmap": [
"Cm/Cache/Backend/Redis.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"test-performance": "PERFORMANCE=1 vendor/bin/phpunit tests --filter testLargePayloadLoop",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --diff"
}
}