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