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
  • 55 minutes ago
  • 11 years ago

Installs

  • Total 1K
  • Win 823
  • Mac 342
  • Linux 237
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 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5
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.