From ff7a5f9003bff9cbb407a438b0b76508e8cb599c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 26 Mar 2019 10:23:36 +0100 Subject: update to 1.1.0 raise dependency on phpunitgoodpractices/polyfill 1.1 allow PHPUnit 8 --- composer.json | 80 ++++++++++++++++++++++++++++++----------------------------- 1 file changed, 41 insertions(+), 39 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 54b9363..02b05ad 100644 --- a/composer.json +++ b/composer.json @@ -1,44 +1,46 @@ { - "name": "php-cs-fixer/phpunit-constraint-xmlmatchesxsd", - "type": "library", - "description": "Constraint for testing XML against XSD.", - "license": "MIT", - "authors": [ - { - "name": "SpacePossum" + "name": "php-cs-fixer/phpunit-constraint-xmlmatchesxsd", + "type": "library", + "description": "Constraint for testing XML against XSD.", + "license": "MIT", + "authors": [ + { + "name": "SpacePossum" + }, + { + "name": "Dariusz Rumiński", + "email": "dariusz.ruminski@gmail.com" + } + ], + "require": { + "php": "^5.5 || ^7.0", + "ext-dom": "*", + "ext-libxml": "*", + "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0 || ^8.0", + "phpunitgoodpractices/polyfill": "^1.1" }, - { - "name": "Dariusz Rumiński", - "email": "dariusz.ruminski@gmail.com" - } - ], - "require": { - "php": "^5.5 || ^7.0", - "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0", - "phpunitgoodpractices/polyfill": "^1.1" - }, - "conflict": { - "hhvm": "*" - }, - "require-dev": { - "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0", - "symfony/phpunit-bridge": "^3.2.2 || ^4.0" - }, - "config": { - "optimize-autoloader": true, - "sort-packages": true - }, - "autoload": { - "psr-4": { - "PhpCsFixer\\PhpunitConstraintXmlMatchesXsd\\": "src/" + "conflict": { + "hhvm": "*" + }, + "require-dev": { + "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0", + "symfony/phpunit-bridge": "^3.2.2 || ^4.0" + }, + "config": { + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "psr-4": { + "PhpCsFixer\\PhpunitConstraintXmlMatchesXsd\\": "src/" + }, + "files": [ + "src/Constraint/XmlMatchesXsd.php" + ] }, - "files": [ - "src/Constraint/XmlMatchesXsd.php" - ] - }, - "autoload-dev": { - "psr-4": { - "PhpCsFixer\\PhpunitConstraintXmlMatchesXsd\\Tests\\": "tests/" + "autoload-dev": { + "psr-4": { + "PhpCsFixer\\PhpunitConstraintXmlMatchesXsd\\Tests\\": "tests/" + } } - } } -- cgit