Skip to content

Bump the all-dependencies group with 3 updates - #13

Merged
fballiano merged 1 commit into
mainfrom
dependabot/composer/all-dependencies-4f95684929
Jul 22, 2026
Merged

Bump the all-dependencies group with 3 updates#13
fballiano merged 1 commit into
mainfrom
dependabot/composer/all-dependencies-4f95684929

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 19, 2026

Copy link
Copy Markdown
Contributor

Bumps the all-dependencies group with 3 updates: friendsofphp/php-cs-fixer, phpstan/phpstan-strict-rules and rector/rector.

Updates friendsofphp/php-cs-fixer from 3.95.13 to 3.95.15

Release notes

Sourced from friendsofphp/php-cs-fixer's releases.

v3.95.15 Adalbertus

What's Changed

Full Changelog: PHP-CS-Fixer/PHP-CS-Fixer@v3.95.14...v3.95.15

v3.95.14 Adalbertus

What's Changed

Full Changelog: PHP-CS-Fixer/PHP-CS-Fixer@v3.95.13...v3.95.14

Changelog

Sourced from friendsofphp/php-cs-fixer's changelog.

Changelog for v3.95.15

  • fix: self-update - fix "Access Denied" error when running on Windows (#9731)

Changelog for v3.95.14

  • fix: ClassAttributesSeparationFixer - handle property with hooks as last class element (#9724)
  • fix: SingleClassElementPerStatementFixer - do not break PHP syntax when splitting properties with disjunctive normal form type (#9723)
  • fix: TrailingCommaInMultilineFixer - do not add trailing comma after first-class callable (#9722)
  • chore: add code coverage ignore annotations to parallel runner and worker (#9721)
  • chore: cleanup FunctionToConstantFixer (#9719)
  • test: HeaderCommentFixerTest - improve invalid configuration types (#9728)
  • test: ClassDefinitionFixerTest - improve PHPDocs (#9726)
  • test: ConfigurationResolverTest - fix types (#9725)
  • test: GeneralAttributeRemoveFixerTest - improve data provider types (#9727)
  • test: ProjectCodeTest - improve PHPDocs (#9730)
  • deps: allow to run PHPUnit v12 directly for project, without future-ready CI workarounds (#9580)
  • deps: bump shipmonk/dead-code-detector from 1.3.0 to 1.3.1 in /dev-tools in the shipmonk group across 1 directory (#9718)
  • deps: bump the phpstan group in /dev-tools with 2 updates (#9717)
Commits
  • 3e47e5d prepared the 3.95.15 release
  • 5eeae8d fix: self-update - fix "Access Denied" error when running on Windows (#9731)
  • 8153d49 bumped version
  • beee274 prepared the 3.95.14 release
  • 4b1d95d deps: allow to run PHPUnit v12 directly for project, without future-ready CI ...
  • 4796020 test: ProjectCodeTest - improve PHPDocs (#9730)
  • e8af9ca fix: SingleClassElementPerStatementFixer - do not break PHP syntax when spl...
  • b858858 fix: ClassAttributesSeparationFixer - handle property with hooks as last cl...
  • 6a461b9 fix: TrailingCommaInMultilineFixer - do not add trailing comma after first-...
  • 177aa71 test: HeaderCommentFixerTest - improve invalid configuration types (#9728)
  • Additional commits viewable in compare view

Updates phpstan/phpstan-strict-rules from 2.0.11 to 2.0.12

Release notes

Sourced from phpstan/phpstan-strict-rules's releases.

2.0.12

  • 2bc5ae1 - Allow GMP and BCMath\Number in arithmetic operations (#311)
  • 70e3081 - Update github-actions (#324)
  • 07a17dd - Update github-actions to v7 (#325)
  • de9bdda - Update github-actions (#322)
  • 80870ec - Replace deprecated actions/create-release with softprops/action-gh-release
  • 109c14f - Bump GitHub Actions across major versions
  • ebf31ff - Bump GitHub Actions within their current majors
  • 727c193 - Update github-actions
  • cc56619 - Update github-actions
  • 1e72841 - Update release-toot.yml (#319)
  • ada7e60 - CI: move name-collision job into build.yml (#318)
  • 470946d - Add missing export-ignore entries to .gitattributes (#315)
  • 8b14a8e - name-collision-detector (#314)
Commits
  • 2bc5ae1 Allow GMP and BCMath\Number in arithmetic operations (#311)
  • 70e3081 Update github-actions (#324)
  • 07a17dd Update github-actions to v7 (#325)
  • de9bdda Update github-actions (#322)
  • 80870ec Replace deprecated actions/create-release with softprops/action-gh-release
  • 109c14f Bump GitHub Actions across major versions
  • ebf31ff Bump GitHub Actions within their current majors
  • 727c193 Update github-actions
  • cc56619 Update github-actions
  • 1e72841 Update release-toot.yml (#319)
  • Additional commits viewable in compare view

Updates rector/rector from 2.5.6 to 2.5.7

Release notes

Sourced from rector/rector's releases.

Released Rector 2.5.7

This release sharpens the PHPUnit code-quality sets, adds a focused narrow asserts set, deprecates two blurry Symfony web-test rules, and fixes a handful of docblock false-positives in dead-code removal.

New Features 🎉

PHPUnit: PHPUNIT_NARROW_ASSERTS set

A new set focused on narrowing broad asserts to their specific, more descriptive method — e.g. assertTrue(isset($a['b']))assertArrayHasKey('b', $a). ([rector-phpunit #716])

use Rector\PHPUnit\Set\PHPUnitSetList;
return RectorConfig::configure()
->withSets([PHPUnitSetList::PHPUNIT_NARROW_ASSERTS]);

withPreparedSets() gains phpunitNarrowAsserts + phpunitMockToStub

The 2 PHPUnit sets are now toggleable like any other prepared set. (#8178)

return RectorConfig::configure()
    ->withPreparedSets(
        phpunitNarrowAsserts: true,
        phpunitMockToStub: true,
    );

PHPUnit: flip with($this->callback(...)) on void methods to willReturnCallback()

VoidMethodWithCallbackToWillReturnCallbackRector (renamed + refocused) drops the pointless return value and types the closure as void, matching the mocked void method. ([rector-phpunit #724])

 $this->createMock(SomeClass::class)
     ->method('run')
-    ->with($this->callback(function ($arg) {
-        echo $arg;
-
-        return true;
-    }));
+    ->willReturnCallback(function ($arg): void {
+        echo $arg;
+    });

... (truncated)

Commits
  • ba22f8c Rector 2.5.7
  • 1109537 Updated Rector to commit 653ec233fa55057fb11a6c133ed5c8d57dec9ff2
  • e363554 Updated Rector to commit 3c481b689cd746323dfad98782cd7939f28035e4
  • fb62051 Updated Rector to commit 3c481b689cd746323dfad98782cd7939f28035e4
  • 561c81c Updated Rector to commit 51d61737c5fbaed10c5f711bbc8074720452417e
  • 9f3ea3a Updated Rector to commit e713102f40682bc65311d3a50e5490e6acc452f3
  • 78b5c28 Updated Rector to commit 306b852af3e4d0045034a6865bffe311ccdf38c9
  • 4bb232c Updated Rector to commit 0e269a0d17470ec8331efb518efcfd5fa6e7162d
  • eab289b Updated Rector to commit cc1a748e25adb989f2cf42f0329792810d79d216
  • 4ebe4bc Updated Rector to commit ed944a11e6e3a83bac0f9e1f4a413bcc7153fca7
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-dependencies group with 3 updates: [friendsofphp/php-cs-fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer), [phpstan/phpstan-strict-rules](https://github.com/phpstan/phpstan-strict-rules) and [rector/rector](https://github.com/rectorphp/rector).


Updates `friendsofphp/php-cs-fixer` from 3.95.13 to 3.95.15
- [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.95.13...v3.95.15)

Updates `phpstan/phpstan-strict-rules` from 2.0.11 to 2.0.12
- [Release notes](https://github.com/phpstan/phpstan-strict-rules/releases)
- [Commits](phpstan/phpstan-strict-rules@2.0.11...2.0.12)

Updates `rector/rector` from 2.5.6 to 2.5.7
- [Release notes](https://github.com/rectorphp/rector/releases)
- [Commits](rectorphp/rector@2.5.6...2.5.7)

---
updated-dependencies:
- dependency-name: friendsofphp/php-cs-fixer
  dependency-version: 3.95.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: phpstan/phpstan-strict-rules
  dependency-version: 2.0.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: rector/rector
  dependency-version: 2.5.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file php Pull requests that update php code labels Jul 19, 2026
@fballiano
fballiano merged commit b4063e5 into main Jul 22, 2026
8 checks passed
@dependabot
dependabot Bot deleted the dependabot/composer/all-dependencies-4f95684929 branch July 22, 2026 19:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file php Pull requests that update php code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant