LaraDumps
  • What is LaraDumps?
  • Get Started
    • Installation
    • Configuration
  • Commands
    • Simple
    • Color
    • Log Application
    • Show queries
    • Clear History
    • Custom Label
    • JSON Validate
    • Contains
    • Table
    • Screens
    • Diff
    • Model
  • Reference
    • Livewire
  • App
    • Host
    • IDE
Powered by GitBook
On this page
  1. App

IDE

PreviousHost

Last updated 2 years ago

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

Suggestion:

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' => ':',
      ],
],
https://github.com/aik099/PhpStormProtocol