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
  • 2 hours ago
  • 12 years ago

Installs

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