summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-10-29 14:40:03 +0100
committerRemi Collet <remi@remirepo.net>2020-10-29 14:40:03 +0100
commitef4b4cf7b1d26a6836c56e02185247d167af0b9b (patch)
treee6e32cad2ead152993a19be4e073bad82410c6ed /composer.json
parent7e5dcde10cfdc6b2498cd63abcda946ae2d51b18 (diff)
update to 1.4.2
raise dependency on PHP 7.3 drop compatibility with old phpunit 5, 6 and 7
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json9
1 files changed, 6 insertions, 3 deletions
diff --git a/composer.json b/composer.json
index 44ffe51..43caba8 100644
--- a/composer.json
+++ b/composer.json
@@ -31,12 +31,15 @@
}
],
"require": {
- "php": ">=5.6.0",
+ "php": "^7.3 || ^8.0",
"lib-pcre": ">=7.0",
"hamcrest/hamcrest-php": "^2.0.1"
},
"require-dev": {
- "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
+ "phpunit/phpunit": "^8.5 || ^9.3"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<8.0"
},
"autoload": {
"psr-0": {
@@ -53,7 +56,7 @@
},
"extra": {
"branch-alias": {
- "dev-master": "1.3.x-dev"
+ "dev-master": "1.4.x-dev"
}
}
}