Files
cache/composer.json

29 lines
518 B
JSON

{
"name": "iqparts/cache",
"type": "library",
"description": "Simple cache library with Redis and Filesystem adapters.",
"license": "MIT",
"require": {
"predis/predis": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^6.3"
},
"autoload": {
"psr-4": {
"IQParts\\Cache\\": ["src"]
}
},
"autoload-dev": {
"psr-4": {
"IQParts\\CacheTest\\": ["test"]
}
},
"authors": [
{
"name": "Mèir Noordermeer",
"email": "meirnoordermeer@me.com"
}
]
}