Skip to content

Instantly share code, notes, and snippets.

@DominicWatts
Last active November 22, 2021 21:04
Show Gist options
  • Save DominicWatts/1a6d3367ca9ac0dfd56ffb0c312e6115 to your computer and use it in GitHub Desktop.
Save DominicWatts/1a6d3367ca9ac0dfd56ffb0c312e6115 to your computer and use it in GitHub Desktop.
PHP CS Fixer Custom Ruleset Docker
docker run --rm -v $PWD:/code domw/php-cs-fixer php-cs-fixer fix --rules=ordered_imports ./
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 ./
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment