A super easy PHP Framework for web development!
https://github.com/exacti/phacil-framework
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
795 B
29 lines
795 B
{
|
|
"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",
|
|
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --diff"
|
|
}
|
|
}
|
|
|