Skip to content

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

Notifications You must be signed in to change notification settings

Narven/sublime-artisan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published