summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json21
1 files changed, 18 insertions, 3 deletions
diff --git a/composer.json b/composer.json
index 4e75736..da466df 100644
--- a/composer.json
+++ b/composer.json
@@ -8,7 +8,10 @@
"barcode"
],
"homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
- "license": "MIT",
+ "license": [
+ "MIT",
+ "Apache-2.0"
+ ],
"authors": [
{
"name": "Ashot Khanamiryan",
@@ -18,10 +21,12 @@
}
],
"require": {
- "php": "^5.6|^7.0"
+ "php": ">=5.6"
},
"require-dev": {
- "phpunit/phpunit": "^5.7"
+ "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0",
+ "rector/rector": "^0.13.6",
+ "symplify/easy-coding-standard": "^11.0"
},
"autoload": {
"psr-4": {
@@ -30,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/"
+ }
}
}