Update 23-01-2020
This commit is contained in:
@@ -65,11 +65,11 @@ Not installed
|
||||
$ brew search php73
|
||||
```
|
||||
|
||||
#### Installer des extensions:
|
||||
#### Installer des extensions (avec [PECL](https://pecl.php.net)):
|
||||
|
||||
Elles s'installent via [PECL](https://pecl.php.net) (requiert autoconf, `brew install autoconf`).
|
||||
Requiert autoconf: `brew install autoconf`
|
||||
|
||||
- ```bash
|
||||
```bash
|
||||
$ pecl uninstall -r xdebug
|
||||
|
||||
$ pecl install xdebug
|
||||
@@ -81,7 +81,7 @@ Elles s'installent via [PECL](https://pecl.php.net) (requiert autoconf, `brew in
|
||||
|
||||
# Pour une version spécifique:
|
||||
$ pecl install xdebug-2.7.0beta1
|
||||
```
|
||||
```
|
||||
|
||||
Pour les activer, créez un fichier de configuration dans `/usr/local/etc/php/7.3/conf.d/`
|
||||
|
||||
@@ -106,9 +106,11 @@ xdebug.remote_port=9000
|
||||
|
||||
```
|
||||
|
||||
#### Installer l'extension ssh2:
|
||||
#### Installer une extension (depuis les sources):
|
||||
|
||||
```bash
|
||||
# Installation de ssh2:
|
||||
|
||||
$ brew install libssh2
|
||||
|
||||
$ cd ~/Downloads
|
||||
@@ -126,6 +128,18 @@ Ajouter au fichier:
|
||||
extension="ssh2.so"
|
||||
```
|
||||
|
||||
```bash
|
||||
# Installation de xdebug:
|
||||
|
||||
$ wget http://xdebug.org/files/xdebug-x.x.x.tgz
|
||||
$ tar -xzvf xdebug-x.x.x.tgz
|
||||
$ cd xdebug-x.x.x
|
||||
$ phpize
|
||||
$ ./configure
|
||||
$ make
|
||||
$ make install
|
||||
```
|
||||
|
||||
|
||||
|
||||
### Erreurs:
|
||||
|
||||
Reference in New Issue
Block a user