2.1.0 (2023-02-07) - PHP 8.2 compatibility

This commit is contained in:
Daniel Mason 2023-02-07 02:19:09 +00:00
parent ef82313d4e
commit 3c7e20e364
11 changed files with 200 additions and 15 deletions

View file

@ -7,7 +7,7 @@
},
"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://tinker.nz/idanoo/php-resque/",
"homepage": "https://gitlab.com/idanoo/php-resque/",
"license": "MIT",
"authors": [
{
@ -22,7 +22,9 @@
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "3.*"
"squizlabs/php_codesniffer": "3.*",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"bin": [
"bin/resque"
@ -38,7 +40,12 @@
}
},
"support": {
"issues": "https://tinker.nz/idanoo/php-resque/issues",
"source": "https://tinker.nz/idanoo/php-resque"
"issues": "https://gitlab.com/idanoo/php-resque/issues",
"source": "https://gitlab.com/idanoo/php-resque"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}