banker/composer.json

57 lines
1.1 KiB
JSON
Raw Normal View History

2016-08-31 12:18:46 -04:00
{
"name": "aviat/banker",
"type": "library",
2016-09-05 16:43:37 -04:00
"description": "A caching library implementing PSR-6 (psr/cache)",
"keywords": [
"cache",
"redis",
"memcache",
"memcached",
"psr-6",
"psr6"
],
"provide": {
"psr/cache": "1.0.1"
},
2016-08-31 12:18:46 -04:00
"autoload": {
"psr-4": {
"Aviat\\Banker\\": "src/"
}
},
2016-09-05 16:43:37 -04:00
"autoload-dev": {
"psr-4": {
"Aviat\\Banker\\Tests\\": "tests/"
}
},
2016-08-31 12:18:46 -04:00
"require": {
2016-09-06 17:03:43 -04:00
"predis/predis": "^1.1",
2016-08-31 12:18:46 -04:00
"psr/log": "^1.0",
2016-09-06 17:03:43 -04:00
"psr/cache": "^1.0.1"
2016-08-31 12:18:46 -04:00
},
"require-dev": {
"consolidation/robo": "1.0.0-RC2",
"humbug/humbug": "1.0.0-alpha2",
"monolog/monolog": "^1.21",
"nikic/php-parser": "v3.0.0alpha1",
"pdepend/pdepend": "^2.2",
"phploc/phploc": "^3.0",
"phpmd/phpmd": "^2.4",
"phpunit/phpunit": "^5.5",
"sebastian/phpcpd": "^2.0",
"squizlabs/php_codesniffer": "^3.0.0@alpha",
"theseer/phpdox": "^0.9.0"
},
2016-09-05 16:43:37 -04:00
"suggest": {
"monolog/monolog": "A good standard logging library",
"ext-memcache": "Required for Memcache backend",
"ext-memcached": "Required for Memcached backend"
2016-08-31 12:18:46 -04:00
},
"license": "MIT",
"authors": [
{
"name": "Timothy J Warren",
"email": "tim@timshomepage.net"
}
]
}