mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 08:15:14 +00:00
2f5b48930f
* recommend php-resque be installed via Composer * provide quick getting started steps * move ./resque.php to bin/resque, make it available as a Composer bin * have classes autoloaded via Composer (or some other means if not using Composer)
28 lines
579 B
JSON
28 lines
579 B
JSON
{
|
|
"name": "chrisboulton/php-resque",
|
|
"type": "library",
|
|
"description": "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby.",
|
|
"keywords": ["job", "background", "redis", "resque"],
|
|
"homepage": "http://www.github.com/chrisboulton/php-resque/",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Chris Boulton",
|
|
"email": "chris@bigcommerce.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "3.7.*"
|
|
},
|
|
"bin": [
|
|
"bin/resque"
|
|
],
|
|
"autoload": {
|
|
"psr-0": {
|
|
"Resque": "lib"
|
|
}
|
|
}
|
|
} |