Releases: shivammathur/setup-php
2.31.1
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
2.31.0
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
andpdo_oci
extensions onubuntu-24.04
. -
Fixed support for
couchbase
extension onubuntu-24.04
. -
Fixed support for
ubuntu-24.04
afterapt-fast
was dropped from the GA images. -
Fixed support for
firebird
extension onmacos-14
-
Fixed support for
blackfire
extension onmacos-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
2.30.5
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
2.30.4
Changelog
-
Fixed support for
sqlsrv
andpro_sqlsrv
on Windows (#835). -
Fixed a permissions issue for brew on
macos-14
environments. -
Marked PHP 5.3 to PHP 5.5 as not supported on ARM64 macOS environments like
macos-14
.
For the complete list of changes, please refer to the Full Changelog
Follow for updates
2.30.3
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
2.30.2
Changelog
-
Added support for vld extension (shivammathur/homebrew-extensions#3827).
-
Added support to update brew along with the core tap on macOS to handle breaking changes in core tap formulae.
-
Updated Node.js dependencies.
For the complete list of changes, please refer to the Full Changelog
Follow for updates
2.30.1
Changelog
-
Improved updating Homebrew core tap on macOS using a retry logic.
-
Fixed support for phalcon on Windows.
-
Fixed support for OCI extensions for PHP 8.4 on Linux and macOS.
-
Fixed support for
sqlsrv
andpdo_sqlsrv
on PHP 8.0. -
Fixed type error on Windows in
Get-File
function. -
Minified the release file
dist/index.js
file generated byvercel/ncc
. -
Updated pre-installed PHP versions for GitHub runners in the README.
-
Updated Node.js dependencies.
For the complete list of changes, please refer to the Full Changelog
Follow for updates
2.30.0
Changelog
- Added support to set custom composer timeout (#811)
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
env:
COMPOSER_PROCESS_TIMEOUT: 300
For the complete list of changes, please refer to the Full Changelog
Follow for updates
2.29.0
Changelog
- Added support for 'lowest' and 'highest' aliases to specify PHP versions. #794
- The
lowest
alias installs the lowest actively supported version in the PHP project. - The 'highest' alias is equivalent to the 'latest' alias, so it installs the latest supported stable PHP version.
- The
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: lowest # or highest
- Added support for thread-safe builds on macOS. This completes the support for thread-safe builds on all supported platforms.
- name: Setup ZTS PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
env:
phpts: zts
- Updated documentation for support to read the PHP version from
composer.lock
andcomposer.json
files.- If
php-version
andphp-version-file
inputs are not specified, then it can read the php version fromplatform-overrides.php
value in composer.lock orconfig.platform.php
value fromcomposer.json
. #800
- If
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
- Switched to the new
PHPCSStandards/PHP_CodeSniffer
repository for builds ofphpcs
andphpcbf
tools. #809
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: phpcs, phpcbf
-
Marked
v1
version of the action as completely unsupported, it will receive no updates, please upgrade tov2
, if not done already. -
Fixed installing extensions on Windows for PHP 8.1 by reverting the version bump for minimum stability. #807
-
Fixed building extensions on PHP 8.4 that used backward compatibility headers from
ext/standard
to useext/random/php_random.h
header. -
Improved support for
phalcon
to install the extension when specified without the version number. #796
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: phalcon
-
Updated codeql workflow to use
v3
versions of codeql actions. #803 -
Updated docs workflow to use
actions/download-artifact@v4
andactions/upload-artifact@v4
. #804, #805 -
Updated Node.js dependencies.
Merged Pull Requests
For the complete list of changes, please refer to the Full Changelog
Thanks @dr5hn, @tighten, @ZeekInteractive, @acelaya, and @fulopattila122 for the sponsorship ❤️
Follow for updates
2.28.0
Changelog
- Specifying 8.3 in
php-version
now installs a stable build of PHP 8.3.
- name: Setup PHP 8.3
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- Specifying
latest
inphp-version
now installs PHP 8.3 as well.
- name: Setup Latest PHP
uses: shivammathur/setup-php@v2
with:
php-version: 'latest'
- Specifying
nightly
inphp-version
now installs PHP 8.4.
- name: Setup Nightly PHP
uses: shivammathur/setup-php@v2
with:
php-version: 'nightly'
- Added support for
intl
extension with ICU 74.1 (shivammathur/icu-intl#7)
- name: Setup PHP with intl
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: intl-74.1
- Added support to specify
zts
inphpts
environment variable instead ofts
to set up thread-safe PHP on Linux and Windows.
- name: Setup PHP 8.3 (ZTS)
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
env:
phpts: zts
- Fixed support for debug builds. (#784)
- name: Setup PHP 8.3
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
env:
debug: true
-
Added support for cached builds for PHP 8.3, PHP 8.4, and zts builds of all versions of PHP 5.6 and newer on Ubuntu GitHub Hosted environments. This should reduce the time it takes to set up these PHP versions.
-
Added
swoole
to the builds cache for GitHub-hosted environments for PHP 7.2 and newer.
- name: Setup PHP 8.3
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: swoole
-
Added PHP 8.3 and PHP 8.4 to the extension lists in the wiki. (#787).
-
PHP 8.0 is now marked as
End of life
and PHP 8.1 is now marked asSecurity fixes only
in README.
See PHP Support in README. -
Fixed support for Blackfire extension. The action now disabled
Xdebug
andpcov
extensions by default whenblackfire
is specified inextensions
input.
- name: Setup PHP with blackfire extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: blackfire
- Fixed support for
grpc_php_plugin
when installed along withprotoc
on macOS.
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: protoc, grpc_php_plugin
- Fixed support for
geos
extension on PHP 8.3.
- name: Setup PHP with geos extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: geos
- Fixed support for
event
extension on macOS to useopenssl@3
formula.
- name: Setup PHP with geos extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: event
- Update Node.js dependencies.
Merged Pull Requests
For the complete list of changes, please refer to the Full Changelog