From cdc2bbf31a0c9c1c040cbe3f3e4265574400e46e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 1 Feb 2020 08:04:44 +0100 Subject: update to 4.3.0 raise dependency on PHP 7.1 raise dependency on sabre/xml 2.1 switch to phpunit8 --- composer.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index ad02687..9e522f8 100644 --- a/composer.json +++ b/composer.json @@ -32,12 +32,13 @@ "homepage" : "http://sabre.io/vobject/", "license" : "BSD-3-Clause", "require" : { - "php" : ">=5.5", + "php" : "^7.1", "ext-mbstring" : "*", - "sabre/xml" : ">=1.5 <3.0" + "sabre/xml" : "^2.1" }, "require-dev" : { - "phpunit/phpunit" : "> 4.8.35, <6.0.0" + "friendsofphp/php-cs-fixer": "~2.16.1", + "phpunit/phpunit" : "^7 || ^8" }, "suggest" : { "hoa/bench" : "If you would like to run the benchmark scripts" @@ -71,6 +72,11 @@ "Sabre\\VObject\\" : "lib/" } }, + "autoload-dev" : { + "psr-4" : { + "Sabre\\VObject\\" : "tests/VObject" + } + }, "bin" : [ "bin/vobject", "bin/generate_vcards" -- cgit