Skip to content

Commit

Permalink
Merge pull request #383 from llaville/patch-2
Browse files Browse the repository at this point in the history
How to handle pre-release versions
  • Loading branch information
mlocati authored Jul 5, 2021
2 parents a19fcb2 + 74c97fb commit 6cf665a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 6cf665a

Please sign in to comment.