From 6dc4dda2f382cedc2ffc9f6a9cd86fb86b5035a7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 23 Feb 2018 07:37:12 +0100 Subject: Update to 2.10.3 drop dependency on gecko-packages/gecko-php-unit --- composer.json | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index e390c12..b6206c3 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,6 @@ "ext-tokenizer": "*", "composer/semver": "^1.4", "doctrine/annotations": "^1.2", - "gecko-packages/gecko-php-unit": "^2.0 || ^3.0", "php-cs-fixer/diff": "^1.2", "symfony/console": "^3.2 || ^4.0", "symfony/event-dispatcher": "^3.0 || ^4.0", @@ -31,6 +30,9 @@ "symfony/process": "^3.0 || ^4.0", "symfony/stopwatch": "^3.0 || ^4.0" }, + "conflict": { + "hhvm": "*" + }, "require-dev": { "johnkary/phpunit-speedtrap": "^1.1 || ^2.0@dev", "justinrainbow/json-schema": "^5.0", @@ -46,20 +48,20 @@ "ext-mbstring": "For handling non-UTF8 characters in cache signature.", "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible." }, - "conflict": { - "hhvm": "*" - }, "config": { "optimize-autoloader": true, "sort-packages": true }, "autoload": { - "psr-4": { "PhpCsFixer\\": "src/" }, + "psr-4": { + "PhpCsFixer\\": "src/" + }, "classmap": [ "tests/Test/AbstractFixerTestCase.php", "tests/Test/AbstractIntegrationCaseFactory.php", "tests/Test/AbstractIntegrationTestCase.php", "tests/Test/Assert/AssertTokensTrait.php", + "tests/Test/Constraint/SameStringsConstraint.php", "tests/Test/IntegrationCase.php", "tests/Test/IntegrationCaseFactory.php", "tests/Test/IntegrationCaseFactoryInterface.php", @@ -68,7 +70,11 @@ ] }, "autoload-dev": { - "psr-4": { "PhpCsFixer\\Tests\\": "tests/" } + "psr-4": { + "PhpCsFixer\\Tests\\": "tests/" + } }, - "bin": ["php-cs-fixer"] + "bin": [ + "php-cs-fixer" + ] } -- cgit