composer.json
{
"name": "dhii/simple-cache-interface",
"description": "A simple cache standard inspired by PSR-16.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dhii Team",
"email": "development@dhii.co"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.3 | ^7.0",
"psr/container": "^1.0",
"dhii/data-container-interface": "^0.2-alpha2",
"dhii/stringable-interface": "^0.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"ptrofimov/xpmock": "^1.1",
"dhii/php-cs-fixer-config": "dev-php-5.3",
"codeclimate/php-test-reporter": "<=0.3.2"
},
"autoload": {
"psr-4": {
"Dhii\\Cache\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dhii\\Cache\\UnitTest\\": "test/unit",
"Dhii\\Cache\\FuncTest\\": "test/functional"
}
},
"scripts": {
"test": "phpunit",
"csfix": "php-cs-fixer fix -vvv"
},
"extra": {
"branch-alias": {
"dev-develop": "0.1.x-dev"
}
}
}