Skip to content

Commit

Permalink
Version 2.20.13.
Browse files Browse the repository at this point in the history
- Updated "PhpCsFixer" configuration.
- Updated ".gitattributes" to exclude non-essential files from distribution.
  • Loading branch information
laurentmuller committed May 16, 2024
1 parent e141c89 commit e8185f7
Show file tree
Hide file tree
Showing 6 changed files with 690 additions and 19 deletions.
16 changes: 16 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,18 @@
* text=auto eol=lf
*.md eol=lf

/.github export-ignore
/doc export-ignore
/tests export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.markdownlint-cli2.yaml export-ignore
/.php-cs-fixer.dist.php export-ignore
/.styleci.yml export-ignore
/CHANGELOG.md export-ignore
/CONTRIBUTING.md export-ignore
/phpstan.neon export-ignore
/phpunit.xml.dist export-ignore
/psalm.xml export-ignore
/rector.php export-ignore
/README.md export-ignore
3 changes: 3 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

use PhpCsFixer\Config;
use PhpCsFixer\Finder;
use PhpCsFixer\Runner\Parallel\ParallelConfigFactory;

$comment = <<<COMMENT
This file is part of the HighchartsBundle package.
Expand Down Expand Up @@ -52,6 +53,7 @@
'array_syntax' => ['syntax' => 'short'],
'list_syntax' => ['syntax' => 'short'],
'doctrine_annotation_array_assignment' => ['operator' => '='],
'phpdoc_to_comment' => ['allow_before_return_statement' => true],
];

$finder = Finder::create()
Expand All @@ -61,6 +63,7 @@
$config = new Config();

return $config
->setParallelConfig(ParallelConfigFactory::detect())
->setRiskyAllowed(true)
->setFinder($finder)
->setRules($rules);
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@

## [Unreleased]

## [2.20.13] - 2024-06-16

- Added markdown configuration file.
- Changed the `chart` function visibility of the `HighchartsExtension` class.
- Updated `TwigTest` class.
- Updated rector configuration.
- Move documentation to the root folder.
- Updated `phpstan` configuration.
- Updated `psalm/plugin-phpunit` plugin version.
- Updated `PhpCsFixer` configuration.
- Updated `.gitattributes` to exclude non-essential files from distribution.

## [2.20.12] - 2024-04-22

Expand Down Expand Up @@ -151,6 +155,7 @@ as possible. See [Security Advisory: ZF2014-01](https://framework.zend.com/secur
- Initial release

[Unreleased]: https://github.com/laurentmuller/HighchartsBundle/compare/1.7...HEAD
[2.20.13]: https://github.com/laurentmuller/HighchartsBundle/compare/2.20.12...2.20.13
[2.20.12]: https://github.com/laurentmuller/HighchartsBundle/compare/2.20.11...2.20.12
[2.20.11]: https://github.com/laurentmuller/HighchartsBundle/compare/2.20.10...2.20.11
[2.20.10]: https://github.com/laurentmuller/HighchartsBundle/compare/2.20.9...2.20.10
Expand Down
Loading

0 comments on commit e8185f7

Please sign in to comment.