Skip to content

Update all non-major dependencies #929

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 8.15.x
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 17, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
azjezz/psl ^3.2.0 -> ^3.3.0 age adoption passing confidence require minor
composer/composer (source) ^2.8.5 -> ^2.8.10 age adoption passing confidence require patch
laminas/laminas-continuous-integration-action 1.41.0 -> 1.42.0 age adoption passing confidence action minor
nikic/php-parser ^5.4.0 -> ^5.6.1 age adoption passing confidence require minor
nikolaposa/version ^4.2.0 -> ^4.2.1 age adoption passing confidence require patch
phpunit/phpunit (source) ^11.5.7 -> ^11.5.32 age adoption passing confidence require-dev patch
psalm/plugin-phpunit ^0.19.2 -> ^0.19.5 age adoption passing confidence require-dev patch
roave/better-reflection ^6.57.0 -> ^6.59.0 age adoption passing confidence require minor
roave/infection-static-analysis-plugin ^1.36.0 -> ^1.38.0 age adoption passing confidence require-dev minor
shivammathur/setup-php 2.32.0 -> 2.35.3 age adoption passing confidence action minor
squizlabs/php_codesniffer ^3.11.3 -> ^3.13.2 age adoption passing confidence require-dev minor
symfony/console (source) ^7.2.1 -> ^7.3.2 age adoption passing confidence require minor
vimeo/psalm ^6.6.1 -> ^6.13.1 age adoption passing confidence require-dev minor

Release Notes

azjezz/psl (azjezz/psl)

v3.3.0: Kanda 3.3.0

Compare Source

What's Changed

Full Changelog: azjezz/psl@3.2.0...3.3.0

composer/composer (composer/composer)

v2.8.10

Compare Source

  • Fixed plugins appearing loaded despite not being loaded yet in some edge cases (#​12442)
    • Fixed forward compatibility with Symfony 7.4 (#​12445)
    • Fixed deprecation warning on PHP 8.4 when platform check fails (#​12453)
    • Fixed support for new planner role in GitLab (#​12426)
    • Fixed Bitbucket regression introduced in 2.8.0 (#​12462)
    • Fixed json schema issues with version validation (#​12438)
    • Fixed git prompt breaking some systems (#​12437)
    • Fixed warning on PHP 8.5 when curl is not loaded (#​12472)

v2.8.9

Compare Source

  • Fixed json schema issues with version validation (#​12376)
    • Fixed bump-after-update triggering after an update --lock, which makes no sense (#​12371)
    • Fixed zip bomb false positives when unpacking using ZipArchive (#​12409)
    • Fixed creation of empty archives (#​12408)
    • Removed output of script being run when running via composer <script-name> (#​12383)

v2.8.8

Compare Source

  • Fixed json schema issues with version validation (#​12367)
    • Fixed issues running on 32bit machines (#​12365)

v2.8.7

Compare Source

  • Bumped justinrainbow/json-schema dependency to 6.x (#​12348)
    • Added COMPOSER_MAX_PARALLEL_PROCESS env var to control max amount of parallel processes Composer will start (#​12356)
    • Added zstd/brotli presence in diagnose command output
    • Fixed error handler to avoid spamming deprecation notices (#​12360)
    • Fixed InstalledVersions returning duplicate data at Composer runtime (#​12225)
    • Fixed handling of --with ... constraints to make them apply to packages replaced a package with a different name (#​12353)
    • Fixed deprecation warnings showing up in IDE code inspections within the vendor dir (#​12331)
    • Fixed a few json schema completeness issues (#​12332, #​12321)
    • Fixed issue autoloading files with a .phar inside the path (#​12326)

v2.8.6

Compare Source

  • Added COMPOSER_WITH_DEPENDENCIES and COMPOSER_WITH_ALL_DEPENDENCIES env vars to enable the --with[-all]-dependencies flags (#​12289)
    • Added COMPOSER_SKIP_SCRIPTS env var to tell Composer to skip certain script handlers by script names (comma separated) (#​12290)
    • Added error hint when Avast is detected together with curl certificate errors (#​9894)
    • Fixed handling of backslash in folder names when creating archives (#​12327)
    • Fixed detection of containerd for containers to avoid warning about root usage (#​12299)
laminas/laminas-continuous-integration-action (laminas/laminas-continuous-integration-action)

v1.42.0

Compare Source

Release Notes for 1.42.0
1.42.0
  • Total issues resolved: 0
  • Total pull requests resolved: 10
  • Total contributors: 1
renovate
nikic/PHP-Parser (nikic/php-parser)

v5.6.1

Compare Source

Fixed
  • Fixed Param::isPublic() for parameters with asymmetric visibility keyword.
  • Fixed PHP 8.5 deprecation warnings for SplObjectStorage methods.
Added
  • Added cast kind attributes to Cast\Int_, Cast\Bool_ and Cast\String_.
    These allow distinguishing the deprecated versions of these casts.

v5.6.0

Compare Source

Added
  • [8.5] Added support for clone with arbitrary function arguments. This will be parsed as an
    Expr\FuncCall node, instead of the usual Expr\Clone_ node.
  • [8.5] Permit declaration of function clone for use in stubs.
  • [8.5] Added support for the pipe operator, represented by Expr\BinaryOp\Pipe.
  • [8.5] Added support for the (void) cast, represented by Expr\Cast\Void_.
  • [8.5] Added support for the final modifier on promoted properties.
  • Added CallLike::getArg() to fetch an argument by position and name.

v5.5.0

Compare Source

Added
  • [8.5] Added support for attributes on constants. Stmt\Const_ now has an attrGroups subnode.
  • Added weakReferences option to NodeConnectingVisitor and ParentConnectingVisitor. This
    will create the parent/next/prev references as WeakReferences, to avoid making the AST cyclic
    and thus increasing GC pressure.
Changed
  • Attributes on parameters are now printed on separate lines if the pretty printer target version
    is PHP 7.4 or older (which is the default). This allows them to be interpreted as comments,
    instead of causing a parse error. Specify a target version of PHP 8.0 or newer to restore the
    previous behavior.
nikolaposa/version (nikolaposa/version)

v4.2.1

Compare Source

Fixed
sebastianbergmann/phpunit (phpunit/phpunit)

v11.5.32: PHPUnit 11.5.32

Compare Source

Changed
  • #​6308: Improve output of --check-php-configuration
  • The version number for the test result cache file has been incremented to reflect that its structure for PHPUnit 11.5 is not compatible with its structure for PHPUnit 8.5 and PHPUnit 9.6
Fixed
  • #​6281: Exceptions raised in after-test method are not reported for skipped tests

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

Keep up to date with PHPUnit:
  • You can follow @​[email protected] to stay up to date with PHPUnit's development.
  • You can subscribe to the PHPUnit Updates newsletter to receive updates about and tips for PHPUnit.

v11.5.31

Compare Source

v11.5.30: PHPUnit 11.5.30

Compare Source

Changed
  • #​6300: Emit warning when the name of a data provider method begins with test
  • Do not use SplObjectStorage methods that will be deprecated in PHP 8.5

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

Keep up to date with PHPUnit:
  • You can follow @​[email protected] to stay up to date with PHPUnit's development.
  • You can subscribe to the PHPUnit Updates newsletter to receive updates about and tips for PHPUnit.

v11.5.29: PHPUnit 11.5.29

Compare Source

Added
  • #​6297: --check-php-configuration CLI option for checking whether PHP is configured for testing
Changed
  • #[IgnorePhpunitDeprecations] is now considered for test runner deprecations (where applicable)
Fixed
  • #​6160: Baseline file in a subdirectory contains absolute paths
  • Errors due to invalid data provided using #[TestWith] or #[TestWithJson] attributes are now properly reported
  • The DataProviderMethodFinished event is now also emitted when the provided data set has an invalid key

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

Keep up to date with PHPUnit:
  • You can follow @​[email protected] to stay up to date with PHPUnit's development.
  • You can subscribe to the PHPUnit Updates newsletter to receive updates about and tips for PHPUnit.

v11.5.28: PHPUnit 11.5.28

Compare Source

Fixed
  • #​6097: The file attribute of <testClass> node of XML test list can be wrong

How to install or update PHPUnit

v11.5.27: PHPUnit 11.5.27

Compare Source

Fixed
  • #​6254: defects,randomconfiguration is supported by implementation, but it is not allowed by the XML configuration file schema
  • #​6259: Order of tests which use data from data providers is not affected by test sorting
  • #​6266: Superfluous whitespace in TestDox output when test method name has a number after the test prefix

How to install or update PHPUnit

v11.5.26: PHPUnit 11.5.26

Compare Source

Fixed
  • #​6104: Test with dependencies and data provider fails
  • #​6163: @no-named-arguments leads to static analysis errors for variadic arguments

How to install or update PHPUnit

v11.5.25: PHPUnit 11.5.25

Compare Source

Fixed
  • #​6249: No meaningful error when <testsuite> element is missing required name attribute

How to install or update PHPUnit

v11.5.24: PHPUnit 11.5.24

Compare Source

Added
  • #​6236: failOnPhpunitWarning attribute on the <phpunit> element of the XML configuration file and --fail-on-phpunit-warning CLI option for controlling whether PHPUnit should fail on PHPUnit warnings (default: true)
  • #​6239: --do-not-fail-on-deprecation, --do-not-fail-on-phpunit-warning, --do-not-fail-on-phpunit-deprecation, --do-not-fail-on-empty-test-suite, --do-not-fail-on-incomplete, --do-not-fail-on-notice, --do-not-fail-on-risky, --do-not-fail-on-skipped, and --do-not-fail-on-warning CLI options
  • --do-not-report-useless-tests CLI option as a replacement for --dont-report-useless-tests
Deprecated
  • --dont-report-useless-tests CLI option (use --do-not-report-useless-tests instead)
Fixed
  • #​6243: Constraints cannot be implemented without using internal class ExpectationFailedException

How to install or update PHPUnit

v11.5.23: PHPUnit 11.5.23

Compare Source

Fixed
  • #​6222: Data Provider seems to mess up Test Dependencies
  • shortenArraysForExportThreshold XML configuration setting has no effect on all arrays exported for event-related value objects

How to install or update PHPUnit

v11.5.22: PHPUnit 11.5.22

Compare Source

Changed
  • Do not treat warnings differently than other issues in summary section of default output

How to install or update PHPUnit

v11.5.21: PHPUnit 11.5.21

Compare Source

Changed
  • #​6210: Set default Clover coverage project name
  • #​6217: Improve the error message when createStubForIntersectionOfInterfaces() is called with a class

How to install or update PHPUnit

v11.5.20: PHPUnit 11.5.20

Compare Source

Fixed
  • #​6199: assertEmpty() and assertNotEmpty() use overly restrictive phpstan-assert empty directives
  • #​6192: Reverted change made in PHPUnit 11.5.19 due to regression

How to install or update PHPUnit

v11.5.19: PHPUnit 11.5.19

Compare Source

Added
  • displayDetailsOnAllIssues attribute on the <phpunit> element of the XML configuration file and --display-all-issues CLI option for controlling whether PHPUnit should display details on all issues that are triggered (default: false)
  • failOnAllIssues attribute on the <phpunit> element of the XML configuration file and --fail-on-all-issues CLI option for controlling whether PHPUnit should fail on all issues that are triggered (default: false)
Changed
  • #​5956: Improved handling of deprecated E_STRICT constant
Fixed
  • #​6192: Positive %a and %A matches are not ignored from diff when EXPECTF fails

How to install or update PHPUnit

v11.5.18: PHPUnit 11.5.18

Compare Source

Changed
  • When gathering the telemetry information that each event has, the real size of memory allocated from the operating system is no longer used as this is grown by PHP's memory manager in chunks that are so large that small(er) increases in peak memory usage cannot be seen
  • The peak memory usage returned by memory_get_peak_usage() is now reset immediately before the Test\Prepared event is emitted using memory_reset_peak_usage() so that (memory usage at Test\Finished - memory usage at Test\Prepared) is a better approximation of the memory usage of the test
  • The string representation of Telemetry\Info now uses peak memory usage instead of memory usage (this affects --log-events-verbose-text)
Fixed
  • A "Before Test Method Errored" event is no longer emitted when a test is skipped in a "before test" method

How to install or update PHPUnit

v11.5.17: PHPUnit 11.5.17

Compare Source

Fixed
  • #​6104: Reverted change introduced in PHPUnit 11.5.16

How to install or update PHPUnit

v11.5.16: PHPUnit 11.5.16

Compare Source

Fixed
  • #​6104: Test with dependencies and data provider fails
  • #​6174: willReturnMap() fails with nullable parameters when their default is null and no argument is passed for them

How to install or update PHPUnit

v11.5.15: PHPUnit 11.5.15

Compare Source

Changed
  • #​6150: Reverted change introduced in PHPUnit 11.5.13

How to install or update PHPUnit

v11.5.14: PHPUnit 11.5.14

Compare Source

Changed
  • Updated dependencies for PHAR distribution

How to install or update PHPUnit

v11.5.13: PHPUnit 11.5.13

Compare Source

Changed
  • #​6150: Trigger warning when code coverage analysis is performed and no cache directory is configured

How to install or update PHPUnit

v11.5.12: PHPUnit 11.5.12

Compare Source

Fixed
  • #​5976: TestDox result printer does not display details about errors triggered in before-first-test and after-last-test methods

How to install or update PHPUnit

v11.5.11: PHPUnit 11.5.11

Compare Source

Fixed
  • #​6142: $expected and $actual are mixed up in failure description when assertJsonFileEqualsJsonFile() fails

How to install or update PHPUnit

v11.5.10: PHPUnit 11.5.10

Compare Source

Fixed
  • #​6138: Test with failed expectation on value passed to mocked method is incorrectly considered risky

How to install or update PHPUnit

v11.5.9: PHPUnit 11.5.9

Compare Source

Fixed
  • #​6134: Missing event when child process ends unexpectedly

How to install or update PHPUnit

v11.5.8: PHPUnit 11.5.8

Compare Source

Fixed
  • A Test\PreparationFailed event is now emitted in addition to a Test\Errored event when an unexpected exception is triggered in a before-test method
  • A Test\Passed event is no longer emitted in addition to a Test\Failed or Test\Errored event when an assertion failure or an unexpected exception is triggered in an after-test method
  • A TestSuite\Finished event is now emitted when a before-first-test method errors

How to install or update PHPUnit

psalm/psalm-plugin-phpunit (psalm/plugin-phpunit)

v0.19.5

Compare Source

What's Changed

Full Changelog: psalm/psalm-plugin-phpunit@0.19.4...0.19.5

v0.19.4

Compare Source

What's Changed

New Contributors

Full Changelog: psalm/psalm-plugin-phpunit@0.19.3...0.19.4

v0.19.3: Psalm v7 support

Compare Source

This release adds support for psalm v7.

Full Changelog: psalm/psalm-plugin-phpunit@0.19.2...0.19.3

Roave/BetterReflection (roave/better-reflection)

v6.59.0

Compare Source

Release Notes for 6.59.0

Feature release (minor)

6.59.0
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
enhancement

v6.58.0

Compare Source

Release Notes for 6.58.0

Feature release (minor)

6.58.0
  • Total issues resolved: 0
  • Total pull requests resolved: 2
  • Total contributors: 1
enhancement
dependencies
Roave/infection-static-analysis-plugin (roave/infection-static-analysis-plugin)

v1.38.0

Compare Source

Release Notes for 1.38.0

Feature release (minor)

1.38.0
  • Total issues resolved: 0
  • Total pull requests resolved: 2
  • Total contributors: 1
renovate

v1.37.0

Compare Source

Release Notes for 1.37.0

Feature release (minor)

1.37.0
  • Total issues resolved: 0
  • Total pull requests resolved: 2
  • Total contributors: 2
dependencies,enhancement,renovate
enhancement
shivammathur/setup-php (shivammathur/setup-php)

v2.35.3

Compare Source

Changelog

  • Improved github-token support for GitHub Enterprise. (#​981).

    For GitHub Enterprise users, the github-token input does not default to the GITHUB_TOKEN secret. Therefore, it's recommended to set the github-token input to a Personal Access Token (PAT).

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    github-token: ${{ secrets.YOUR_PAT_TOKEN }}
  • Fixed support for relay extension for PHP 7.4 on macOS.

  • Updated internal workflows to not run on forks. (#​982)

  • Updated Node.js dependencies.

Thanks @​jrfnl for the contributions 🎉

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.35.2

Compare Source

Changelog

  • Fixed race condition in updating composer auth.json. (#​980)

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.35.1

Compare Source

Changelog
  • Fixed regression in composer authentication in 2.35.0. (#​979)

  • Fixed installing geos extension on PHP 8.5.

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.35.0

Compare Source

Changelog
  • Added support for github-token input. (#​969)
    It uses the GITHUB_TOKEN secret by default and should prevent any rate limiting issues while installing your composer dependencies or while adding any tools supported by setup-php.

    Also, it can used to specify a personal access token (PAT) to authenticate with GitHub if you need that for your composer dependencies.

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    github-token: ${{ secrets.PAT }}
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: mago
  • Added support for Roave/BackwardCompatibilityCheck. (#​911, #​974)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: backward-compatibility-check
  • Added support for shipmonk/name-collision-detector. (#​932, #​973)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: name-collision-detector
  • Fixed fallback behavior on adding a specific version of extension when fail-fast is set to true. (#​972)

  • Fixed enabling extensions on Windows. (#​978)

  • Fixed installing gearman extension on PHP 8.5.

  • Cleaned up the cubrid extension script.

  • Removed ondrej/pkg-gearman ppa in gearman extension setup.

  • Switched to ppa.setup-php.com for ondrej/php ppa fallback mirror.

  • Update default composer version in README. (#​966)

  • Fixed a broken link in README. (#​967)

  • Updated Node.js dependencies.

Thanks @​jrfnl and @​OskarStark for the contributions 🎉

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.34.1

Compare Source

Changelog
  • Fixed tool-cache directory on self-hosted runners.

  • Fixed generating lock path in unix.sh on verbose branch.

  • Updated Node.js dependencies.

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.34.0

Compare Source

Changelog
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: pie
  • Added support to allow composer plugins by specifying the list of plugins in COMPOSER_ALLOW_PLUGINS env.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
  env:
    COMPOSER_ALLOW_PLUGINS: composer/installers, composer/satis
  • Added fallback for fetching the manifest for PHP versions. (#​952)

  • Added support to specify tools directory using SETUP_PHP_TOOLS_DIR env. (#​943, #​945)

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
  env:
    SETUP_PHP_TOOLS_DIR: /tmp/tools
  • Improved detecting linux self-hosted runners if runner env is not specified. (#​947)

  • Improved locking mechanism while fetching files on self-hosted runners.

  • Dropped support for using dependency files in shivammathur/extension tap.

  • Fixed errors on macOS regarding missing taps.

  • Fixed logic to fail on first error in extension setup from source. (#​951)

  • Fixed error about missing self_hosted_helper function on macOS.

  • Fixed the file name of the sources list to match the name used by apt-add-repository. (#​953)

  • Fixed installing hiredis on macOS during relay setup.

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: relay
  • Updated Node.js dependencies.

Thanks @​alcaeus, @​JMoodyFWD, and @​cmb69 for the contributions 🎉

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitterconfig help if that's undesired.


  • If you want to rebase/retry this PR, check this box

Read more about the use of Renovate Bot within ocramius/* projects.

@renovate renovate bot added the renovate label Feb 17, 2025
Copy link
Contributor Author

renovate bot commented Feb 17, 2025

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2750084 to 76a37c0 Compare February 18, 2025 12:09
@renovate renovate bot changed the title Update dependency vimeo/psalm to ^6.7.1 Update all non-major dependencies Feb 18, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 9307066 to 1e819fd Compare February 25, 2025 22:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2d398c6 to 6cc0836 Compare March 5, 2025 11:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2340d46 to c08b4cf Compare March 11, 2025 21:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 7c7a3f7 to 1fd8366 Compare March 23, 2025 18:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 9c25a71 to 7c9b443 Compare March 28, 2025 16:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0000773 to 4c4d00d Compare May 31, 2025 09:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 777f0cc to 6002584 Compare June 9, 2025 13:47
@renovate renovate bot changed the base branch from 8.14.x to 8.15.x June 9, 2025 19:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 4cf0c2b to 6c043eb Compare June 13, 2025 10:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from cc0ed0a to e34fa56 Compare June 20, 2025 11:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f4f2146 to 07fa013 Compare June 28, 2025 10:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 79fa122 to ff82d88 Compare July 11, 2025 07:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ff82d88 to 55df671 Compare July 14, 2025 14:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a5499f2 to 00ed263 Compare July 31, 2025 11:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 7cf03ad to eb7bf3d Compare August 12, 2025 09:35
| datasource  | package                                       | from   | to      |
| ----------- | --------------------------------------------- | ------ | ------- |
| packagist   | azjezz/psl                                    | 3.2.0  | 3.3.0   |
| packagist   | composer/composer                             | 2.8.5  | 2.8.10  |
| github-tags | laminas/laminas-continuous-integration-action | 1.41.0 | 1.42.0  |
| packagist   | nikic/php-parser                              | 5.4.0  | 5.6.1   |
| packagist   | nikolaposa/version                            | 4.2.0  | 4.2.1   |
| packagist   | phpunit/phpunit                               | 11.5.7 | 11.5.32 |
| packagist   | psalm/plugin-phpunit                          | 0.19.2 | 0.19.5  |
| packagist   | roave/better-reflection                       | 6.57.0 | 6.59.0  |
| packagist   | roave/infection-static-analysis-plugin        | 1.36.0 | 1.38.0  |
| github-tags | shivammathur/setup-php                        | 2.32.0 | 2.35.3  |
| packagist   | squizlabs/php_codesniffer                     | 3.11.3 | 3.13.2  |
| packagist   | symfony/console                               | 7.2.1  | 7.3.2   |
| packagist   | vimeo/psalm                                   | 6.6.1  | 6.13.1  |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from eb7bf3d to 3ab14e0 Compare August 13, 2025 20:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants