Artisan
Sublime Text plugin to replace Laravel Artisan CLI (NO LONGER MAINTAINED)
Details
Installs
- Total 1K
- Win 823
- Mac 342
- Linux 237
Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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.