php-resque/composer.json

45 lines
1005 B
JSON
Raw Normal View History

2012-08-01 01:39:12 +00:00
{
2018-05-27 02:41:18 +00:00
"name": "idanoo/php-resque",
2012-08-01 01:39:12 +00:00
"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/",
2012-08-01 01:39:12 +00:00
"license": "MIT",
"authors": [
{
"name": "Daniel Mason",
"email": "daniel@m2.nz"
}
],
2012-08-01 01:39:12 +00:00
"require": {
"php": ">7.4",
"psr/log": "^1.1.0",
"colinmollenhour/credis": "^1.13.0"
2012-08-01 01:39:12 +00:00
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "3.*"
},
"bin": [
"bin/resque"
],
2012-08-01 01:39:12 +00:00
"autoload": {
"psr-4": {
"Resque\\": "src/Resque"
}
},
"autoload-dev": {
"psr-4": {
"Resque\\Test\\": "tests/Resque/Tests"
2012-08-01 01:39:12 +00:00
}
},
"support": {
"issues": "https://tinker.nz/idanoo/php-resque/issues",
"source": "https://tinker.nz/idanoo/php-resque"
2012-08-01 01:39:12 +00:00
}
}