diff options
| author | Remi Collet <remi@remirepo.net> | 2018-02-06 10:53:21 +0100 | 
|---|---|---|
| committer | Remi Collet <remi@remirepo.net> | 2018-02-06 10:53:21 +0100 | 
| commit | f9c048e23a2b6077ff4c3f03a079f9783f3d0923 (patch) | |
| tree | 5df8ddeaaa6617064edbd2cf7adeef42d0c56f0b | |
| parent | ad5a27db70a0a16c3071c372c4533e6f016f53b8 (diff) | |
v2.2.16
| -rw-r--r-- | composer.json | 7 | ||||
| -rw-r--r-- | php-cs-fixer.spec | 12 | 
2 files changed, 14 insertions, 5 deletions
diff --git a/composer.json b/composer.json index 5559af2..f0cef2e 100644 --- a/composer.json +++ b/composer.json @@ -56,11 +56,14 @@      "autoload": {          "psr-4": { "PhpCsFixer\\": "src/" },          "classmap": [ -            "tests/TestCase.php",              "tests/Test/AbstractFixerTestCase.php", +            "tests/Test/AbstractIntegrationCaseFactory.php",              "tests/Test/AbstractIntegrationTestCase.php",              "tests/Test/IntegrationCase.php", -            "tests/Test/IntegrationCaseFactory.php" +            "tests/Test/IntegrationCaseFactory.php", +            "tests/Test/IntegrationCaseFactoryInterface.php", +            "tests/Test/InternalIntegrationCaseFactory.php", +            "tests/TestCase.php"          ]      },      "autoload-dev": { diff --git a/php-cs-fixer.spec b/php-cs-fixer.spec index 0afccd3..9410f44 100644 --- a/php-cs-fixer.spec +++ b/php-cs-fixer.spec @@ -6,7 +6,7 @@  #  # Please, preserve the changelog entries  # -%global gh_commit    dcf644315abc557e006ce068d299f85d17ec2157 +%global gh_commit    f67918efb38a186c6c731e46e52eab4fee329a49  %global gh_short     %(c=%{gh_commit}; echo ${c:0:7})  #global gh_date      20150717  %global gh_owner     FriendsOfPHP @@ -15,7 +15,7 @@  %global with_tests   0%{!?_without_tests:1}  Name:           php-cs-fixer -Version:        2.2.14 +Version:        2.2.16  Release:        1%{?gh_date:.%{gh_date}git%{gh_short}}%{?dist}  Summary:        A tool to automatically fix PHP code style @@ -163,11 +163,14 @@ projects. This tool does not only detect them, but also fixes them for you.  # from composer.json, "autoload" / "classmap"  TESTS=" -  tests/TestCase.php    tests/Test/AbstractFixerTestCase.php +  tests/Test/AbstractIntegrationCaseFactory.php    tests/Test/AbstractIntegrationTestCase.php    tests/Test/IntegrationCase.php    tests/Test/IntegrationCaseFactory.php +  tests/Test/IntegrationCaseFactoryInterface.php +  tests/Test/InternalIntegrationCaseFactory.php +  tests/TestCase.php  "  for i in $TESTS; do    mkdir -p src/$(dirname $i) @@ -256,6 +259,9 @@ fi  %changelog +* Tue Feb  6 2018 Remi Collet <remi@remirepo.net> - 2.2.16-1 +- Update to 2.2.16 +  * Thu Jan 11 2018 Remi Collet <remi@remirepo.net> - 2.2.14-1  - Update to 2.2.14  | 
