ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Laravel 5 Artisan

by dydx ALL

Laravel 5 Artisan Commands for Sublime Text 3

Details

  • 0.1.10
  • github.​com
  • github.​com
  • 5 years ago
  • 18 minutes ago
  • 10 years ago

Installs

  • Total 118K
  • Win 78K
  • Mac 19K
  • Linux 21K
Feb 5 Feb 4 Feb 3 Feb 2 Feb 1 Jan 31 Jan 30 Jan 29 Jan 28 Jan 27 Jan 26 Jan 25 Jan 24 Jan 23 Jan 22 Jan 21 Jan 20 Jan 19 Jan 18 Jan 17 Jan 16 Jan 15 Jan 14 Jan 13 Jan 12 Jan 11 Jan 10 Jan 9 Jan 8 Jan 7 Jan 6 Jan 5 Jan 4 Jan 3 Jan 2 Jan 1 Dec 31 Dec 30 Dec 29 Dec 28 Dec 27 Dec 26 Dec 25 Dec 24 Dec 23 Dec 22
Windows 1 1 2 0 2 2 1 0 1 0 0 0 1 1 1 0 0 1 0 0 3 0 2 0 1 0 2 0 1 0 1 1 2 1 1 0 3 1 0 0 0 1 1 4 0 1
Mac 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 1 0 0 2 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1
Linux 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0

Readme

Source
raw.​githubusercontent.​com

Laravel 5 Artisan commands

Fork of Sublime Text plugin for Laravel 4 Artisan commands

This plugin allows you the run the normal Artisan CLI using the Sublime Text interface, without having to open and use the command line.

Several of the commands, such as Laravel Artisan: Make: Migration Schema require laracasts/generators to be installed, as the associated commands are not native to Laravel (yet).

Available commands:

General
  • Laravel Artisan 5: Clear Compiled
  • Laravel Artisan 5: Down
  • Laravel Artisan 5: Help
  • Laravel Artisan 5: List
  • Laravel Artisan 5: Migrate
  • Laravel Artisan 5: Optimize
  • Laravel Artisan 5: Serve
  • Laravel Artisan 5: Up
App
  • Laravel Artisan 5: App:Name
Auth
  • Laravel Artisan 5: Auth:Clear Resets
Cache
  • Laravel Artisan 5: Cache:Clear
  • Laravel Artisan 5: Cache:Table
Config
  • Laravel Artisan 5: Config:Cache
  • Laravel Artisan 5: Config:Clear
DB
  • Laravel Artisan 5: DB:Seed
Event
  • Laravel Artisan 5: Event:Generate
Key
  • Laravel Artisan 5: Key:Generate
Make
  • Laravel Artisan 5: Make:Auth
  • Laravel Artisan 5: Make:Channel
  • Laravel Artisan 5: Make:Command
  • Laravel Artisan 5: Make:Controller
  • Laravel Artisan 5: Make:Event
  • Laravel Artisan 5: Make:Exception
  • Laravel Artisan 5: Make:Factory
  • Laravel Artisan 5: Make:Job
  • Laravel Artisan 5: Make:Listener
  • Laravel Artisan 5: Make:Mail
  • Laravel Artisan 5: Make:Middleware
  • Laravel Artisan 5: Make:Migration
  • Laravel Generate 5: Make:Migration: Schema
  • Laravel Generate 5: Make:Migration: Pivot
  • Laravel Artisan 5: Make:Model
  • Laravel Artisan 5: Make:Notification
  • Laravel Artisan 5: Make:Observer
  • Laravel Artisan 5: Make:Provider
  • Laravel Artisan 5: Make:Request
  • Laravel Artisan 5: Make:Resource
  • Laravel Artisan 5: Make:Seeder
  • Laravel Artisan 5: Make:Test
Migrate
  • Laravel Artisan 5: Migrate:Fresh
  • Laravel Artisan 5: Migrate:Install
  • Laravel Artisan 5: Migrate:Refresh
  • Laravel Artisan 5: Migrate:Reset
  • Laravel Artisan 5: Migrate:Rollback
  • Laravel Artisan 5: Migrate:Status
Queue
  • Laravel Artisan 5: Queue:List Failed Jobs
  • Laravel Artisan 5: Queue:Failed Table
  • Laravel Artisan 5: Queue:Flush
  • Laravel Artisan 5: Queue:Forget
  • Laravel Artisan 5: Queue:Listen
  • Laravel Artisan 5: Queue:Restart
  • Laravel Artisan 5: Queue:Retry
  • Laravel Artisan 5: Queue:Subscribe
  • Laravel Artisan 5: Queue:Table
  • Laravel Artisan 5: Queue:Work
Route
  • Laravel Artisan 5: Route:Cache
  • Laravel Artisan 5: Route:Clear
  • Laravel Artisan 5: Route:List
Schedule
  • Laravel Artisan 5: Schedule:Run
Session
  • Laravel Artisan 5: Session:Table
Vendor
  • Laravel Artisan 5: Vendor:Publish
View
  • Laravel Artisan 5: View:Clear
Custom
  • Laravel Artisan 5: Custom Command

Custom Commands

You can add custom commands. Use Preferences/Package Settings/Laravel 5 Artisan/Commands – User menu item.

Simple command structure:

[
    {
        "caption": "Laravel Artisan: Deploy Project",
        "command": "laravel5_artisan",
        "args": {
            "command": "deploy",
            "fill_in": true,
            "fill_in_lable": "Enter the branch name with options"
        }
    }
]

Change command caption and command in args. Use fill_in: true if you need some input for your command and fill_in_lable: "Text" for message.

Installation:

Use Package Controller or create a the directory Laravel 5 Artisan in your Sublime Text Packages directory with source code, and you're ready to go.

Usage:

Press Cmd + Shift + P for the dropdown command list, search for Laravel, and pick your command. Also you can use Tools/Laravel... menu item

Notes:

  • Artisan file needs to been in the root folder of your structure in the sidebar.
  • You need insert in Sublime Text user settings "show_panel_on_build": true or use Tools/Build Results/Show Build Results menu item for view results.
  • Several commands do require laracasts/generators