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

Artisan

by Narven ST2

Sublime Text plugin to replace Laravel Artisan CLI (NO LONGER MAINTAINED)

Details

  • 2015.09.28.12.48.05
  • github.​com
  • github.​com
  • 9 years ago
  • 1 hour ago
  • 11 years ago

Installs

  • Total 1K
  • Win 823
  • Mac 342
  • Linux 237
May 20 May 19 May 18 May 17 May 16 May 15 May 14 May 13 May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

sublime-artisan

Sublime Text plugin for Laravel Artisan commands

This project is no longer maintained.

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

Options Available: - Help (php artisan help:commands) - Generate an application key (php artisan key:generate) - Create a session table (php artisan session:table) - Create the Laravel migration table (php artisan migrate:install) - Creating a migration (php artisan migrate:make create_users_table) - Creating a migration for a bundle (php artisan migrate:make bundle::tablename) - Running outstanding migrations (php artisan migrate) - Running outstanding migrations in the application (php artisan migrate application) - Running all outstanding migrations in a bundle (php artisan migrate bundle) - Rolling back the last migration operation (php artisan migrate:rollback) - Roll back all migrations that have ever run (php artisan migrate:reset) - Install a bundle (php artisan bundle:install eloquent) - Upgrade a bundle (php artisan bundle:upgrade eloquent) - Upgrade all bundles (php artisan bundle:upgrade) - Publish a bundle assets (php artisan bundle:publish bundle_name) - Publish all bundles assets (php artisan bundle:publish) - Calling a task (php artisan notify), or passing arguments (php artisan notify taylor) - Running the application tests (php artisan test) - Running the bundle tests (php artisan test bundle-name) - Calling a route (php artisan route:call get api/user/1) - Support for Jeffrey Way's Laravel Generator

INSTALLATION Just create a the directory SublimeArtisan in your Sublime Text Packages directory, and you're ready to go.

Just press Cmd + Shift + P for the dropdown command list, and search for Artisan, and pick your command :D

NOTE: At the current moment, for the plugin to run correctly the artisan file needs to been in the root folder of your structure in the Side bar.

This is a young plugin, still needs alot of testing. Give some feedback. Thanks.