banker/composer.json

63 lines
1.5 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": "*",
"predis/predis": "^v2.1.2",
"psr/log": "^1.1.0 || ^3.0.0",
"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": "*",
2023-03-16 14:22:49 -04:00
"monolog/monolog": "^3.3.1",
"phpunit/phpunit": "^10.0.16"
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",
2023-03-16 16:22:31 -04:00
"docs": "tools/phpdocumentor run --sourcecode",
2023-03-16 14:22:49 -04:00
"coverage": "php -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude=\"~vendor~\" ./vendor/bin/phpunit -c build",
"phpstan": "tools/vendor/bin/phpstan analyse src tests",
2023-03-16 16:28:32 -04:00
"ci:phpstan": "tools/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
}