summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-10-02 11:04:45 +0200
committerRemi Collet <remi@remirepo.net>2018-10-02 11:04:45 +0200
commitd7d2e8af41d6ba7c5c7574f6692fcd83a9a09221 (patch)
tree8c123ac15eb5cea54be0b35bc2b4f2f797e5e64a /composer.json
parent73777244ba1f4f75b64be067da7f2bf01098bbb8 (diff)
update to 1.5.2
raise dependency on PHP 5.6 switch to phpunit6 fix LICENSE installation
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json19
1 files changed, 16 insertions, 3 deletions
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"
+ }
}