php-resque/composer.json
Daniel Mason 5ef4a63a6e
2.2.0 (2023-03-20)
- Update pacakges
- Bump requirements to PHP >= 8.1
2024-03-20 19:03:55 +13:00

52 lines
1.2 KiB
JSON

{
"name": "idanoo/php-resque",
"type": "library",
"replace": {
"chrisboulton/php-resque": "*",
"danhunsaker/php-resque": "*"
},
"description": "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby. Originally forked from chrisboulton/php-resque.",
"keywords": ["job", "background", "redis", "resque", "php"],
"homepage": "https://github.com/idanoo/php-resque",
"license": "MIT",
"authors": [
{
"name": "Daniel Mason",
"email": "daniel@m2.nz"
}
],
"require": {
"php": ">=8.1",
"psr/log": "^1.1.0",
"colinmollenhour/credis": "^1.14.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "3.*",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"bin": [
"bin/resque"
],
"autoload": {
"psr-4": {
"Resque\\": "src/Resque"
}
},
"autoload-dev": {
"psr-4": {
"Resque\\Test\\": "tests/Resque/Tests"
}
},
"support": {
"issues": "https://github.com/idanoo/php-resque/issues",
"source": "https://github.com/idanoo/php-resque"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}