Xdebug with postman

Postman when used as desktop doesnt have browser plugin to add xdebug info to request, but solution is easy, just do this.
Add `XDEBUG_SESSION_START=PHPSTORM` to the query string and PHPStorm will catch the debug session as it would if you were using a browser extension.

For example, if you are working on http://localhost:8000/api/orders, simply append the URL with the query string mentioned above to initiate a debug session:

http://localhost:8000/api/orders?XDEBUG_SESSION_START=PHPSTORM