From 798e2f4ba4640b6875efdfea29f2cc90ddc6a69e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 26 Mar 2019 10:28:15 +0100 Subject: update to 1.1.0 raise dependency on phpunitgoodpractices/polyfill 1.1 allow PHPUnit 8 --- composer.json | 74 +++++++++++++++++++++++++++++------------------------------ 1 file changed, 37 insertions(+), 37 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index b7657a4..ba4be80 100644 --- a/composer.json +++ b/composer.json @@ -1,41 +1,41 @@ { - "name": "php-cs-fixer/phpunit-constraint-isidenticalstring", - "type": "library", - "description": "Constraint for testing strings considering not-same line endings.", - "license": "MIT", - "authors": [ - { - "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\\PhpunitConstraintIsIdenticalString\\": "src/" + "name": "php-cs-fixer/phpunit-constraint-isidenticalstring", + "type": "library", + "description": "Constraint for testing strings considering not-same line endings.", + "license": "MIT", + "authors": [ + { + "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 || ^8.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\\PhpunitConstraintIsIdenticalString\\": "src/" + }, + "files": [ + "src/Constraint/IsIdenticalString.php" + ] }, - "files": [ - "src/Constraint/IsIdenticalString.php" - ] - }, - "autoload-dev": { - "psr-4": { - "PhpCsFixer\\PhpunitConstraintIsIdenticalString\\Tests\\": "tests/" + "autoload-dev": { + "psr-4": { + "PhpCsFixer\\PhpunitConstraintIsIdenticalString\\Tests\\": "tests/" + } } - } } -- cgit