Skip to content
Compare
Choose a tag to compare
@shivammathur shivammathur released this 26 Nov 19:43
b2f833f
  • PHP 8.0 is now stable PHP 8.0.0 on setup-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 and composer-prefetcher unless composer: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 to 2.9.8 on PHP 7.2. #345
  • Set xdebug.mode=coverage ini directive always #346
  • Sync dependencies from shivammathur/extensions tap in add_brew_extension.
  • Fix fail-fast on Windows.
  • Fix deleting extensions when one extension is a substring of the other. For example pdo_sqlsrv and sqlsrv.
  • Fix fetching extension version from PECL on macOS.
  • Fix fetching grpc latest tag. (grpc/grpc.io#79)
  • Prioritize Bintray over GitHub 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 🎉