2011-12-17 23:23:31 +01:00
|
|
|
# Symfony2 basic command completion
|
|
|
|
|
2014-07-17 11:27:00 +02:00
|
|
|
_symfony_console () {
|
2014-09-03 11:36:22 +02:00
|
|
|
echo "php $(find . -maxdepth 2 -mindepth 1 -name 'console' -type f | head -n 1)"
|
2014-07-17 11:27:00 +02:00
|
|
|
}
|
|
|
|
|
2011-12-17 23:23:31 +01:00
|
|
|
_symfony2_get_command_list () {
|
2021-12-23 19:47:50 +01:00
|
|
|
`_symfony_console` --no-ansi --no-debug | sed "1,/Available commands/d" | awk '/^ ?[^ ]+ / { print $1 }'
|
2011-12-17 23:23:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
_symfony2 () {
|
2014-07-17 11:27:00 +02:00
|
|
|
compadd `_symfony2_get_command_list`
|
2011-12-17 23:23:31 +01:00
|
|
|
}
|
|
|
|
|
2014-07-17 11:27:00 +02:00
|
|
|
compdef _symfony2 '`_symfony_console`'
|
2014-09-03 11:58:52 +02:00
|
|
|
compdef _symfony2 'app/console'
|
|
|
|
compdef _symfony2 'bin/console'
|
2012-07-29 02:32:11 +02:00
|
|
|
compdef _symfony2 sf
|
2012-10-05 22:12:40 +02:00
|
|
|
|
|
|
|
#Alias
|
2014-07-17 11:27:00 +02:00
|
|
|
alias sf='`_symfony_console`'
|
|
|
|
alias sfcl='sf cache:clear'
|
2015-01-28 13:02:36 +01:00
|
|
|
alias sfsr='sf server:run -vvv'
|
2014-07-17 11:27:00 +02:00
|
|
|
alias sfcw='sf cache:warmup'
|
2016-05-14 17:19:26 +02:00
|
|
|
alias sfroute='sf debug:router'
|
|
|
|
alias sfcontainer='sf debug:container'
|
2014-12-02 19:10:47 +01:00
|
|
|
alias sfgb='sf generate:bundle'
|
2018-10-28 19:28:15 +01:00
|
|
|
alias sfgc='sf generate:controller'
|
|
|
|
alias sfgcom='sf generate:command'
|
2018-04-15 21:55:47 +02:00
|
|
|
alias sfge='sf doctrine:generate:entity'
|
|
|
|
alias sfsu='sf doctrine:schema:update'
|
2018-10-28 19:28:15 +01:00
|
|
|
alias sfdc='sf doctrine:database:create'
|
2015-06-16 08:44:50 +02:00
|
|
|
alias sfdev='sf --env=dev'
|
|
|
|
alias sfprod='sf --env=prod'
|