devilbox/docs/intermediate/configure-php-xdebug/editor-sublime3.rst
2018-07-26 09:38:55 +02:00

2.4 KiB

orphan

Configure Xdebug for Sublime Text 3

Table of Contents

local

Prerequisites

Ensure that xdebug.idekey is set to PHPSTORM in your PHP Xdebug configuration.

* configure_php_xdebug_lin * configure_php_xdebug_mac * configure_php_xdebug_win * configure_php_xdebug_docker_toolbox

Assumption

For the sake of this example, we will assume the following paths:

Directory Path
Devilbox git directory /home/cytopia/repo/devilbox
env_httpd_datadir ./data/www
Resulting local project path /home/cytopia/repo/devilbox/data/www

The Resulting local project path is the path where all projects are stored locally on your host operating system. No matter what this path is, the equivalent remote path (inside the Docker container) is always /shared/httpd.

Important

Remember this, when it comes to path mapping in your IDE/editor configuration.

Configuration

1. Install Xdebug Client

Use Sublime's Package Control to search for and install Xdebug Client.

2. Configure Xdebug.sublime-settings

  • Navigate to Tools -> Xdebug -> Settings - User in the menu
  • This will open the configuration file in Sublime
{
    "path_mapping": {
        "/shared/httpd" : "/home/cytopia/repo/devilbox/data/www"
    },
    "url": "",
    "ide_key": "PHPSTORM",
    "host": "0.0.0.0",
    "port": 9000
}

Important

Recall the path mapping!