Merge pull request #383 from llaville/patch-2

How to handle pre-release versions
pull/384/head
Michele Locati 2021-07-05 17:50:43 +02:00 committed by GitHub
commit 6cf665a113
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -69,6 +69,20 @@ install-php-extensions xdebug-^2
install-php-extensions xdebug-^2.8
```
Pre-release versions extensions available on `PECL` can be setup by suffixing the extension's name with its state i.e `alpha`, `beta`, `rc`, `preview`, `devel` or `snapshot`.
For example:
```sh
install-php-extensions xdebug-beta
```
TIP: When the latest version available on `PECL` is not stable, and you want to keep the last stable version,
force it by suffixing the extension's name with the `stable` state.
For example:
```sh
install-php-extensions mongodb-stable
```
### Installing composer