Initial commit cache

This commit is contained in:
2018-02-28 15:01:45 +01:00
commit 01a13b7f2b
20 changed files with 1117 additions and 0 deletions

27
composer.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "iqparts/cache",
"type": "library",
"require": {
"predis/predis": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^6.3",
"phpstan/phpstan": "^0.9.1"
},
"autoload": {
"psr-4": {
"IQParts\\Cache\\": ["src"]
}
},
"autoload-dev": {
"psr-4": {
"IQParts\\CacheTest\\": ["test"]
}
},
"authors": [
{
"name": "Mèir Noordermeer",
"email": "meirnoordermeer@me.com"
}
]
}