diff options
author | Remi Collet <remi@remirepo.net> | 2018-01-11 08:39:27 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-01-11 08:39:27 +0100 |
commit | 2b69adee4377e19eeb490ea1c018a950daea7102 (patch) | |
tree | 0ab84e8c03632b2f4cb67654e7f205e9c6d0c404 /composer.json | |
parent | debbaaf1dcbdb4493fcabd12e45222cc1d484019 (diff) |
v2.10.0
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/composer.json b/composer.json index 2f480a6..7a14aa6 100644 --- a/composer.json +++ b/composer.json @@ -34,10 +34,12 @@ "require-dev": { "johnkary/phpunit-speedtrap": "^1.1 || ^2.0@dev", "justinrainbow/json-schema": "^5.0", + "keradus/cli-executor": "^1.0", "mikey179/vfsStream": "^1.6", "php-coveralls/php-coveralls": "^2.0", "php-cs-fixer/accessible-object": "^1.0", "phpunit/phpunit": "^5.7.23 || ^6.4.3", + "phpunitgoodpractices/traits": "^1.0", "symfony/phpunit-bridge": "^3.2.2 || ^4.0" }, "suggest": { @@ -54,15 +56,21 @@ "autoload": { "psr-4": { "PhpCsFixer\\": "src/" }, "classmap": [ - "tests/Test/Assert/AssertTokensTrait.php", "tests/Test/AbstractFixerTestCase.php", "tests/Test/AbstractIntegrationTestCase.php", + "tests/Test/Assert/AssertTokensTrait.php", "tests/Test/IntegrationCase.php", - "tests/Test/IntegrationCaseFactory.php" + "tests/Test/IntegrationCaseFactory.php", + "tests/TestCase.php" ] }, "autoload-dev": { "psr-4": { "PhpCsFixer\\Tests\\": "tests/" } }, - "bin": ["php-cs-fixer"] + "bin": ["php-cs-fixer"], + "extra": { + "branch-alias": { + "dev-master": "2.10-dev" + } + } } |