From 271a292cddd550751d995a126c5c2200054a8988 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 10 Sep 2019 10:22:12 +0200 Subject: - 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 --- composer.json | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'composer.json') 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" } } -- cgit