php-resque/composer.json

52 lines
1.2 KiB
JSON
Raw Permalink 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://github.com/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": ">=8.1",
"psr/log": "^1.1.0",
"colinmollenhour/credis": "^1.14.0"
2012-08-01 01:39:12 +00:00
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "3.*",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"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://github.com/idanoo/php-resque/issues",
"source": "https://github.com/idanoo/php-resque"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
2012-08-01 01:39:12 +00:00
}
}