Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update all non-major dependencies#45

Merged
renovate[bot] merged 1 commit into
2.7.xfrom
renovate/all-minor-patch
Oct 6, 2025
Merged

Update all non-major dependencies#45
renovate[bot] merged 1 commit into
2.7.xfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 9, 2024

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
behat/behat (source) ^3.14.0 -> ^3.25.0 age adoption passing confidence require patch
laminas/laminas-ci-matrix-action 1.24.0 -> 1.30.0 age adoption passing confidence action minor
laminas/laminas-continuous-integration-action 1.39.0 -> 1.43.0 age adoption passing confidence action minor
phpunit/phpunit (source) ^9.6.19 -> ^9.6.29 age adoption passing confidence require-dev patch
psr/container ^2.0.0 -> ^2.0.2 age adoption passing confidence require patch
shivammathur/setup-php 2.30.2 -> 2.35.5 age adoption passing confidence action minor
symfony/config (source) ^6.0.19 -> ^6.4.26 age adoption passing confidence require patch
symfony/dependency-injection (source) ^6.0.20 -> ^6.4.26 age adoption passing confidence require patch

Release Notes

laminas/laminas-ci-matrix-action (laminas/laminas-ci-matrix-action)

v1.30.0

Compare Source

Release Notes for 1.30.0
1.30.0
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
Enhancement

v1.29.0

Compare Source

Release Notes for 1.29.0
1.29.0
  • Total issues resolved: 0
  • Total pull requests resolved: 3
  • Total contributors: 2
Enhancement
renovate

v1.28.0

Compare Source

Release Notes for 1.28.0
1.28.0
  • Total issues resolved: 0
  • Total pull requests resolved: 5
  • Total contributors: 4

QA

Enhancement
Bug
renovate

v1.27.2

Compare Source

Release Notes for 1.27.2

1.27.x bugfix release (patch)

1.27.2
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
Bug

v1.27.1

Compare Source

Release Notes for 1.27.1
1.27.1
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
Bug

v1.27.0

Compare Source

Release Notes for 1.27.0
1.27.0
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
Enhancement

v1.26.0

Compare Source

Release Notes for 1.26.0
1.26.0
  • Total issues resolved: 1
  • Total pull requests resolved: 1
  • Total contributors: 1
Enhancement

v1.25.0

Compare Source

Release Notes for 1.25.0
1.25.0
  • Total issues resolved: 0
  • Total pull requests resolved: 12
  • Total contributors: 2
Enhancement
renovate
laminas/laminas-continuous-integration-action (laminas/laminas-continuous-integration-action)

v1.43.0

Compare Source

Release Notes for 1.43.0
1.43.0
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
Enhancement

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

v1.41.0

Compare Source

Release Notes for 1.41.0
1.41.0
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
Enhancement

v1.40.1

Compare Source

Release Notes for 1.40.1
1.40.1
  • Total issues resolved: 1
  • Total pull requests resolved: 0
  • Total contributors: 1
Enhancement

v1.40.0

Compare Source

Release Notes for 1.40.0
1.40.0
  • Total issues resolved: 0
  • Total pull requests resolved: 3
  • Total contributors: 2
Enhancement
renovate
Bug
shivammathur/setup-php (shivammathur/setup-php)

v2.35.5

Compare Source

Changelog

  • Added support for macOS 26 based environments.
runs-on: macos-26
steps:
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  • Fixed resolving tools' releases to the latest one for a version prefix in tools input. (#​1000)
    For example, this should install the latest release of PHPUnit with 10.5 as the prefix.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.1'
    tools: phpunit:10.5.x
  • Improved installing intl extension with a particular ICU versions.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: intl-77.1
  • Fixed tools setup to use the new github-token input value to avoid rate limits.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: phpcs: 4
    github-token: ${{ secrets.GITHUB_TOKEN }}
  • Improved errors when tools fail to install. (#​991)

  • Fixed warning in get function on request failure.

  • Added a fallback source for composer phar archives. (#​956)

  • Added a fallback source for PPA keys. (#​996)

  • Fixed opcache.jit_buffer_size config on arm environments. (#​999)

  • 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.35.4

Compare Source

Changelog
  • Fixed updating brew core tap before installing PHP on macOS.

  • Updated actions in internal workflows.

  • 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.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 twitter setup-php status

v2.33.0

Compare Source

Changelog

  • Added support for Arm Ubuntu runners ubuntu-24.04-arm and ubuntu-22.04-arm. (#​848)
jobs:
  run:
    runs-on: ubuntu-24.04-arm # or ubuntu-22.04-arm
    steps:
    - name: Setup PHP
      uses: shivammathur/setup-php@v2
      with:
        php-version: '8.4'
  • Dropped support for Ubuntu 20.04 (ubuntu-20.04) for both GitHub hosted and self-hosted runners. Please migrate your workflows to ubuntu-22.04 or ubuntu-24.04. (#​939)
    Ref: https://github.com/shivammathur/setup-php#github-hosted-runners

  • Improved support for installing PHPUnit around new releases. Now setup-php will fallback to the previous release till new release is available on the phpunit.de website after it is tagged. (#​913, #​938)

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: phpunit
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
  env:
    TOOLS_DIR: '/tmp/tools'
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: composer-normalize
  • Updated the repository for PHP-CS-Fixer. (#​900)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: php-cs-fixer
  • Added support for blackfire and ionCube extensions for PHP 8.4.

  • Improved support for phalcon and zephir_parser extensions.

  • Improved support for OCI extensions pdo_oci and oci8 on self-hosted runners. (#​929)

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: pdo_oci, oci8
  • Improved locking mechanism while fetching files on self-hosted runners. (#​912)

  • Fixed a warning on macOS while patching extensions.

  • Fixed linking hiredis library during relay setup.

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

Thanks @​deguif, @​DanielEScherzer, @​voodooism, @​hms5232, and @​jg-development for the contributions 🎉

Thanks @​complex-gmbh and @​WorkOfStan for the sponsorship ❤️

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.32.0

Compare Source

Changelog
  • Added support for PHP 8.4 as the default stable PHP version.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  • Added support for PHP 8.5 as the nightly version. (#​867)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
  • Added support for pre-installed in php-version input. (#​872)
    It will setup the pre-installed PHP version on the runner as per the docs here
    https://github.com/shivammathur/setup-php?tab=readme-ov-file#github-hosted-runners. If the runner does not have a pre-installed PHP version, it will fail.
    Please note: It is not recommended to use this unless you are doing something trivial, the pre-installed PHP versions on GitHub hosted runners are old patch versions.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: pre-installed
  • Added support for .tool-versions file format in php-version-file input. (#​883)
    If you have an asdf .tool-versions file in your project.
    For example, you can specify .tool-versions now in the php-version-file input and the action would setup the correct PHP version.
ruby 3.4
php 8.4
nodejs 23.5
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version-file: .tool-versions
  • Added support for to specify the path for composer file in the project to read the PHP version using COMPOSER_PROJECT_DIR env value. (#​894)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  env:
    COMPOSER_PROJECT_DIR: php  
  • Added support for macos-15 GitHub hosted environment.

  • Added support for windows-2025 GitHub hosted environment.

  • Added support for composer-dependency-analyser tool (#​859, #​897)

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: composer-dependency-analyser
  • Added support for relay extension for PHP 8.4 and 8.5. (#​892)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: relay
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
  env:
    debug: true  
  • Fixed support for zts buids on self-hosted runners.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
  env:
    phpts: ts
  • Fixed support for oci extensions for PHP 8.4 and PHP 8.5.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: pdo_oci, oci8
  • Fixed support for zephir_parser extension.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: zephir_parser
  • Fixed support for couchbase extension on old PHP versions.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '7.1'
    extensions: couchbase
  • Fixed support for pdo_firebird extension on macos-15.
##### runs-on: macos-15
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: pdo_firebird
  • Improved support to install tools in a multi-user self-hosted environment.
  • Dropped support for macos-12 GitHub hosted environments.
  • Dropped support for Debian 10 based self-hosted environments.
  • Update Node.js dependencies.

Thanks @​janedbal, @​alexmerlin and @​tillkruss for the contributions 🎉

Thanks @​desrosj, @​bloodynumen and @​eliashaeussler for the sponsorship ❤️

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.31.1

Compare Source

Changelog

  • Fix installing PECL extensions on Windows with a build version #​855

  • Fix cache support for ioncube extension #​856

  • 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.31.0

Compare Source

Changelog
  • Added support for a fallback mirror for ondrej/php PPA when launchpad is down (#​834).

  • Fixed installing packages on self-hosted environments with existing conf files (#​852).

  • Fixed support for oci8 and pdo_oci extensions on ubuntu-24.04.

  • Fixed support for couchbase extension on ubuntu-24.04.

  • Fixed support for ubuntu-24.04 after apt-fast was dropped from the GA images.

  • Fixed support for firebird extension on macos-14

  • Fixed support for blackfire extension on macos-14.

  • Fixed support for relay extension.

  • Fixed support for phalcon extension for PHP 7.4 on Ubuntu.

  • 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.30.5

Compare Source

Changelog

  • Added support for Ubuntu 24.04.

  • Added support for easy-coding-standard in tools (#​838)

  • Added support for zephir_parser for PHP 8.3.

  • Fixed installing zts PHP versions on macOS (#​847).

  • Fixed installing ev extension (#​844).

  • Fixed support for ioncube extension (#​840).

  • 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.30.4

Compare Source

Changelog

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.30.3

Compare Source

Changelog
  • Fixed reading extension directory for PHP 8.4 on macOS.

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

Follow for updates

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


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config 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 Apr 9, 2024
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Apr 9, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: composer.lock
Command failed: composer update laminas/laminas-servicemanager:3.22.1 symfony/config:6.4.7 symfony/dependency-injection:6.4.7 --with-dependencies --ignore-platform-req='ext-*' --ignore-platform-req='lib-*' --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins
Loading composer repositories with package information
Dependency psr/container is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Updating dependencies
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Root composer.json requires symfony/config ^6.4.7 -> satisfiable by symfony/config[v6.4.7].
    - symfony/config v6.4.7 requires php >=8.1 -> your php version (8.0.99; overridden via config.platform, actual: 8.0.30) does not satisfy that requirement.
  Problem 2
    - Root composer.json requires symfony/dependency-injection ^6.4.7 -> satisfiable by symfony/dependency-injection[v6.4.7].
    - symfony/dependency-injection v6.4.7 requires php >=8.1 -> your php version (8.0.99; overridden via config.platform, actual: 8.0.30) does not satisfy that requirement.
  Problem 3
    - Root composer.json requires laminas/laminas-servicemanager ^3.22.1 -> satisfiable by laminas/laminas-servicemanager[3.22.1].
    - laminas/laminas-servicemanager 3.22.1 requires php ~8.1.0 || ~8.2.0 || ~8.3.0 -> your php version (8.0.99; overridden via config.platform, actual: 8.0.30) does not satisfy that requirement.
  Problem 4
    - symfony/config v6.4.7 requires php >=8.1 -> your php version (8.0.99; overridden via config.platform, actual: 8.0.30) does not satisfy that requirement.
    - behat/behat v3.14.0 requires symfony/config ^4.4 || ^5.0 || ^6.0 || ^7.0 -> satisfiable by symfony/config[v6.4.7].
    - behat/behat is locked to version v3.14.0 and an update of this package was not requested.

Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1fd6afe to 09595de Compare April 9, 2024 16:50
@renovate renovate Bot changed the base branch from 2.4.x to 2.5.x April 9, 2024 16:52
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from f4f790a to be6b119 Compare April 26, 2024 02:15
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b4e1895 to cf2bc50 Compare May 5, 2024 20:06
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from cf2bc50 to 7642f3b Compare May 7, 2024 03:53
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ae6cddc to 1a400b4 Compare May 23, 2024 04:45
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 022ba21 to 6e735c2 Compare June 5, 2024 23:59
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 6e735c2 to 88ef513 Compare June 13, 2024 03:26
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f9b3f8e to b0a489e Compare June 24, 2024 06:37
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 7d1b929 to de8b422 Compare July 5, 2024 03:47
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from cd5af41 to 93c8f5f Compare July 11, 2024 03:42
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 62b7f52 to eec509a Compare July 26, 2024 16:44
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from eec509a to aa2e1d6 Compare July 30, 2024 18:44
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from aa2e1d6 to b31a18c Compare August 8, 2024 14:06
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from b31a18c to d38b75a Compare August 23, 2024 03:02
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from d38b75a to 8677ca8 Compare August 30, 2024 04:51
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 26cb3cf to 79d7902 Compare October 9, 2024 03:36
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 33b6a38 to 743c222 Compare October 20, 2024 04:26
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from ecbbf34 to 260da20 Compare October 31, 2024 03:52
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from dcceb87 to 96615ba Compare November 13, 2024 04:32
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 49f65bf to 1c0ee7b Compare November 17, 2024 03:28
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b514cf1 to ebf29dc Compare November 28, 2024 04:46
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 06f876b to 8cd8295 Compare December 12, 2024 03:24
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 8cd8295 to 3322c1f Compare December 18, 2024 14:14
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f8c79f9 to 33e33bd Compare December 31, 2024 05:17
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 33e33bd to 5a22c31 Compare January 9, 2025 23:11
| datasource  | package                                       | from   | to     |
| ----------- | --------------------------------------------- | ------ | ------ |
| packagist   | behat/behat                                   | 3.25.0 | 3.25.0 |
| github-tags | laminas/laminas-ci-matrix-action              | 1.24.0 | 1.30.0 |
| github-tags | laminas/laminas-continuous-integration-action | 1.39.0 | 1.43.0 |
| packagist   | phpunit/phpunit                               | 9.6.29 | 9.6.29 |
| packagist   | psr/container                                 | 2.0.2  | 2.0.2  |
| github-tags | shivammathur/setup-php                        | 2.30.2 | 2.35.5 |
| packagist   | symfony/config                                | 6.4.26 | 6.4.26 |
| packagist   | symfony/dependency-injection                  | 6.4.26 | 6.4.26 |
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