From d7d2e8af41d6ba7c5c7574f6692fcd83a9a09221 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 2 Oct 2018 11:04:45 +0200 Subject: update to 1.5.2 raise dependency on PHP 5.6 switch to phpunit6 fix LICENSE installation --- composer.json | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index b5965b2..dd13461 100644 --- a/composer.json +++ b/composer.json @@ -24,17 +24,30 @@ } ], "require": { - "php": ">=5.3.0" + "php": ">=5.6.0", + "ext-pcre": "*", + "ext-xml": "*", + "ext-xmlreader": "*" }, "require-dev": { - "phpunit/phpunit": "~4 || ~5" + "phpunit/phpunit": "~5.4.3 || ~6.5" }, "suggest": { + "ext-curl": "", + "ext-iconv": "", + "ext-intl": "", + "ext-mbstring": "", "mf2/mf2": "Microformat module that allows for parsing HTML for microformats" }, "autoload": { "psr-0": { "SimplePie": "library" } - } + }, + "config": { + "bin-dir": "bin" + }, + "scripts": { + "test": "phpunit" + } } -- cgit