Skip to content

Bump the composer-dev group across 1 directory with 5 updates - #1070

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/composer/composer-dev-053ef31d22
Open

Bump the composer-dev group across 1 directory with 5 updates#1070
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/composer/composer-dev-053ef31d22

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the composer-dev group with 4 updates in the / directory: driftingly/rector-laravel, fruitcake/laravel-debugbar, larastan/larastan and laravel/pint.

Updates driftingly/rector-laravel from 2.5.0 to 2.6.2

Release notes

Sourced from driftingly/rector-laravel's releases.

2.6.2

What's Changed

Full Changelog: driftingly/rector-laravel@2.6.1...2.6.2

2.6.1

What's Changed

Full Changelog: driftingly/rector-laravel@2.6.0...2.6.1

2.6.0

What's Changed

New Contributors

Full Changelog: driftingly/rector-laravel@2.5.0...2.6.0

Commits
  • 280dd4f release PHP 7.4 downgraded 2.6.2
  • c0f9a2f Cap 5.x upgrade rules at <6.0 so they stop running on Laravel 6+ (#555)
  • 8deb978 feat: add missing status codes to AssertStatusToAssertMethodRector (#551)
  • 0953899 Bump Rector to ^2.6.4 (#550)
  • 8c36a3b Move Cashier upgrades to composer-based, deprecate Cashier + Livewire set lis...
  • 4646a6b Move composer-based set to single config with version-bound rule registration...
  • f6763fe Bump structarmed to ^0.16 (#542)
  • ccf2291 Bump Rector to ^2.6.3 and migrate SetProvider to composer based (#543)
  • 2636a2a feat(rules): add EmptyGuardedPropertyToUnguardedAttributeRector rule (#540)
  • ef55cfa Add ComposerPackageConstraint to attribute rules (#539)
  • Additional commits viewable in compare view

Updates fruitcake/laravel-debugbar from 4.4.1 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

v4.4.2

New

php artisan debugbar:install-skill command to install skills when not using Laravel Boost. This copies the existing skill to the .claude or agents folder directly! The skill can help your AI tool to debug requests, queries, performance issues etc.

What's Changed

New Contributors

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

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

v4.4.2 - 2026-08-20

New

php artisan debugbar:install-skill command to install skills when not using Laravel Boost

What's Changed

New Contributors

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

Commits

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 laravel/pint from 1.30.5 to 1.31.1

Release notes

Sourced from laravel/pint's releases.

v1.31.1

What's Changed

Full Changelog: laravel/pint@v1.31.0...v1.31.1

v1.31.0

Full Changelog: laravel/pint@v1.30.6...v1.31.0

v1.30.6

Commits

Updates rector/rector from 2.5.2 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 composer-dev group with 4 updates in the / directory: [driftingly/rector-laravel](https://github.com/driftingly/rector-laravel), [fruitcake/laravel-debugbar](https://github.com/fruitcake/laravel-debugbar), [larastan/larastan](https://github.com/larastan/larastan) and [laravel/pint](https://github.com/laravel/pint).


Updates `driftingly/rector-laravel` from 2.5.0 to 2.6.2
- [Release notes](https://github.com/driftingly/rector-laravel/releases)
- [Commits](driftingly/rector-laravel@2.5.0...2.6.2)

Updates `fruitcake/laravel-debugbar` from 4.4.1 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.1...v4.4.3)

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 `laravel/pint` from 1.30.5 to 1.31.1
- [Release notes](https://github.com/laravel/pint/releases)
- [Changelog](https://github.com/laravel/pint/blob/main/CHANGELOG.md)
- [Commits](laravel/pint@v1.30.5...v1.31.1)

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

---
updated-dependencies:
- dependency-name: driftingly/rector-laravel
  dependency-version: 2.6.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: composer-dev
- dependency-name: fruitcake/laravel-debugbar
  dependency-version: 4.4.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: composer-dev
- dependency-name: larastan/larastan
  dependency-version: 3.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: composer-dev
- dependency-name: laravel/pint
  dependency-version: 1.31.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: composer-dev
- dependency-name: rector/rector
  dependency-version: 2.6.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: composer-dev
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file (May cause conflicts) php Pull requests that update php code labels Sep 11, 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 (May cause conflicts) php Pull requests that update php code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants