Skip to content

chore(deps-dev): bump the development-dependencies group with 5 updates - #4723

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/composer/development-dependencies-f51d6c0734
Open

chore(deps-dev): bump the development-dependencies group with 5 updates#4723
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/composer/development-dependencies-f51d6c0734

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Bumps the development-dependencies group with 5 updates:

Package From To
fruitcake/laravel-debugbar 4.4.2 4.4.3
friendsofphp/php-cs-fixer 3.95.23 3.95.24
larastan/larastan 3.10.0 3.11.0
phpstan/phpstan 2.2.12 2.2.13
rector/rector 2.6.4 2.6.6

Updates fruitcake/laravel-debugbar from 4.4.2 to 4.4.3

Release notes

Sourced from fruitcake/laravel-debugbar's releases.

v4.4.3

What's Changed

Full Changelog: fruitcake/laravel-debugbar@v4.4.2...v4.4.3

Changelog

Sourced from fruitcake/laravel-debugbar's changelog.

v4.4.3 - 2026-09-01

What's Changed

Full Changelog: fruitcake/laravel-debugbar@v4.4.2...v4.4.3

Commits

Updates friendsofphp/php-cs-fixer from 3.95.23 to 3.95.24

Release notes

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

v3.95.24 Adalbertus

What's Changed

New Contributors

Full Changelog: PHP-CS-Fixer/PHP-CS-Fixer@v3.95.23...v3.95.24

Changelog

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

Changelog for v3.95.24

  • fix: ControlStructureBracesFixer - do not read a body starting with a parenthesis as a condition (#9815)
  • UX: init - add handling of .gitignore (#9813)
  • UX: init - add sections (#9819)
  • UX: init - command improvements (#9807)
  • UX: init - fix typos and improve wording (#9820)
  • UX: init command - suggest php_unit_test_case_static_method_calls rule (#9810)
  • chore: Fixer name must not be empty (#9756)
  • chore: DescribeCommand - replace dynamic method calls with explicit ones (#9817)
  • chore: PhpdocOrderFixer - fix type of duplicated tags passed to naturalLanguageJoin (#9818)
  • CI: fix warning - Unexpected input(s) 'extensions' (#9809)
  • CI: introduce PHPBench (#9755)
  • refactor: init - move content preparation to helper method (#9812)
Commits
  • 9a4b805 prepared the 3.95.24 release
  • 4cd7e9f UX: init - fix typos and improve wording (#9820)
  • f9a1fb4 UX: init - add handling of .gitignore (#9813)
  • 1c03254 UX: init command - suggest php_unit_test_case_static_method_calls rule (#9810)
  • f610f91 UX: init - add sections (#9819)
  • 5a3e3ec fix: ControlStructureBracesFixer - do not read a body starting with a paren...
  • 529e7b8 chore: DescribeCommand - replace dynamic method calls with explicit ones (#...
  • 460da40 chore: PhpdocOrderFixer - fix type of duplicated tags passed to `naturalLan...
  • edd854e refactor: init - move content preparation to helper method (#9812)
  • 20b8578 CI: fix warning - Unexpected input(s) 'extensions' (#9809)
  • Additional commits viewable in compare view

Updates larastan/larastan from 3.10.0 to 3.11.0

Release notes

Sourced from larastan/larastan's releases.

3.11.0

What's Changed

[!IMPORTANT] Migration caching is now enabled by default. This should not affect analysis results and should make subsequent runs faster. If you notice unexpected behavior, you can disable it:

parameters:
    enableMigrationCache: false

Added

Fixed

Performance

Internal

New Contributors

... (truncated)

Commits
  • 9baa740 fix: add mixin to View facade
  • 4a43ec0 perf: memoize accessor and relation property lookups
  • f5001d2 perf: cache negative method lookups in forwards-calls extensions
  • 24fb6b7 perf: memoize method/property tag lookups in ReflectionHelper
  • 16982bb perf: memoize model instances in ModelHelper
  • 937759a perf: cache nested config key types and unparsable files in ConfigParser
  • 31592f7 perf: memoize macro source classification per class
  • 0dc5100 perf: cache negative results and facade roots in FacadesMethodsExtension
  • 5d7c1fa perf: memoize union member classification in GenericEloquentBuilderTypeNodeRe...
  • 70f5a6b perf: defer default return type computation in console extensions
  • Additional commits viewable in compare view

Updates phpstan/phpstan from 2.2.12 to 2.2.13

Commits

Updates rector/rector from 2.6.4 to 2.6.6

Release notes

Sourced from rector/rector's releases.

Released Rector 2.6.6

File selection

--filter option to narrow processed files (#8419)

New --filter option keeps only files whose path matches all given patterns. Repeat the option to require several patterns at once, handy for scoping a run to a subtree or a naming convention without editing config paths.

vendor/bin/rector process src --filter Controller --filter Admin

Before: process every file under the given paths. After: process only files matching all --filter patterns.

Bugfixes 🐛

  • Add back RectorConfig::tag() as a no-op BC layer (#8431)
  • TypeDeclarationDocblocks: fix invalid array-in-key docblock when narrowing long array unions (#8430)
  • BetterPhpDocParser: keep import used only in an annotation array key (#8429)
  • RenameVariableToMatchMethodCallReturnTypeRector: fix partial rename with same-named nested arrow param (#8428)
  • ArrayFirstLastRector: skip nested compound assignment (#8425)
  • ReturnTypeFromStrictNewArrayRector: add doc return type only for list and generic arrays (#8423), skip noisy array-shape union return docblock (#8422)

Extension packages

rector-phpunit 🟢

  • AllowMockObjectsForDataProviderRector: skip dynamic method call (#781)
  • AssertEmptyNullableObjectToAssertInstanceofRector: skip assertNull/assertEmpty (#780)
  • AddSeeTestAnnotationRector: skip existing imported or short @see annotation (#779)

rector-downgrade-php ⬇️

  • DowngradeSetAccessibleReflectionPropertyRector: handle getProperties()/getMethods() loop (#396)
  • DowngradeHashAlgorithmXxHashRector: skip PHP_VERSION_ID guarded hash() calls (#394)

Internal / cleanup

  • Add mspirkov/yii2-rector link to README (#8427)
  • Add fixtures for arrow functions returning a ?? expression (#8421)

Released Rector 2.6.5

Caching

This release makes the cache smarter about config changes - fewer needless full re-runs, while still invalidating when results could actually differ.

Configured rule value changes now invalidate the cache (#8400)

... (truncated)

Commits
  • ca069d6 Rector 2.6.6
  • dd1dbd8 Updated Rector to commit c8f5daeffd982de54092ead1bc0d278a60aa3747
  • c6ecc8d Updated Rector to commit 0919678db52fe2ede06192b3b19834401da4a472
  • 27296aa Updated Rector to commit 96fd595f95029db66bd5205e6c5aa60eb4745353
  • 1e88d3d Updated Rector to commit ee2e8d0dd1afbdc754e5c9f6db7835e5136055f8
  • 33b2be9 Updated Rector to commit ee2e8d0dd1afbdc754e5c9f6db7835e5136055f8
  • 0a5abf5 Updated Rector to commit 28a4645c168c2567f79108c1c4463cda1afb4aff
  • 646f9f7 Updated Rector to commit 28a4645c168c2567f79108c1c4463cda1afb4aff
  • 78802da Updated Rector to commit 28a4645c168c2567f79108c1c4463cda1afb4aff
  • 7a20767 Updated Rector to commit 0c3d4f4e3c5c3eb7eabc0f7097bd7efaea657439
  • Additional commits viewable 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 development-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [fruitcake/laravel-debugbar](https://github.com/fruitcake/laravel-debugbar) | `4.4.2` | `4.4.3` |
| [friendsofphp/php-cs-fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer) | `3.95.23` | `3.95.24` |
| [larastan/larastan](https://github.com/larastan/larastan) | `3.10.0` | `3.11.0` |
| [phpstan/phpstan](https://github.com/phpstan/phpstan-phar-composer-source) | `2.2.12` | `2.2.13` |
| [rector/rector](https://github.com/rectorphp/rector) | `2.6.4` | `2.6.6` |


Updates `fruitcake/laravel-debugbar` from 4.4.2 to 4.4.3
- [Release notes](https://github.com/fruitcake/laravel-debugbar/releases)
- [Changelog](https://github.com/fruitcake/laravel-debugbar/blob/master/CHANGELOG.md)
- [Commits](fruitcake/laravel-debugbar@v4.4.2...v4.4.3)

Updates `friendsofphp/php-cs-fixer` from 3.95.23 to 3.95.24
- [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.23...v3.95.24)

Updates `larastan/larastan` from 3.10.0 to 3.11.0
- [Release notes](https://github.com/larastan/larastan/releases)
- [Changelog](https://github.com/larastan/larastan/blob/3.x/RELEASE.md)
- [Commits](larastan/larastan@v3.10.0...v3.11.0)

Updates `phpstan/phpstan` from 2.2.12 to 2.2.13
- [Commits](https://github.com/phpstan/phpstan-phar-composer-source/commits)

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

---
updated-dependencies:
- dependency-name: fruitcake/laravel-debugbar
  dependency-version: 4.4.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: friendsofphp/php-cs-fixer
  dependency-version: 3.95.24
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: larastan/larastan
  dependency-version: 3.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: phpstan/phpstan
  dependency-version: 2.2.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: rector/rector
  dependency-version: 2.6.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-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 Sep 7, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner September 7, 2026 20:54
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Sep 7, 2026
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.

0 participants