banker/composer.json

69 lines
1.6 KiB
JSON
Raw Normal View History

2016-08-31 12:18:46 -04:00
{
"name": "aviat/banker",
"type": "library",
"description": "A caching library implementing PSR-6 (psr/cache) and PSR-16 (psr/simple-cache)",
2016-09-05 16:43:37 -04:00
"keywords": [
"cache",
"redis",
"memcached",
"psr-6",
"psr6",
"psr16",
"psr-16"
2016-09-05 16:43:37 -04:00
],
"provide": {
"psr/cache-implementation": "^3.0.0",
"psr/simple-cache-implementation": "^3.0.0"
2016-09-05 16:43:37 -04:00
},
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": {
"php": ">= 8",
"ext-json": "*",
2016-09-06 17:03:43 -04:00
"predis/predis": "^1.1",
"psr/log": "*",
"psr/cache": "^3.0.0",
2021-11-30 11:48:49 -05:00
"psr/simple-cache": "^3.0.0"
2016-08-31 12:18:46 -04:00
},
"require-dev": {
"ext-apcu": "*",
2019-12-10 11:00:46 -05:00
"ext-memcached": "*",
2021-11-30 11:48:49 -05:00
"consolidation/robo": "^3.0.6",
"monolog/monolog": "^2.3.5",
2016-08-31 12:18:46 -04:00
"pdepend/pdepend": "^2.2",
"phploc/phploc": "^7.0",
2016-08-31 12:18:46 -04:00
"phpmd/phpmd": "^2.4",
"phpunit/phpunit": "^9.5.0",
"sebastian/phpcpd": "^6.0.3",
2019-12-10 11:00:46 -05:00
"squizlabs/php_codesniffer": "^3.3.2",
"phpstan/phpstan": "^1.2.0"
2016-08-31 12:18:46 -04:00
},
2016-09-05 16:43:37 -04:00
"suggest": {
"monolog/monolog": "A good standard logging library",
"ext-apcu": "Required for apcu driver",
2017-03-01 11:42:10 -05:00
"ext-memcached": "Required for Memcached backend",
"ext-phpiredis": "Improves speed of Redis driver"
2016-08-31 12:18:46 -04:00
},
"license": "MIT",
"authors": [
{
"name": "Timothy J Warren",
"email": "tim@timshomepage.net"
}
2017-03-01 13:04:00 -05:00
],
"scripts": {
2019-12-10 11:00:46 -05:00
"test": "vendor/bin/phpunit -c build --no-coverage",
2017-03-01 13:04:00 -05:00
"coverage": "phpdbg -qrr -- vendor/bin/phpunit -c build",
2021-11-30 15:17:35 -05:00
"phpstan": "vendor/bin/phpstan analyse src tests",
"ci:phpstan": "vendor/bin/phpstan analyse -c phpstan.neon -n --no-progress --no-ansi --error-format=checkstyle > ./build/logs/phpstan.log"
2017-03-01 13:04:00 -05:00
}
2016-08-31 12:18:46 -04:00
}