Last active
April 14, 2023 11:22
-
-
Save RobertBoes/598e28332bc09d19a00fe1994bbde7ab to your computer and use it in GitHub Desktop.
Starship custom command - Laravel version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[custom.laravel] | |
when = "test -f artisan" | |
command = ''' | |
cat composer.lock| pcregrep -M '"name": "laravel/framework",\n.*"version":' | grep -Eo 'v([0-9]*\.[0-9]*\.[0-9]*)' | |
''' | |
format = "via [$symbol($output )]($style)" | |
symbol = " " | |
style = "fg:#FF2D20 bold" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment