Enabling XDebug
Do not run the following command with the -s option! CMA need to make adjustments to setup in debug mode!
yarn start --debug # for Yarn
npm run start -- --debug # for NPM
The setup is automated!
Go to Settings > Languages & Frameworks > PHP
Here you need select correct CLI Interpreter for CMA project. CMA is currently using latest PHP 7.4 version so the path to PHP executable should look like this:
$HOME/.phpbrew/php/php-7.4.13/bin/php
It should look like this:
CLI Interpreters PHP configuration
Go to Settings > PHP > Debug (in old PHPStorm: Settings > Languages & Frameworks > PHP > Debug)
Make sure you have set debug port for XDebug to 9003,9111 (9003 is the default for XDebug 3 and port 9111 is used as a default for XDebug 2) and Ignore external connections through the unregistered server configuration is checked.

Go to Settings > Languages & Frameworks > PHP > Server
There you need to set up a debugging server for Create Magento App.
Click +, use
http://localhost
as Host value, put your Create Magento App running port as Port value, select XDebug as Debugger value.
Click Apply and close the window.
Go to Run > Edit Configurations
Click + and create new PHP Remote Debug configuration.
Check Filter debug connection by IDE key, select your create-magento-app debug server as a Server value, use PHPSTORM as an IDE Key value.

Click Apply and close the window.
You need to install XDebug Helper extension for Chrome to activate Debugging session in PHPStorm.
After installation open extension options and select IDE Key value as PHPStorm.
Now when you open your CMA webpage you need to enable debug session by pressing Debug in extensions menu.
This extension sets a cookie in your browser's requests:
XDEBUG_SESSION=PHPSTORM
. This cookie enables debugging in your browser.Sometimes, you may want to enable debugging outside of the browser (for example, to debug individual GraphQL requests). You can also set
XDEBUG_SESSION=PHPSTORM
manually in the Cookie
header. Most HTTP and GraphQL clients support this option.Choose create-magento-app debug configuration in the top right corner of PHPStorm's window.

And after that pretty much everything is ready for PHP debugging.
Click on Start debugging or press Shift+F9, put test breakpoint in $project_root/pub/index.php file, reload the page and that is all!
Happy debugging!
Do not run the following command with the -s option! CMA need to make adjustments to setup in debug mode!
yarn start --debug # for Yarn
npm run start -- --debug # for NPM
The setup is automated!
Then, create a file
launch.json
in .vscode
folder at the root of your project if it does not exist.
Inside that file add the following configuration:{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003,
"runtimeExecutable": "$HOME/.phpbrew/php/php-<php-version>/bin/php"
}
]
}
Make sure to replace
<php-version>
variable with the PHP version that is used in your project.
To get PHP version open CLI and execute php --version
command.If you are using XDebug, set port 9111 in the configuration instead of 9003.
Port 9003 is the default for XDebug 3 and port 9111 is for XDebug 2.
You need to install the XDebug Helper extension for Chrome to activate Debugging session in PHPStorm.
Now when you open your CMA webpage you need to enable debug session by pressing Debug in the extensions menu.
VSCode debugger does not care what IDE key you select in xdebug helper settings.
It automatically attaches when it sees a cookie with a name
XDEBUG_SESSION
.This extension sets a cookie in your browser's requests:
XDEBUG_SESSION=PHPSTORM
. This cookie enables debugging in your browser.Sometimes, you may want to enable debugging outside of the browser (for example, to debug individual GraphQL requests). You can also set
XDEBUG_SESSION=PHPSTORM
manually in the Cookie
header. Most HTTP and GraphQL clients support this option.Open debugging tab in VSCode (Ctrl + Shift + D) and select Listen for Xdebug configuration.

Click on Start debugging (or press F5), put the test breakpoint in $project_root/pub/index.php file, reload the page and that is all!
Happy debugging!
Last modified 7mo ago