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" ,
2019-08-27 21:46:50 +00:00
"replace" : {
"chrisboulton/php-resque" : "*" ,
"danhunsaker/php-resque" : "*"
} ,
2018-05-25 02:24:24 +00:00
"description" : "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby. Originally forked from chrisboulton/php-resque." ,
2020-04-10 21:24:18 +00:00
"keywords" : [ "job" , "background" , "redis" , "resque" , "php" ] ,
2023-02-07 02:19:09 +00:00
"homepage" : "https://gitlab.com/idanoo/php-resque/" ,
2012-08-01 01:39:12 +00:00
"license" : "MIT" ,
"authors" : [
{
2018-05-25 02:24:24 +00:00
"name" : "Daniel Mason" ,
"email" : "daniel@m2.nz"
2013-01-12 12:37:38 +00:00
}
] ,
2012-08-01 01:39:12 +00:00
"require" : {
2021-02-18 23:23:32 +00:00
"php" : ">7.4" ,
"psr/log" : "^1.1.0" ,
2022-09-12 07:50:02 +00:00
"colinmollenhour/credis" : "^1.13.0"
2012-08-01 01:39:12 +00:00
} ,
2013-01-12 10:47:07 +00:00
"require-dev" : {
2021-02-18 23:23:32 +00:00
"phpunit/phpunit" : "^9" ,
2023-02-07 02:19:09 +00:00
"squizlabs/php_codesniffer" : "3.*" ,
"phpcompatibility/php-compatibility" : "^9.3" ,
"dealerdirect/phpcodesniffer-composer-installer" : "^1.0"
2013-01-12 10:47:07 +00:00
} ,
2013-01-12 11:40:26 +00:00
"bin" : [
"bin/resque"
] ,
2012-08-01 01:39:12 +00:00
"autoload" : {
2021-02-18 23:23:32 +00:00
"psr-4" : {
"Resque\\" : "src/Resque"
}
} ,
"autoload-dev" : {
"psr-4" : {
"Resque\\Test\\" : "tests/Resque/Tests"
2012-08-01 01:39:12 +00:00
}
2018-07-15 21:59:58 +00:00
} ,
"support" : {
2023-02-07 02:19:09 +00:00
"issues" : "https://gitlab.com/idanoo/php-resque/issues" ,
"source" : "https://gitlab.com/idanoo/php-resque"
} ,
"config" : {
"allow-plugins" : {
"dealerdirect/phpcodesniffer-composer-installer" : true
}
2012-08-01 01:39:12 +00:00
}
2013-03-27 15:45:05 +00:00
}