laravel-resque/composer.json

42 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2016-07-28 21:52:05 +00:00
{
2023-03-21 23:24:19 +00:00
"name": "idanoo/laravel-resque",
"type": "library",
"replace": {
"hlgrrnhrdt/laravel-resque": "*"
},
2023-03-21 23:24:19 +00:00
"description": "Wrapper for idanoo/php-resque (Laravel/Lumen ^5.2.0)",
"keywords": ["job", "background", "redis", "resque", "php"],
"homepage": "https://github.com/idanoo/laravel-resque",
"license": "MIT",
"authors": [
{
"name": "Daniel Mason",
"email": "daniel@m2.nz"
}
],
2016-07-28 21:52:05 +00:00
"require": {
2022-03-16 21:08:26 +00:00
"illuminate/console": "^8.0",
"illuminate/config": "^8.0",
2023-02-07 02:30:52 +00:00
"idanoo/php-resque": "^2.1"
2016-07-28 21:52:05 +00:00
},
"require-dev": {
2023-02-07 02:30:52 +00:00
"phpunit/phpunit": "^9",
2023-03-21 23:24:19 +00:00
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
2016-07-28 21:52:05 +00:00
},
"autoload": {
"psr-4": {
"Idanoo\\Resque\\": "src/"
2016-07-28 21:52:05 +00:00
}
2023-02-07 02:30:52 +00:00
},
2023-03-21 23:24:19 +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
}
}
2016-07-28 21:52:05 +00:00
}