summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
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"
+ ]
}