mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-21 16:01:53 +00:00
52 lines
1.2 KiB
JSON
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
|
|
}
|
|
}
|
|
}
|