mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 08:15:14 +00:00
idanoo
05cae402b5
- Update composer packages - Added WoodpeckerCI tests - Updated links in composer package - Stricter typing
45 lines
1005 B
JSON
45 lines
1005 B
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://tinker.nz/idanoo/php-resque/",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Daniel Mason",
|
|
"email": "daniel@m2.nz"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">7.4",
|
|
"psr/log": "^1.1.0",
|
|
"colinmollenhour/credis": "^1.13.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9",
|
|
"squizlabs/php_codesniffer": "3.*"
|
|
},
|
|
"bin": [
|
|
"bin/resque"
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Resque\\": "src/Resque"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Resque\\Test\\": "tests/Resque/Tests"
|
|
}
|
|
},
|
|
"support": {
|
|
"issues": "https://tinker.nz/idanoo/php-resque/issues",
|
|
"source": "https://tinker.nz/idanoo/php-resque"
|
|
}
|
|
}
|