artisan

Laravel artisan commands inside Atom

dzava

11,851

8

0.3.2

MIT

GitHub

Laravel Artisan commands for Atom

Inspired by the Laravel artisan plugin for Sublime Text, this package allows you to run artisan commands from inside Atom.

Usage

Open the command menu and select the command you want to run, if a command requires additional arguments (like the make commands), you will be prompted for additional input.

Custom commands

Set the Custom commands setting to a JSON file containing custom commands. Custom commands will override the default when the names match.

Command structure

{
  "name": "the name that will appear in the command menu",
  "command": "the artisan command to run",
  "needsInput": true,
  "caption": "the message that will be displayed when asking for input",
  "showInPanel": true
}

Notes