LoginSignup
6
3

More than 5 years have passed since last update.

brewでxdebugをインストールする(PHP7.1)

Posted at

Homebrewでxdebugをインストールできなくなったので、peclで入れる必要がある。

まずはPHP7.1をインストールしておく

brew install php@7.1

peclコマンドがphp@7.1のものか確認する

$ which pecl
/usr/local/opt/php@7.1/bin/pecl

xdebugをインストールする

pecl install xdebug

インストールされたか確認する

$ php -m | grep Xdebug
Xdebug
6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3