diff options
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/" + } } } |