summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json15
1 files changed, 9 insertions, 6 deletions
diff --git a/composer.json b/composer.json
index 086f4c5..d66d586 100644
--- a/composer.json
+++ b/composer.json
@@ -4,11 +4,12 @@
"license" : "BSD-2-Clause",
"homepage": "https://github.com/Bacon/BaconQrCode",
"require": {
- "php": "^5.4|^7.0",
- "ext-iconv": "*"
+ "php": "^7.1",
+ "ext-iconv": "*",
+ "dasprid/enum": "^1.0"
},
"suggest": {
- "ext-gd": "to generate QR code images"
+ "ext-imagick": "to generate QR code images"
},
"authors": [
{
@@ -19,11 +20,13 @@
}
],
"autoload": {
- "psr-0": {
- "BaconQrCode": "src/"
+ "psr-4": {
+ "BaconQrCode\\": "src/"
}
},
"require-dev": {
- "phpunit/phpunit": "^4.8"
+ "phpunit/phpunit": "^6.4",
+ "squizlabs/php_codesniffer": "^3.1",
+ "phly/keep-a-changelog": "^1.4"
}
}