From a84b3a019bdfbc79d4d3cdaa007845d612461b06 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 30 Jun 2022 09:46:17 +0200 Subject: update to 1.0.6 (unusable) open https://github.com/khanamiryan/php-qrcode-detector-decoder/issues/124 Compatibility broken with PHP < 8.1 --- composer.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'composer.json') 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/" + } } } -- cgit