Skip to content

Commit

Permalink
Merge pull request #352 from ergebnis/feature/php72
Browse files Browse the repository at this point in the history
Enhancement: Add rule set for PHP 7.2
  • Loading branch information
ergebnis-bot authored Jan 30, 2021
2 parents b10a996 + fb355ad commit b1ea74f
Show file tree
Hide file tree
Showing 4 changed files with 2,112 additions and 3 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

For a full diff see [`2.12.0...main`][2.12.1...main].
For a full diff see [`2.13.0...main`][2.13.0...main].

## [`2.13.0`][2.13.0]

For a full diff see [`2.12.1...2.13.0`][2.12.1...2.13.0].

### Added

* Added `Ergebnis\PhpCsFixer\Config\RuleSet\Php80`, a rule set for PHP 8.0 ([#350]), by [@localheinz]
* Added `Ergebnis\PhpCsFixer\Config\RuleSet\Php72`, a rule set for PHP 7.2 ([#352]), by [@localheinz]

## [`2.12.1`][2.12.1]

Expand Down Expand Up @@ -282,6 +287,7 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[2.11.0]: https://github.com/ergebnis/php-cs-fixer-config/releases/tag/2.11.0
[2.12.0]: https://github.com/ergebnis/php-cs-fixer-config/releases/tag/2.12.0
[2.12.1]: https://github.com/ergebnis/php-cs-fixer-config/releases/tag/2.12.1
[2.13.0]: https://github.com/ergebnis/php-cs-fixer-config/releases/tag/2.13.0

[d899e77...1.0.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/d899e77...1.0.0
[1.0.0...1.1.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/1.0.0...1.1.0
Expand All @@ -308,7 +314,8 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[2.10.0...2.11.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/2.10.0...2.11.0
[2.11.0...2.12.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/2.11.0...2.12.0
[2.12.0...2.12.1]: https://github.com/ergebnis/php-cs-fixer-config/compare/2.12.0...2.12.1
[2.12.1...main]: https://github.com/ergebnis/php-cs-fixer-config/compare/2.12.1...main
[2.12.1...2.13.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/2.12.1...2.13.0
[2.13.0...main]: https://github.com/ergebnis/php-cs-fixer-config/compare/2.13.0...main

[#3]: https://github.com/ergebnis/php-cs-fixer-config/pull/3
[#14]: https://github.com/ergebnis/php-cs-fixer-config/pull/14
Expand Down Expand Up @@ -369,6 +376,7 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[#344]: https://github.com/ergebnis/php-cs-fixer-config/pull/344
[#348]: https://github.com/ergebnis/php-cs-fixer-config/pull/348
[#350]: https://github.com/ergebnis/php-cs-fixer-config/pull/350
[#352]: https://github.com/ergebnis/php-cs-fixer-config/pull/352

[@dependabot]: https://github.com/apps/dependabot
[@linuxjuggler]: https://github.com/linuxjuggler
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ Pick one of the rule sets:

* [`Ergebnis\PhpCsFixer\RuleSet\Faker`](src/RuleSet/Faker.php)
* [`Ergebnis\PhpCsFixer\RuleSet\Laravel6`](src/RuleSet/Laravel6.php)
* [`Ergebnis\PhpCsFixer\RuleSet\Php71`](src/RuleSet/Php74.php)
* [`Ergebnis\PhpCsFixer\RuleSet\Php71`](src/RuleSet/Php71.php)
* [`Ergebnis\PhpCsFixer\RuleSet\Php72`](src/RuleSet/Php72.php)
* [`Ergebnis\PhpCsFixer\RuleSet\Php73`](src/RuleSet/Php73.php)
* [`Ergebnis\PhpCsFixer\RuleSet\Php74`](src/RuleSet/Php74.php)
* [`Ergebnis\PhpCsFixer\RuleSet\Php80`](src/RuleSet/Php80.php)
Expand Down
Loading

0 comments on commit b1ea74f

Please sign in to comment.