Skip to content

Bump the all-composer-dependencies group across 1 directory with 8 updates - #10

Merged
fey merged 1 commit into
mainfrom
dependabot/composer/all-composer-dependencies-513935ca41
Aug 3, 2026
Merged

Bump the all-composer-dependencies group across 1 directory with 8 updates#10
fey merged 1 commit into
mainfrom
dependabot/composer/all-composer-dependencies-513935ca41

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the all-composer-dependencies group with 7 updates in the / directory:

Package From To
illuminate/collections 13.13.0 13.23.0
nesbot/carbon 3.11.4 3.13.1
symfony/string 8.1.0 8.1.2
phpstan/phpstan 2.2.1 2.2.7
psy/psysh 0.12.23 0.12.24
phpstan/phpstan-phpunit 2.0.16 2.0.18
phpunit/phpunit 13.1.13 13.2.6

Updates illuminate/collections from 13.13.0 to 13.23.0

Commits
  • 79b5d04 Fix null handling in Arr::last() method (#60887)
  • 7ffa5d0 Fix iterable support in Arr::last() (#60881)
  • 801ccb4 Restore iterable support to Arr::every() and Arr::some() (#60876)
  • 7f71432 Fix typos in doc blocks (#60782)
  • b58840a [13.x] Remove deprecated StaticCallOnNonStaticToInstanceCallRector fixer ru...
  • ff3bee2 [13.x] Add phpdoc_trim_consecutive_blank_line_separation rule to pint (#60669)
  • 48a821e [13.x] Add reduceInto method to collection (#60651)
  • 8f10727 [13.x] Add conditional return types to several methods (#60586)
  • See full diff in compare view

Updates nesbot/carbon from 3.11.4 to 3.13.1

Release notes

Sourced from nesbot/carbon's releases.

3.13.1

What's Changed

Full Changelog: CarbonPHP/carbon@3.13.0...3.13.1

3.13.0

What's Changed

Full Changelog: CarbonPHP/carbon@3.12.3...3.13.0

3.12.3

What's Changed

  • Improve plus() and minus() method by @​kylekatarnls in CarbonPHP/carbon#126
    • Add $anchorDay parameter and OverflowMode for $overflow parameter
    • Add float support for $weeks, $days, $hours, $minutes, $seconds and $microseconds
    • Use __call so sub-classes are allowed to override those methods with divergent signatures

Full Changelog: CarbonPHP/carbon@3.12.2...3.12.3

3.12.2

What's Changed

Full Changelog: CarbonPHP/carbon@3.12.1...3.12.2

3.12.1

What's Changed

Full Changelog: CarbonPHP/carbon@3.12.0...3.12.1

3.12.0

What's Changed

... (truncated)

Commits
  • 2937ad3 Merge pull request #135 from CarbonPHP/fix/issue-134-translation-spacing
  • 89bc9b4 Remove redundant comment
  • b408fed Skip PHPUnit warnings for Laravel 13
  • b75f65e Fix spacing in translations
  • 1c1554b Add test for the issue #134
  • e4037d3 Merge pull request #3346 from briannesbitt/job/update-sponsors
  • d8c4a39 Update sponsors
  • e75648c Merge pull request #3345 from briannesbitt/job/update-sponsors
  • 1b2c0c0 Update sponsors
  • 3601de3 Merge pull request #3344 from briannesbitt/dependabot/github_actions/actions/...
  • Additional commits viewable in compare view

Updates symfony/string from 8.1.0 to 8.1.2

Release notes

Sourced from symfony/string's releases.

v8.1.2

Changelog (symfony/string@v8.1.0...v8.1.2)

Commits
  • 286a76b Merge branch '8.0' into 8.1
  • 1a6a424 Merge branch '7.4' into 8.0
  • e394af3 Merge branch '6.4' into 7.4
  • 2a8d515 [String] Consistently return null for out-of-range offsets
  • 12c1d4f Merge branch '8.0' into 8.1
  • 59d8521 Merge branch '7.4' into 8.0
  • 7ebb5b1 Merge branch '6.4' into 7.4
  • b137628 [String] Fix AsciiSlugger::getLocale() TypeError with no locale set
  • 5aae2a1 Merge branch '8.0' into 8.1
  • 9db1063 Merge branch '7.4' into 8.0
  • Additional commits viewable in compare view

Updates phpstan/phpstan from 2.2.1 to 2.2.7

Commits

Updates psy/psysh from 0.12.23 to 0.12.24

Release notes

Sourced from psy/psysh's releases.

PsySH v0.12.24

Experimental interactive readline

The pure-PHP experimental readline implementation now has its own built-in pager. Long output opens in an alternate-screen pager with keyboard and mouse scrolling, search, wrap-aware layout, and sensible scrollback behavior after exit.

This is specific to PsySH's experimental userland readline, and it's another reason to give it a try:

psysh --experimental-readline

Or enable it in config:

'useExperimentalReadline' => true,

The built-in pager is enabled automatically with experimental readline, or explicitly with 'pager' => true.

We'd love your feedback! Try it out and let us know what works, what doesn't, and what still feels weird.

Better docs

doc understands more PHP manual targets directly, including structured manual page IDs like language.types.array, language type/operator pages, and language constructs like array and list. Addresses #937 (thanks @​Tomirad!)

Manual output also got a big upgrade: variadic signatures make more sense; structured text, tables, and code blocks now render properly; PHP snippets get syntax highlighting; and wrapping works better across styled and wide-character output.

History improvements

  • Added history --session to show, save, or replay only commands from the current REPL session
  • history --clear now rejects filters and range options instead of accepting combinations it ignores

Bug fixes

  • Fix exception formatting over-matching and eating the beginning of error messages. Fixes #943 (thanks @​bilboque!)
  • Fix timeit median calculation
  • Fix sudo instantiation for classes without constructors
  • Avoid deprecated reflection calls on PHP 8.4+

Under the hood

  • Readline rendering now uses widgets and a shared mode stack for completion, history search, and the pager
  • Release automation now creates draft releases with gh
  • Removed Codecov from CI
  • Added Dependabot cooldowns and updated CI dependencies. Thanks @​dependabot!
  • Fixed Laravel and MediaWiki smoke tests
Commits
  • ca0fdcf Merge branch 'release/v0.12.24'
  • d5ab024 Bump to v0.12.24
  • 7094a01 Bump shivammathur/setup-php from 2.37.1 to 2.37.2
  • 94a2165 Make a few more deprecated reflection calls conditional.
  • 3d10b1d Bump actions/checkout from 6.0.3 to 7.0.0
  • aee298f Fix error message formatting matching too many characters
  • 9a18c5d Bump symfony/polyfill-mbstring from 1.38.1 to 1.38.2 in /build
  • 5db1c28 Add dependabot cooldown
  • 8981d9d Remove codecov from CI
  • e385b02 Add syntax highlighting for man code snippets
  • Additional commits viewable in compare view

Updates phpstan/phpstan-phpunit from 2.0.16 to 2.0.18

Release notes

Sourced from phpstan/phpstan-phpunit's releases.

2.0.18

  • f5dc20f - Fix #[RequiresPhpunit] version requirement being evaluated against PHP version (#313)
  • 1e573d3 - AttributeVersionRequirementHelper: add defaults to bool parameters (#312)

2.0.17

  • c2f9775 - Update actions/cache action to v6 (#311)
  • 933f682 - Update actions/cache action to v5.1.0 (#310)
  • 8ec191f - Check #[RequiresPhpunit] in the same way we check #[RequiresPhp] (#308)
  • d138088 - Implement ClassAttributeRequiresPhpVersionRule (#305)
  • caada62 - Update github-actions to v7 (#307)
  • 611a216 - Update github-actions to v3.0.1 (#306)
  • 2312495 - Extract AttributeVersionRequirementHelper (#304)
  • 952d0ee - Warn about incomplete versions in #[RequiresPhp] (#303)
  • bf910b5 - Sanity check #[RequiresPhp] value and range (#269)
  • d309858 - Update github-actions to f3e473d (#301)
  • 4a8e26f - Update github-actions (#300)
  • 2c07f22 - Replace deprecated actions/create-release with softprops/action-gh-release
  • 67c9d57 - Bump GitHub Actions across major versions
  • a7baf3b - Bump GitHub Actions within their current majors
  • 3ea20e6 - Update github-actions
  • 53357ab - Update github-actions
  • 6760e77 - latest infection does not support PHP 8.2 (#296)
  • ecfa568 - Update release-toot.yml (#295)
  • 21ea2e9 - name-collision-detector (#294)
  • 6851172 - Update test assertions
  • e2c6207 - Fix build (#287)
  • db27c1f - Delete .github/workflows/claude-react-on-comment.yml
  • 1c9e1df - Refactor build workflow to use GITHUB_BASE_REF
  • 53c1301 - Lint workflows
  • fca9e3a - [StepSecurity] ci: Harden GitHub Actions
  • bfdcb62 - Remove PHPSTAN_BOT_TOKEN from checkout step
  • bb6479c - React on issues opened and fall back to issue body
  • 10e8509 - Add CLAUDE.md to export-ignore in .gitattributes
  • 2202890 - Add CLAUDE.md with project documentation for AI assistants
  • ffd7013 - Add Claude React on Comment workflow
Commits
  • f5dc20f Fix #[RequiresPhpunit] version requirement being evaluated against PHP vers...
  • 1e573d3 AttributeVersionRequirementHelper: add defaults to bool parameters (#312)
  • c2f9775 Update actions/cache action to v6 (#311)
  • 933f682 Update actions/cache action to v5.1.0 (#310)
  • 8ec191f Check #[RequiresPhpunit] in the same way we check #[RequiresPhp] (#308)
  • d138088 Implement ClassAttributeRequiresPhpVersionRule (#305)
  • caada62 Update github-actions to v7 (#307)
  • 611a216 Update github-actions to v3.0.1 (#306)
  • 2312495 Extract AttributeVersionRequirementHelper (#304)
  • 952d0ee Warn about incomplete versions in #[RequiresPhp] (#303)
  • Additional commits viewable in compare view

Updates symfony/var-dumper from 8.1.0 to 8.1.2

Release notes

Sourced from symfony/var-dumper's releases.

v8.1.2

Changelog (symfony/var-dumper@v8.1.1...v8.1.2)

v8.1.1

Changelog (symfony/var-dumper@v8.1.0...v8.1.1)

Commits

Updates phpunit/phpunit from 13.1.13 to 13.2.6

Release notes

Sourced from phpunit/phpunit's releases.

PHPUnit 13.2.6

Fixed

  • #6861: Hook methods run twice when a template method is marked with its corresponding attribute
  • Regression that stopped test methods from being sorted by source code location

Learn how to install or update PHPUnit 13.2 in the documentation.

Keep up to date with PHPUnit:

PHPUnit 13.2.5

Changed

  • Messages for tests that are skipped because of an unsatisfied RequiresPhp, RequiresPhpunit, or RequiresPhpExtension version requirement now include the version that is actually being used
  • Warning messages about incomplete version requirements as well as version requirements without a version comparison operator, and the error message for invalid version requirements, now include the full version requirement and explain what is expected

Fixed

  • #6825: Forwarding to previous error handler can result in infinite recursion
  • #6831: PHPUnit's error handler does not respect @ error suppression and forwards suppressed warnings to previous error handler
  • #6833: assertArrayHasKey() does not accept ArrayAccess implementations with a specific value type when test code is analysed with PHPStan at level 9
  • #6854: Deprecation triggered in first-party code is wrongly classified as indirect when the first-party code is called from third-party code
  • Test classes were not sorted relative to each other when tests were ordered by duration

Learn how to install or update PHPUnit 13.2 in the documentation.

Keep up to date with PHPUnit:

PHPUnit 13.2.4

Fixed

  • #6817: Issue is reported even when previously registered error handler turns the error into an exception
  • #6818: Issue is reported when custom error handler checks error_reporting() output dynamically

Learn how to install or update PHPUnit 13.2 in the documentation.

Keep up to date with PHPUnit:

... (truncated)

Changelog

Sourced from phpunit/phpunit's changelog.

[13.2.6] - 2026-07-28

Fixed

  • #6861: Hook methods run twice when a template method is marked with its corresponding attribute
  • Regression that stopped test methods from being sorted by source code location

[13.2.5] - 2026-07-25

Changed

  • Messages for tests that are skipped because of an unsatisfied RequiresPhp, RequiresPhpunit, or RequiresPhpExtension version requirement now include the version that is actually being used
  • Warning messages about incomplete version requirements as well as version requirements without a version comparison operator, and the error message for invalid version requirements, now include the full version requirement and explain what is expected

Fixed

  • #6825: Forwarding to previous error handler can result in infinite recursion
  • #6831: PHPUnit's error handler does not respect @ error suppression and forwards suppressed warnings to previous error handler
  • #6833: assertArrayHasKey() does not accept ArrayAccess implementations with a specific value type when test code is analysed with PHPStan at level 9
  • #6854: Deprecation triggered in first-party code is wrongly classified as indirect when the first-party code is called from third-party code
  • Test classes were not sorted relative to each other when tests were ordered by duration

[13.2.4] - 2026-07-08

Fixed

  • #6817: Issue is reported even when previously registered error handler turns the error into an exception
  • #6818: Issue is reported when custom error handler checks error_reporting() output dynamically

[13.2.3] - 2026-07-06

Changed

  • #6797: Adapt code generated for test double of interface with constructor for PHP 8.6

[13.2.2] - 2026-06-29

Fixed

  • #6768: Negative priorities for hook methods are rejected by static analysis
  • #6778: Deprecation triggered outside of tests cannot be ignored

[13.2.1] - 2026-06-15

Fixed

  • #6741: Test is not run when --filter matches the name of a data set but not the name of the test method
  • #6743: Improve error message for invalid version constraint in attribute
  • #6744: Environment variable attributes reject empty-string values since PHPUnit 13.2.0

... (truncated)

Commits
  • 5d2afe1 Prepare release
  • 2bf4722 Merge branch '12.5' into 13.2
  • b98e028 Prepare release
  • 487be9d Merge branch '12.5' into 13.2
  • 80764d5 Fix regression introduced in 612d48fde that stopped test methods from being s...
  • e4eafbb Merge branch '12.5' into 13.2
  • 0f65ecb Sort test classes by their prettified name using case-insensitive natural ord...
  • 37ae898 Merge branch '12.5' into 13.2
  • 5ac8620 Fix errors reported by PHPStan
  • dc03cdf Update tools
  • 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

…dates

Bumps the all-composer-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [illuminate/collections](https://github.com/illuminate/collections) | `13.13.0` | `13.23.0` |
| [nesbot/carbon](https://github.com/CarbonPHP/carbon) | `3.11.4` | `3.13.1` |
| [symfony/string](https://github.com/symfony/string) | `8.1.0` | `8.1.2` |
| [phpstan/phpstan](https://github.com/phpstan/phpstan-phar-composer-source) | `2.2.1` | `2.2.7` |
| [psy/psysh](https://github.com/bobthecow/psysh) | `0.12.23` | `0.12.24` |
| [phpstan/phpstan-phpunit](https://github.com/phpstan/phpstan-phpunit) | `2.0.16` | `2.0.18` |
| [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) | `13.1.13` | `13.2.6` |



Updates `illuminate/collections` from 13.13.0 to 13.23.0
- [Commits](illuminate/collections@v13.13.0...v13.23.0)

Updates `nesbot/carbon` from 3.11.4 to 3.13.1
- [Release notes](https://github.com/CarbonPHP/carbon/releases)
- [Commits](CarbonPHP/carbon@3.11.4...3.13.1)

Updates `symfony/string` from 8.1.0 to 8.1.2
- [Release notes](https://github.com/symfony/string/releases)
- [Changelog](https://github.com/symfony/string/blob/8.2/CHANGELOG.md)
- [Commits](symfony/string@v8.1.0...v8.1.2)

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

Updates `psy/psysh` from 0.12.23 to 0.12.24
- [Release notes](https://github.com/bobthecow/psysh/releases)
- [Commits](bobthecow/psysh@v0.12.23...v0.12.24)

Updates `phpstan/phpstan-phpunit` from 2.0.16 to 2.0.18
- [Release notes](https://github.com/phpstan/phpstan-phpunit/releases)
- [Commits](phpstan/phpstan-phpunit@2.0.16...2.0.18)

Updates `symfony/var-dumper` from 8.1.0 to 8.1.2
- [Release notes](https://github.com/symfony/var-dumper/releases)
- [Changelog](https://github.com/symfony/var-dumper/blob/8.2/CHANGELOG.md)
- [Commits](symfony/var-dumper@v8.1.0...v8.1.2)

Updates `phpunit/phpunit` from 13.1.13 to 13.2.6
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/13.2.6/ChangeLog-13.2.md)
- [Commits](sebastianbergmann/phpunit@13.1.13...13.2.6)

---
updated-dependencies:
- dependency-name: illuminate/collections
  dependency-version: 13.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-composer-dependencies
- dependency-name: nesbot/carbon
  dependency-version: 3.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-composer-dependencies
- dependency-name: symfony/string
  dependency-version: 8.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-composer-dependencies
- dependency-name: phpstan/phpstan
  dependency-version: 2.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-composer-dependencies
- dependency-name: psy/psysh
  dependency-version: 0.12.24
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-composer-dependencies
- dependency-name: phpstan/phpstan-phpunit
  dependency-version: 2.0.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-composer-dependencies
- dependency-name: symfony/var-dumper
  dependency-version: 8.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-composer-dependencies
- dependency-name: phpunit/phpunit
  dependency-version: 13.2.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-composer-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 Aug 1, 2026
@fey
fey merged commit 038329e into main Aug 3, 2026
2 checks passed
@fey
fey deleted the dependabot/composer/all-composer-dependencies-513935ca41 branch August 3, 2026 12:07
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