summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-02-23 07:37:12 +0100
committerRemi Collet <remi@remirepo.net>2018-02-23 07:37:12 +0100
commit6dc4dda2f382cedc2ffc9f6a9cd86fb86b5035a7 (patch)
tree086a73ff5d97e6f86d8b9cee328770ef2a9272e3 /composer.json
parent948f212e09a9dc22f170eb4763dd021d52ecdf90 (diff)
Update to 2.10.3
drop dependency on gecko-packages/gecko-php-unit
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json20
1 files changed, 13 insertions, 7 deletions
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"
+ ]
}