Update all non-major dependencies
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence | Type | Update |
|---|---|---|---|---|---|---|---|
| nikic/php-parser | ^5.4.0 -> ^5.6.2 |
require | patch | ||||
| phing/phing (source) | ^3.0.1 -> ^3.1.0 |
require-dev | minor | ||||
| php-standard-library/phpstan-extension | ^2.0 -> ^2.0.2 |
require-dev | patch | ||||
| phpstan/phpstan | ^2.1.19 -> ^2.1.33 |
require-dev | patch | ||||
| phpunit/phpunit (source) | ^11.5.27 -> ^11.5.46 |
require-dev | patch | ||||
| roave/infection-static-analysis-plugin | ^1.38.0 -> ^1.41.0 |
require-dev | minor | ||||
| shivammathur/setup-php | 2.34.1 -> 2.36.0 |
action | minor | ||||
| symfony/console (source) | ^7.2.1 -> ^7.4.0 |
require | minor | ||||
| vimeo/psalm | ^6.13.0 -> ^6.13.1 |
require-dev | patch |
Release Notes
phingofficial/phing (phing/phing)
v3.1.0
NOTE: This version of Phing requires PHP 8.1 or later!
The following issues and pull requests were closed in this release:
- PDOSQLExecTask doesn't support the 'encoding' attribute #1932
- Refactor creation of
phing.startTimeproperty #1928 - Fix filename uniqueness when using TempfileTask #1917
- Phing 3.* and PHPUnit 12.* impossible to use together #1914
- Remove HipChatTask #1904
- Cache Phing::phingVersion() and add cached Phing::phingShortVersion() method #1900
- Added test case for numeric case values in SwitchTask #1899
- Fix fileset excludefile #1892
- v3 Upgrade: $excludesFile must be of type Phing\Io\File, string given #1890
- Error on using switch statement "Value is required for case" #1889
- fixed some PHP8.4 deprecations #1888
- Use getenv() function instead of $_ENV global variable. #1887
- Regression: empty argument in ExecTask cannot be escaped #1839
- Fix(Task/Ext/Archive/ZipTask): Preseves directories' permissions in zip #1820
- ZipTask stores directories with 777 permission #1817
- Error with MkdirTask #1619
php-standard-library/phpstan-extension (php-standard-library/phpstan-extension)
v2.0.2
sebastianbergmann/phpunit (phpunit/phpunit)
v11.5.46
v11.5.45: PHPUnit 11.5.45
Changed
- Updated list of deprecated PHP configuration settings for PHP 8.6
Fixed
- #6408: Exception in a data provider method leads to internal PHPUnit error
- #6426: Fix migration of configuration without schema location
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.
Roave/infection-static-analysis-plugin (roave/infection-static-analysis-plugin)
v1.41.0
Release Notes for 1.41.0
Feature release (minor)
1.41.0
- Total issues resolved: 0
- Total pull requests resolved: 2
- Total contributors: 1
dependencies,enhancement,renovate
- 511: Update dependency azjezz/psl to v4, dropped PHP 8.2 support thanks to @renovate[bot]
- 501: Update dependency phpunit/phpunit to v12 thanks to @renovate[bot]
v1.40.0
Release Notes for 1.40.0
Feature release (minor)
1.40.0
- Total issues resolved: 0
- Total pull requests resolved: 3
- Total contributors: 1
renovate
- 513: Update actions/checkout action to v6 thanks to @renovate[bot]
- 512: Update dependency doctrine/coding-standard to v14 thanks to @renovate[bot]
dependencies,enhancement,renovate
- 510: Update all non-major dependencies thanks to @renovate[bot]
shivammathur/setup-php (shivammathur/setup-php)
v2.36.0
Changelog
- Added support for PHP 8.5 stable release.
- name: Setup PHP 8.5 (stable)
uses: shivammathur/setup-php@v2
with:
php-version: '8.5'
- Added support for PHP 8.6.0-dev. Specifying
8.6in thephp-versioninput should now set up a nightly build from the master branch ofphp-src. (#1002)
- name: Setup PHP 8.6.0-dev
uses: shivammathur/setup-php@v2
with:
php-version: '8.6'
- Added support for
pdo_ibmandibm_db2extensions.
- name: Setup PHP with pdo_ibm and ibm_db2 extensions
uses: shivammathur/setup-php@v2
with:
php-version: '8.5'
extensions: pdo_ibm, ibm_db2
- Added support to install
blackfireextension on PHP 8.5.
- name: Setup PHP with blackfire extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.5'
extensions: blackfire
- Improved support to detect the required libraries when building from source for common extensions. For example installing
gnupgfrom source would install the requiredlibgpgmelibrary automatically. (#1021)
- name: Setup PHP with amqp extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.5'
extensions: gnupg-1.5.4
- Improved support for
symfony-cli. It should now correctly set up the requested version. (#1008)
- name: Setup PHP with symfony-cli
uses: shivammathur/setup-php@v2
with:
php-version: '8.5'
tools: symfony-cli:5.16.0
-
Improved support for
relayextension. Also added support to install the nightly version of the extension. (#1011, #1012) -
Improved installing PHP on macOS. Also fixed installing PHP on
macos-15-intelGitHub runner. (#1029) -
Improved support for
deb822format sources files on Linux. It should now set up the sources files indeb822format on Ubuntu 24.04, Debian 13, and newer. It would automatically switch the format as well for the repositories added by the action to the new format when supported. (#1027) -
Improved support for installing
pdo_oci. (#1028) -
Fixed installing
gearmanextension for PHP 5.6 and 7.0 on Linux. -
Fixed an edge case in tools setup to fall back to the latest version. (#1024)
-
Fixed support to build extensions with uppercase names from PECL. (#1017)
-
Fixed warning on
redissetup on macOS after formula rename. (shivammathur/homebrew-extensions#5413) -
Fixed fallback link for
composersetup. (#1025) -
Updated the link for flex documentation in README. (#1020)
-
Updated Node.js dependencies.
Thanks @shyim, @tillkruss, and @nicolas-grekas for the contributions 🎉
Thanks @JetBrainsOfficial and @cachewerk for the sponsorship ❤️
For the complete list of changes, please refer to the Full Changelog
Follow for updates
v2.35.5
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.5as the prefix.
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
tools: phpunit:10.5.x
- Improved installing
intlextension 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-tokeninput 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_sizeconfig on arm environments. (#999) -
Updated Node.js dependencies.
For the complete list of changes, please refer to the Full Changelog
Follow for updates
v2.35.4
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
v2.35.3
Changelog
-
Improved
github-tokensupport for GitHub Enterprise. (#981).For GitHub Enterprise users, the
github-tokeninput does not default to theGITHUB_TOKENsecret. Therefore, it's recommended to set thegithub-tokeninput 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
relayextension 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
v2.35.2
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
v2.35.1
Changelog
-
Fixed regression in composer authentication in
2.35.0. (#979) -
Fixed installing
geosextension on PHP 8.5.
For the complete list of changes, please refer to the Full Changelog
Follow for updates
v2.35.0
Changelog
-
Added support for
github-tokeninput. (#969) It uses theGITHUB_TOKENsecret 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
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
tools: backward-compatibility-check
- 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-fastis 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
symfony/console (symfony/console)
v7.4.0
Changelog (https://github.com/symfony/console/compare/v7.4.0-RC3...v7.4.0)
- bug symfony/symfony#62493 [Console] Fix exception message when abbreviation matches multiple hidden commands (@yoeunes)
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.
⚠️ 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 nikic/php-parser:5.7.0 phing/phing:3.1.0 php-standard-library/phpstan-extension:2.0.2 phpstan/phpstan:2.1.33 phpunit/phpunit:11.5.46 roave/infection-static-analysis-plugin:1.41.0 symfony/console:7.4.1 vimeo/psalm:6.13.1 --with-dependencies --ignore-platform-req='ext-*' --ignore-platform-req='lib-*' --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins --minimal-changes
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires phing/phing ^3.1.0 -> satisfiable by phing/phing[3.1.0].
- Root composer.json requires symfony/console ^7.4.1 -> satisfiable by symfony/console[v7.4.1].
- phing/phing 3.1.0 requires symfony/string ^6.3.12 -> satisfiable by symfony/string[v6.3.12, ..., v6.4.30].
- symfony/console v7.4.1 requires symfony/string ^7.2|^8.0 -> satisfiable by symfony/string[v7.2.0, ..., v7.4.0, v8.0.0, v8.0.1].
- symfony/string[v8.0.0, ..., v8.0.1] require php >=8.4 -> your php version (8.3.99; overridden via config.platform, actual: 8.3.28) does not satisfy that requirement.
- You can only install one version of a package, so only one of these can be installed: symfony/string[v6.3.12, ..., v6.4.30, v7.2.0, ..., v7.4.0, v8.0.0, v8.0.1].
Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
This needs an upstream phing/phing upgrade to be applied
This needs an upstream
phing/phingupgrade to be applied
From what I can tell, https://github.com/phingofficial/phing/pull/1939 is enough to unblock this pull request. That has already been merged, but a new release hasn't been tagged yet.