Find the Exponential Software extensions you want
UNIX name | Owner | Status |
---|---|---|
setup-php | 7x | stable |
Version | Compatible with |
---|---|
N/A | N/A |
Setup PHP with required extensions, php.ini configuration, code-coverage support and various tools like composer in GitHub Actions. This action gives you a cross-platform interface to set up the PHP environment you need to test your application. Refer to Usage section and examples to see how to use this.
Both GitHub-hosted and self-hosted runners are supported by setup-php on the following OS/Platforms.
Virtual environment |
YAML workflow label |
Pre-installed PHP |
---|---|---|
Ubuntu 22.04 |
ubuntu-latest or ubuntu-22.04 |
PHP 8.1 |
Ubuntu 20.04 |
ubuntu-20.04 |
PHP 7.4 to PHP 8.2 |
Windows Server 2022 |
windows-latest or windows-2022 |
PHP 8.2 |
Windows Server 2019 |
windows-2019 |
PHP 8.2 |
macOS Ventura 13.x |
macos-13 |
PHP 8.2 |
macOS Monterey 12.x |
macos-latest or macos-12 |
PHP 8.2 |
Host OS/Virtual environment |
YAML workflow label |
---|---|
Ubuntu 22.04 |
self-hosted or Linux |
Ubuntu 20.04 |
self-hosted or Linux |
Debian 11 |
self-hosted or Linux |
Debian 10 |
self-hosted or Linux |
Windows 7 and newer |
self-hosted or Windows |
Windows Server 2012 R2 and newer |
self-hosted or Windows |
macOS Sonoma 14.x x86_64/arm64 |
self-hosted or macOS |
macOS Ventura 13.x x86_64/arm64 |
self-hosted or macOS |
macOS Monterey 12.x x86_64/arm64 |
self-hosted or macOS |
On all supported OS/Platforms the following PHP versions can be set up as per the runner.
PHP Version |
Stability |
Release Support |
Runner Support |
---|---|---|---|
5.3 |
Stable |
End of life |
GitHub-hosted |
5.4 |
Stable |
End of life |
GitHub-hosted |
5.5 |
Stable |
End of life |
GitHub-hosted |
5.6 |
Stable |
End of life |
GitHub-hosted, self-hosted |
7.0 |
Stable |
End of life |
GitHub-hosted, self-hosted |
7.1 |
Stable |
End of life |
GitHub-hosted, self-hosted |
7.2 |
Stable |
End of life |
GitHub-hosted, self-hosted |
7.3 |
Stable |
End of life |
GitHub-hosted, self-hosted |
7.4 |
Stable |
End of life |
GitHub-hosted, self-hosted |
8.0 |
Stable |
End of life |
GitHub-hosted, self-hosted |
8.1 |
Stable |
Security fixes only |
GitHub-hosted, self-hosted |
8.2 |
Stable |
Active |
GitHub-hosted, self-hosted |
8.3 |
Stable |
Active |
GitHub-hosted, self-hosted |
8.4 |
Nightly |
In development |
GitHub-hosted, self-hosted |
Notes:
PHP extensions can be set up using the extensions input. It accepts a string in csv-format.
- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: imagick, swoole
- name: Setup PHP with specific version of PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: '5.4'
extensions: swoole-1.9.3
- name: Setup PHP with pre-release PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: xdebug-beta
- name: Setup PHP and disable opcache
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: :opcache
Note: This disables all core and third-party shared extensions and thus, can break some tools which need them. Required extensions are enabled again when the tools are set up on a best-effort basis. So it is recommended to add the extensions required for your tools after none in the extensions input to avoid any issues.
- name: Setup PHP without any shared extensions except mbstring
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: none, mbstring
- name: Setup PHP with intl
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: intl-70.1
- name: Setup PHP with fail-fast
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: oci8
env:
fail-fast: true
These tools can be set up globally using the tools input. It accepts a string in csv-format.
behat, blackfire, blackfire-player, box, castor, churn, codeception, composer, composer-normalize, composer-prefetcher, composer-require-checker, composer-unused, cs2pr, deployer, flex, grpc_php_plugin, infection, parallel-lint, pecl, phan, phing, phinx, phive, php-config, php-cs-fixer, php-scoper, phpcbf, phpcpd, phpcs, phpdoc or phpDocumentor, phpize, phplint, phpmd, phpspec, phpstan, phpunit, phpunit-bridge, phpunit-polyfills, pint, prestissimo, protoc, psalm, rector, symfony or symfony-cli, vapor or vapor-cli, wp or wp-cli
- name: Setup PHP with tools
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: php-cs-fixer, phpunit
- name: Setup PHP with tools
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: vimeo/psalm
To set up a particular version of a tool, specify it in the form tool:version.
Version can be in the following format:
When you specify just the major version or the version in major.minor format, the latest patch version matching the input will be setup.
With the exception of major versions of composer, if you specify only the major version or the version in major.minor format for a tool you can get rate limited by GitHub's API. To avoid this, it is recommended to provide a GitHub OAuth token.
You can do that by setting GITHUB_TOKEN environment variable. The COMPOSER_TOKEN environment variable has been deprecated in favor of GITHUB_TOKEN and will be removed in the next major version.
- name: Setup PHP with tools
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: php-cs-fixer:3.39, phpunit:10.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup PHP with composer v2
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: composer:v2
- name: Setup PHP without composer
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: none
- name: Setup PHP with fail-fast
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: deployer
env:
fail-fast: true
Notes
Specify coverage: xdebug to use Xdebug and disable PCOV.
Runs on all PHP versions supported.
- name: Setup PHP with Xdebug
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
coverage: xdebug
- name: Setup PHP with Xdebug 2.x
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
coverage: xdebug2
Note: Xdebug is enabled by default on Ubuntu GitHub Actions images, so if you are not using it in your workflow it is recommended to disable it as that will have a positive impact on your PHP performance. Please refer to the disable coverage section for details.
Specify coverage: pcov to use PCOV and disable Xdebug.
Runs on PHP 7.1 and newer PHP versions.
- name: Setup PHP with PCOV
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
ini-values: pcov.directory=api #optional, see above for usage.
coverage: pcov
- name: Setup PCOV
run: |
composer require pcov/clobber
vendor/bin/pcov clobber
Specify coverage: none to disable both Xdebug and PCOV.
Disable coverage for these reasons:
- name: Setup PHP with no coverage driver
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
coverage: none
Specify using with keyword
On GitHub Actions you can assign the setup-php step an id, you can use the same to get the outputs in a later step.
- name: Setup PHP
id: setup-php
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Print PHP version
run: echo ${{ steps.setup-php.outputs.php-version }}
Specify using env keyword
See below for more info.
Set up a particular PHP version.
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: mbstring, intl
ini-values: post_max_size=256M, max_execution_time=180
coverage: xdebug
tools: php-cs-fixer, phpunit
Set up multiple PHP versions on multiple operating systems.
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest', 'windows-latest', 'macos-latest']
php-versions: ['8.1', '8.2', '8.3']
phpunit-versions: ['latest']
include:
- operating-system: 'ubuntu-latest'
php-versions: '8.0'
phpunit-versions: 9
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl
ini-values: post_max_size=256M, max_execution_time=180
coverage: xdebug
tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Set up a nightly build of PHP 8.4.
steps:
- name: Setup nightly PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
extensions: mbstring
ini-values: post_max_size=256M, max_execution_time=180
coverage: xdebug
tools: php-cs-fixer, phpunit
Set up a PHP build with debugging symbols.
steps:
- name: Setup PHP with debugging symbols
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
env:
debug: true # specify true or false
Set up TS or NTS PHP.
jobs:
run:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
name: Setup PHP TS
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
env:
phpts: ts # specify ts or nts
Update to the latest patch of PHP versions.
- name: Setup PHP with latest versions
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
env:
update: true # specify true or false
Debug your workflow
To debug any issues, you can use the verbose tag instead of v2.
- name: Setup PHP with logs
uses: shivammathur/setup-php@verbose
with:
php-version: '8.3'
Set up PHP on multiple architecture on Ubuntu GitHub Runners.
jobs:
run:
runs-on: ubuntu-latest
container: shivammathur/node:latest-${{ matrix.arch }}
strategy:
matrix:
arch: ["amd64", "i386"]
steps:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
Set up PHP on a self-hosted runner.
It is recommended to specify the environment variable runner with the value self-hosted for self-hosted environments.
jobs:
run:
runs-on: self-hosted
strategy:
matrix:
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
name: PHP ${{ matrix.php-versions }}
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
env:
runner: self-hosted
Notes
Test your Ubuntu workflow locally using nektos/act.
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
Run the workflow locally with act using shivammathur/node docker images.
Choose the image tag which matches the runs-on property in your workflow. For example, if you are using ubuntu-20.04 in your workflow, run act -P ubuntu-20.04=shivammathur/node:2004.
# For runs-on: ubuntu-latest
act -P ubuntu-latest=shivammathur/node:latest
# For runs-on: ubuntu-22.04
act -P ubuntu-22.04=shivammathur/node:2204
# For runs-on: ubuntu-20.04
act -P ubuntu-20.04=shivammathur/node:2004
Enable Just-in-time (JIT) on PHP 8.0 and above.
For example to enable JIT in tracing mode with buffer size of 64 MB.
- name: Setup PHP with JIT in tracing mode
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
coverage: none
ini-values: opcache.enable_cli=1, opcache.jit=tracing, opcache.jit_buffer_size=64M
You can cache PHP extensions using shivammathur/cache-extensions and action/cache GitHub Actions. Extensions which take very long to set up when cached are available in the next workflow run and are enabled directly. This reduces the workflow execution time.
Refer to shivammathur/cache-extensions for details.
If your project uses composer, you can persist the composer's internal cache directory. Dependencies cached are loaded directly instead of downloading them while installation. The files cached are available across check-runs and will reduce the workflow execution time.
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --prefer-dist
Notes
If you do not commit composer.lock, you can use the hash of composer.json as the key for your cache.
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
If you support a range of composer dependencies and use prefer-lowest and prefer-stable options, you can store them in your matrix and add them to the keys.
key: ${{ runner.os }}-composer-${{ matrix.prefer }}-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-${{ matrix.prefer }}-
If you have a number of workflows which set up multiple tools or have many composer dependencies, you might hit the GitHub's rate limit for composer. Also, if you specify only the major version or the version in major.minor format, you can hit the rate limit. To avoid this you can specify an OAuth token by setting GITHUB_TOKEN environment variable. You can use GITHUB_TOKEN secret for this purpose.
The COMPOSER_TOKEN environment variable has been deprecated in favor of GITHUB_TOKEN and will be removed in the next major version.
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
If you use Private Packagist for your private composer dependencies, you can set the PACKAGIST_TOKEN environment variable to authenticate.
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
env:
PACKAGIST_TOKEN: ${{ secrets.PACKAGIST_TOKEN }}
In addition to GitHub or Private Packagist, if you want to authenticate private repositories hosted elsewhere, you can set the COMPOSER_AUTH_JSON environment variable with the authentication methods and the credentials in json format.
Please refer to the authentication section in composer documentation for more details.
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
env:
COMPOSER_AUTH_JSON: |
{
"http-basic": {
"example.org": {
"username": "${{ secrets.EXAMPLE_ORG_USERNAME }}",
"password": "${{ secrets.EXAMPLE_ORG_PASSWORD }}"
}
}
}
If you have to run multiple lines of PHP code in your workflow, you can do that easily without saving it to a file.
Put the code in the run property of a step and specify the shell as php {0}.
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Run PHP code
shell: php {0}
run: |
$welcome = "Hello, world";
echo $welcome;
Problem matchers are json configurations which identify errors and warnings in your logs and surface them prominently in the GitHub Actions UI by highlighting them and creating code annotations.
Setup problem matchers for your PHP output by adding this step after the setup-php step.
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
Setup problem matchers for your PHPUnit output by adding this step after the setup-php step.
- name: Setup problem matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
PHPStan supports error reporting in GitHub Actions, so it does not require problem matchers.
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: phpstan
- name: Run PHPStan
run: phpstan analyse src
Psalm supports error reporting in GitHub Actions with an output format github.
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: psalm
- name: Run Psalm
run: psalm --output-format=github
For tools that support checkstyle reporting like phpstan, psalm, php-cs-fixer and phpcs you can use cs2pr to annotate your code.
For examples refer to the cs2pr documentation.
Here is an example with phpcs.
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: cs2pr, phpcs
- name: Run phpcs
run: phpcs -q --report=checkstyle src | cs2pr
Examples of using setup-php with various PHP frameworks and packages.
Framework/Package |
Runs on |
Workflow |
---|---|---|
Blackfire |
macOS, ubuntu and windows |
|
Blackfire Player |
macOS, ubuntu and windows |
|
CakePHP with MySQL and Redis |
ubuntu |
|
CakePHP with PostgreSQL and Redis |
ubuntu |
|
CakePHP without services |
macOS, ubuntu and windows |
|
CodeIgniter |
macOS, ubuntu and windows |
|
Laminas MVC |
macOS, ubuntu and windows |
|
Laravel with MySQL and Redis |
ubuntu |
|
Laravel with PostgreSQL and Redis |
ubuntu |
|
Laravel without services |
macOS, ubuntu and windows |
|
Lumen with MySQL and Redis |
ubuntu |
|
Lumen with PostgreSQL and Redis |
ubuntu |
|
Lumen without services |
macOS, ubuntu and windows |
|
Phalcon with MySQL |
ubuntu |
|
Phalcon with PostgreSQL |
ubuntu |
|
Roots/bedrock |
ubuntu |
|
Roots/sage |
ubuntu |
|
Slim Framework |
macOS, ubuntu and windows |
|
Symfony with MySQL |
ubuntu |
|
Symfony with PostgreSQL |
ubuntu |
|
Symfony without services |
macOS, ubuntu and windows |
|
Yii2 Starter Kit with MySQL |
ubuntu |
|
Yii2 Starter Kit with PostgreSQL |
ubuntu |
Contributions are welcome!
Contributors of setup-php and other related projects
Many users and organisations support setup-php via GitHub Sponsors.
These companies generously provide setup-php their products and services to aid in the development of this project.