Skip to content

Instantly share code, notes, and snippets.

@DomPixie
Forked from DominicWatts/useful-aliases
Created November 22, 2021 21:03
Show Gist options
  • Save DomPixie/52db079d69024ce04687fa4cd666fce0 to your computer and use it in GitHub Desktop.
Save DomPixie/52db079d69024ce04687fa4cd666fce0 to your computer and use it in GitHub Desktop.
Useful aliases
alias magento-command='docker-compose run --rm cli magento-command'
alias dcud='docker-compose up -d'
alias dcdv='docker-compose down -v'
alias dcd='docker-compose down'
alias dcr='docker-compose restart'
alias dreload='docker compose down -v; docker-compose pull; docker-compose up -d'
alias cli='docker-compose run --rm cli'
alias installer='docker-compose run --rm cli magento-extension-installer'
alias csf-nodoc='docker run --rm -v $PWD:/code domw/php-cs-fixer php-cs-fixer fix --verbose --using-cache=no --rules=phpdoc_no_package,ordered_imports ./'
alias csf-m2='docker run --rm -v $PWD:/code domw/php-cs-fixer php-cs-fixer fix --rules='\''{"@PSR2":true,"array_syntax":{"syntax":"short"},"concat_space":{"spacing":"one"},"include":true,"new_with_braces":true,"no_empty_statement":true,"no_extra_consecutive_blank_lines":true,"no_leading_import_slash":true,"no_leading_namespace_whitespace":true,"no_multiline_whitespace_around_double_arrow":true,"no_multiline_whitespace_before_semicolons":true,"no_singleline_whitespace_before_semicolons":true,"no_trailing_comma_in_singleline_array":true,"no_unused_imports":true,"no_whitespace_in_blank_line":true,"object_operator_without_whitespace":true,"ordered_imports":true,"standardize_not_equals":true,"ternary_operator_spaces":true,"phpdoc_no_package":true}'\'' --using-cache=no --allow-risky=yes --verbose ./'
alias csf-all='docker run --rm -v $PWD:/code domw/php-cs-fixer php-cs-fixer fix --rules='\''{"@PSR2":true,"array_syntax":{"syntax":"short"},"concat_space":{"spacing":"one"},"ordered_imports":true,"blank_line_after_opening_tag":true,"comment_to_phpdoc":true,"ereg_to_preg":true,"fully_qualified_strict_types":true,"include":true,"linebreak_after_opening_tag":true,"logical_operators":true,"no_blank_lines_after_phpdoc":true,"no_empty_comment":true,"no_empty_phpdoc":true,"no_empty_statement":true,"no_extra_consecutive_blank_lines":true,"no_leading_import_slash":true,"no_leading_namespace_whitespace":true,"no_php4_constructor":true,"no_unused_imports":true,"no_useless_else":true,"no_useless_return":true,"normalize_index_brace":true,"phpdoc_add_missing_param_annotation":true,"phpdoc_annotation_without_dot":true,"phpdoc_indent":true,"phpdoc_inline_tag":true,"phpdoc_no_access":true,"phpdoc_order":true,"phpdoc_return_self_reference":true,"phpdoc_scalar":true,"phpdoc_single_line_var_spacing":true,"phpdoc_to_comment":true,"phpdoc_trim":true,"phpdoc_types_order":true,"phpdoc_types":true,"phpdoc_var_without_name":true,"protected_to_private":true,"short_scalar_cast":true,"standardize_not_equals":true,"string_line_ending":true,"ternary_operator_spaces":true,"whitespace_after_comma_in_array":true,"phpdoc_no_package":true}'\'' --using-cache=no --allow-risky=yes --verbose ./'
alias cs-m2='docker run --rm -v $PWD:/code domw/phpcs phpcs --colors --standard=Magento2 --report=full,summary --extensions=php,phtml ./'
alias cbf-m2='docker run --rm -v $PWD:/code domw/phpcs phpcbf --colors --standard=Magento2 --report=full,summary --extensions=php,phtml ./'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment