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
cbd8481f
Unverified
Commit
cbd8481f
authored
3 years ago
by
mikey dubs
Committed by
Marc Cornellà
3 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(composer): add `cs` alias for `composer show` (#10034)
Closes #10034
parent
fcd7da3a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
README.md
plugins/composer/README.md
+1
-0
composer.plugin.zsh
plugins/composer/composer.plugin.zsh
+1
-0
No files found.
plugins/composer/README.md
View file @
cbd8481f
...
...
@@ -29,5 +29,6 @@ Original author: Daniel Gomes <me@danielcsgomes.com>
|
`cod`
|
`composer outdated --direct`
| Shows a list of installed packages with available updates which are direct dependencies |
|
`cr`
|
`composer require`
| Adds new packages to
`composer.json`
|
|
`crm`
|
`composer remove`
| Removes packages from
`composer.json`
|
|
`cs`
|
`composer show`
| Lists available packages, with optional filtering |
|
`csu`
|
`composer self-update`
| Updates composer to the latest version |
|
`cu`
|
`composer update`
| Updates composer dependencies and
`composer.lock`
file |
This diff is collapsed.
Click to expand it.
plugins/composer/composer.plugin.zsh
View file @
cbd8481f
...
...
@@ -45,6 +45,7 @@ alias co='composer outdated'
alias
cod
=
'composer outdated --direct'
alias
cr
=
'composer require'
alias
crm
=
'composer remove'
alias
cs
=
'composer show'
alias
csu
=
'composer self-update'
alias
cu
=
'composer update'
...
...
This diff is collapsed.
Click to expand it.
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