IDE

Configure your preferred IDE to be used in Dumps App file links.

Suggestion: https://github.com/aik099/PhpStormProtocol

config/laradumps.php

'preferred_ide' => 'phpstorm',

Handler config

'ide_handlers' => [
      'atom' => [
          'handler'        => 'atom://core/open/file?filename=',
          'line_separator' => '&line=',
      ],
      'phpstorm' => [
          'handler'        => 'phpstorm://open?url=file://',
          'line_separator' => '&line=',
      ],
      'sublime' => [
          'handler'        => 'subl://open?url=file://',
          'line_separator' => '&line=',
      ],
      'vscode' => [
          'handler'        => 'vscode://file/',
          'line_separator' => ':',
      ],
],

Last updated