Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
e034030f
Commit
e034030f
authored
Dec 29, 2019
by
Zeshan Khattak
Committed by
Robby Russell
Dec 29, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Laravel artisan commands extension (#8425)
parent
42d04d38
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
0 deletions
+32
-0
README.md
plugins/laravel/README.md
+17
-0
laravel.plugin.zsh
plugins/laravel/laravel.plugin.zsh
+15
-0
No files found.
plugins/laravel/README.md
View file @
e034030f
...
...
@@ -29,6 +29,12 @@ plugins=(... laravel)
|
`pamc`
|
`php artisan make:controller`
|
|
`pams`
|
`php artisan make:seeder`
|
|
`pamt`
|
`php artisan make:test`
|
|
`pamfa`
|
`php artisan make:factory`
|
|
`pamp`
|
`php artisan make:policy`
|
|
`pame`
|
`php artisan make:event`
|
|
`pamj`
|
`php artisan make:job`
|
|
`paml`
|
`php artisan make:listener`
|
|
`pamn`
|
`php artisan make:notification`
|
## Clears
...
...
@@ -38,3 +44,14 @@ plugins=(... laravel)
|
`pacoc`
|
`php artisan config:clear`
|
|
`pavic`
|
`php artisan view:clear`
|
|
`paroc`
|
`php artisan route:clear`
|
## Queues
| Alias | Description |
|:-:|:-:|
|
`paqf`
|
`php artisan queue:failed`
|
|
`paqft`
|
`php artisan queue:failed-table`
|
|
`paql`
|
`php artisan queue:listen`
|
|
`paqr`
|
`php artisan queue:retry`
|
|
`paqt`
|
`php artisan queue:table`
|
|
`paqw`
|
`php artisan queue:work`
|
plugins/laravel/laravel.plugin.zsh
View file @
e034030f
...
...
@@ -17,6 +17,13 @@ alias pamm='php artisan make:model'
alias
pamc
=
'php artisan make:controller'
alias
pams
=
'php artisan make:seeder'
alias
pamt
=
'php artisan make:test'
alias
pamfa
=
'php artisan make:factory'
alias
pamp
=
'php artisan make:policy'
alias
pame
=
'php artisan make:event'
alias
pamj
=
'php artisan make:job'
alias
paml
=
'php artisan make:listener'
alias
pamn
=
'php artisan make:notification'
alias
pampp
=
'php artisan make:provider'
# Clears
...
...
@@ -24,3 +31,11 @@ alias pacac='php artisan cache:clear'
alias
pacoc
=
'php artisan config:clear'
alias
pavic
=
'php artisan view:clear'
alias
paroc
=
'php artisan route:clear'
# queues
alias
paqf
=
'php artisan queue:failed'
alias
paqft
=
'php artisan queue:failed-table'
alias
paql
=
'php artisan queue:listen'
alias
paqr
=
'php artisan queue:retry'
alias
paqt
=
'php artisan queue:table'
alias
paqw
=
'php artisan queue:work'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment