Skip to content

Commit f142bd8

Browse files
composer(deps): bump friendsofphp/php-cs-fixer from 3.40.0 to 3.45.0 in /vendor-bin/php-cs-fixer (#838)
* composer(deps): bump friendsofphp/php-cs-fixer Bumps [friendsofphp/php-cs-fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer) from 3.40.0 to 3.45.0. - [Release notes](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases) - [Changelog](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/CHANGELOG.md) - [Commits](PHP-CS-Fixer/PHP-CS-Fixer@v3.40.0...v3.45.0) --- updated-dependencies: - dependency-name: friendsofphp/php-cs-fixer dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Fix: Use --show-progress option to configure dots progress --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andreas Möller <am@localheinz.com>
1 parent 918e92e commit f142bd8

File tree

4 files changed

+37
-40
lines changed

4 files changed

+37
-40
lines changed

.github/workflows/coding-standards.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ jobs:
5858
5959
- name: "Run php-cs-fixer"
6060
run: |
61-
vendor/bin/php-cs-fixer fix --ansi --config=.php-cs-fixer.dist.php --diff --dry-run --verbose
61+
vendor/bin/php-cs-fixer fix --ansi --config=.php-cs-fixer.dist.php --diff --dry-run --show-progress=dots --verbose
6262
6363
- name: "Run php-cs-fixer for test code"
6464
run: |
65-
vendor/bin/php-cs-fixer fix --ansi --config=.php-cs-fixer.test.php --diff --dry-run --verbose
65+
vendor/bin/php-cs-fixer fix --ansi --config=.php-cs-fixer.test.php --diff --dry-run --show-progress=dots --verbose
6666
6767
yamllint:
6868
name: "yamllint"

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ help:
1010

1111
.PHONY: cs
1212
cs: vendor ## Fixes coding standard issues with php-cs-fixer
13-
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --diff --verbose
14-
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.test.php --diff --verbose
13+
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --diff --show-progress=dots --verbose
14+
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.test.php --diff --show-progress=dots --verbose
1515

1616
.PHONY: coverage
1717
coverage: vendor ## Collects coverage with phpunit

vendor-bin/php-cs-fixer/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"require": {
33
"php": "^7.4 || ^8.0",
4-
"friendsofphp/php-cs-fixer": "^3.40.0"
4+
"friendsofphp/php-cs-fixer": "^3.45.0"
55
},
66
"config": {
77
"platform": {

vendor-bin/php-cs-fixer/composer.lock

Lines changed: 32 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)