- PHP 8.0 is now stable
PHP 8.0.0
onsetup-php
for all supported OS. 🥳 - Add new JIT configuration section to the README.
For example, to enable JIT on PHP 8.0.
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
ini-values: opcache.enable_cli=1
Refer to JIT Configuration for more details.
- Skip
prestissimo
andcomposer-prefetcher
unlesscomposer:v1
is specified.
For example to setup prestissimo
, use
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
tools: composer:v1, prestissimo
- Set
Xdebug
version to2.9.8
onPHP 7.2
. #345 - Set
xdebug.mode=coverage
ini directive always #346 - Sync dependencies from
shivammathur/extensions
tap inadd_brew_extension
. - Fix
fail-fast
on Windows. - Fix deleting extensions when one extension is a substring of the other. For example
pdo_sqlsrv
andsqlsrv
. - Fix fetching extension version from
PECL
onmacOS
. - Fix fetching
grpc
latest tag. (grpc/grpc.io#79) - Prioritize
Bintray
overGitHub
releases for fetching scripts. - Refactor
darwin.sh
script. - Change project description in
actions.yml
. - Bump version to 2.9.0
Thanks @owenvoke for the contribution 🎉