summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2019-09-10 10:22:12 +0200
committerRemi Collet <remi@remirepo.net>2019-09-10 10:22:12 +0200
commit271a292cddd550751d995a126c5c2200054a8988 (patch)
treec09f685ce6b471399ad8648626317db16b3214a6 /composer.json
parent3cdc7e66640a3f4ac03ece3edfdb381f3d4e261d (diff)
- update to 2.0.0
- rename to php-bacon-qr-code2 - move installation to /usr/share/php/BaconQrCode2 - raise dependency on PHP 7.1 - add dependency on dasprid/enum - use phpunit6 - use git snapshot to retrieve test suite - switch from php-gd to php-imagick
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"
}
}