diff options
author | Remi Collet <remi@remirepo.net> | 2022-06-30 09:46:17 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2022-06-30 09:46:17 +0200 |
commit | a84b3a019bdfbc79d4d3cdaa007845d612461b06 (patch) | |
tree | 3ac09383d981747bf1a83ee2110b6b02c53dac19 /composer.json | |
parent | 64a98c5dea096c894d8ac8ca40233ebfa6815504 (diff) |
open https://github.com/khanamiryan/php-qrcode-detector-decoder/issues/124
Compatibility broken with PHP < 8.1
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/composer.json b/composer.json index 66be008..da466df 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,9 @@ "php": ">=5.6" }, "require-dev": { - "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0" + "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0", + "rector/rector": "^0.13.6", + "symplify/easy-coding-standard": "^11.0" }, "autoload": { "psr-4": { @@ -33,5 +35,15 @@ "files": [ "lib/Common/customFunctions.php" ] + }, + "scripts": { + "check-cs": "./vendor/bin/ecs check", + "fix-cs": "./vendor/bin/ecs check --fix", + "tests": "./vendor/bin/phpunit" + }, + "autoload-dev": { + "psr-4": { + "Khanamiryan\\QrCodeTests\\": "tests/" + } } } |