Xdubugのインストールと設定に関するメモです。
Linux Mint 19.3 (Ubuntu 18.04 LTS)
sudo apt install php-pear php-dev
sudo pecl install xdebug
php.iniに以下の設定を追加する。
zend_extension=/usr/lib/php/20170718/xdebug.so
# v2.x
[xdebug]
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
# v3.x
[xdebug]
xdebug.mode=debug
xdebug.start_with_request=yes
xdebug.client_port=9000