Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jatubio
Created June 13, 2015 11:51
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jatubio/dfbebf73ea79f9f72e02 to your computer and use it in GitHub Desktop.
Save jatubio/dfbebf73ea79f9f72e02 to your computer and use it in GitHub Desktop.
Config file to pass PHP-CS-Fixer with Laravel 5.1 custom and PSR-2 styles coding
<?php
$finder = Symfony\Component\Finder\Finder::create()
->notPath('bootstrap/cache')
->notPath('storage')
->notPath('vendor')
->in(__DIR__)
->name('*.php')
->ignoreDotFiles(true)
->ignoreVCS(true);
$fixers = [
'-psr0',
'-php_closing_tag',
'blankline_after_open_tag',
'concat_without_spaces',
'double_arrow_multiline_whitespaces',
'duplicate_semicolon',
'empty_return',
'extra_empty_lines',
'include',
'join_function',
'list_commas',
'multiline_array_trailing_comma',
'namespace_no_leading_whitespace',
'newline_after_open_tag',
'no_blank_lines_after_class_opening',
'no_empty_lines_after_phpdocs',
'object_operator',
'operators_spaces',
'phpdoc_indent',
'phpdoc_no_access',
'phpdoc_no_package',
'phpdoc_scalar',
'phpdoc_short_description',
'phpdoc_to_comment',
'phpdoc_trim',
'phpdoc_type_to_var',
'phpdoc_var_without_name',
'remove_leading_slash_use',
'remove_lines_between_uses',
'return',
'self_accessor',
'single_array_no_trailing_comma',
'single_blank_line_before_namespace',
'single_quote',
'spaces_before_semicolon',
'spaces_cast',
'standardize_not_equal',
'ternary_spaces',
'trim_array_spaces',
'unalign_equals',
'unary_operators_spaces',
'whitespacy_lines',
'multiline_spaces_before_semicolon',
'short_array_syntax',
'short_echo_tag',
];
return Symfony\CS\Config\Config::create()
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
->fixers($fixers)
->finder($finder)
->setUsingCache(true);
@jatubio
Copy link
Author

jatubio commented Jun 13, 2015

How to use:

  1. Install PHP-CS-Fixer from http://get.sensiolabs.org/php-cs-fixer.phar
  2. Copy file on your root project folder.
  3. From this folder, run: php php-cs-fixer.phar --verbose fix --config-file=.php_cs or php php-cs-fixer.phar fix --config-file=.php_cs

@keradus
Copy link

keradus commented Oct 19, 2015

When run from dir with .php_cs file you can just run php php-cs-fixer.phar fix

@palpalani
Copy link

Hi,

Installed using wget http://get.sensiolabs.org/php-cs-fixer.phar -O php-cs-fixer

Then copy pasted .php_cs to root of the project.

If i run php-cs-fixer fix ., i am getting:

PHP Fatal error: Class 'Symfony\CS\Config\Config' not found in /var/www/html/stage/.php_cs

@ermand
Copy link

ermand commented May 24, 2017

@palpalani Did you find a solution for this? I am getting the same error 😞

@AdrianHL
Copy link

I'm also getting the same error (using Laravel 5.1) but fixed following comments in PHP-CS-Fixer/PHP-CS-Fixer#1925 (comment). Hope this helps. Thanks @zmorris

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment