Skip to content

Instantly share code, notes, and snippets.

@amaelftah
Last active March 11, 2021 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amaelftah/31a3241860112c28255e879f3c5ba45b to your computer and use it in GitHub Desktop.
Save amaelftah/31a3241860112c28255e879f3c5ba45b to your computer and use it in GitHub Desktop.
PHP-CS-Fixer Version 2 Config Based On Laravel
<?php
/**
* Author : Ahmed Mohamed Abd El Ftah
*
* Twitter : @amaelftah
*
* Github: https://github.com/amaelftah
*/
/**
* Config for PHP-CS-Fixer ver2 , it's inspired from old laravel php-cs fixer
* https://github.com/laravel/framework/blob/5.3/.php_cs
*
* and also inspired from
* https://gist.github.com/isuzuki/5fd0177993cca7a5fd15ad09be27d706
*
* and also inspired from Spatie Company
*
* you can check each rule explanation from here
* https://mlocati.github.io/php-cs-fixer-configurator/
*/
$rules = [
'@PSR2' => true,
'array_syntax' => ['syntax' => 'short'],
'no_short_echo_tag' => true,
'no_unused_imports' => true,
'ordered_imports' => ['sortAlgorithm' => 'alpha'],
'method_chaining_indentation' => true,
'class_attributes_separation' => true,
'no_leading_namespace_whitespace' => true,
'array_indentation' => true,
'single_blank_line_before_namespace' => true,
'function_typehint_space' => true,
'no_empty_comment' => true,
'no_empty_statement' => true,
'ternary_operator_spaces' => true,
'trailing_comma_in_multiline_array' => true,
'multiline_whitespace_before_semicolons' => true,
];
$excludes = [
'vendor',
'node_modules',
];
return PhpCsFixer\Config::create()
->setRules($rules)
->setFinder(
PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude($excludes)
->notName('README.md')
->notName('*.xml')
->notName('*.yml')
->notPath('bootstrap/cache')
->notPath('storage/*')
->notPath('nova')
->notPath('database/migrations')
->notPath('vendor')
->name('*.php')
->ignoreDotFiles(true)
->ignoreVCS(true)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment