Установить xdebug
с помощью следующей команды:
sudo apt install php-xdebug
и настройте его как:
sudo nano /etc/php/7.0/mods-available/xdebug.ini
Добавьте в него следующий код:
zend_extension=/usr/lib/php/20151012/xdebug.so
xdebug.remote_autostart = 1
xdebug.remote_enable = 1
xdebug.remote_handler = dbgp
xdebug.remote_host = 127.0.0.1
xdebug.remote_log = /tmp/xdebug_remote.log
xdebug.remote_mode = req
xdebug.remote_port = 9005 #if you want to change the port you can change
и затем перезапустите службы:
sudo systemctl restart php7.0-fpm
sudo systemctl restart nginx //If you are using nginx server
sudo systemctl restart apache2 //If you are using apache server