35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
<?php
|
|
/*
|
|
* PHP CS Fixer configuration
|
|
* This file defines the coding standards for the project
|
|
*/
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->in(__DIR__)
|
|
->exclude('vendor')
|
|
->exclude('node_modules')
|
|
->name('*.php')
|
|
->ignoreDotFiles(true)
|
|
->ignoreVCS(true);
|
|
|
|
$config = new PhpCsFixer\Config();
|
|
return $config
|
|
->setRules([
|
|
'@PSR12' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
'ordered_imports' => ['sort_algorithm' => 'alpha'],
|
|
'no_unused_imports' => true,
|
|
'not_operator_with_successor_space' => false,
|
|
'trailing_comma_in_multiline' => true,
|
|
'phpdoc_scalar' => true,
|
|
'unary_operator_spaces' => true,
|
|
'binary_operator_spaces' => true,
|
|
'blank_line_before_statement' => [
|
|
'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'],
|
|
],
|
|
'phpdoc_single_line_var_spacing' => true,
|
|
'phpdoc_var_without_name' => true,
|
|
'single_trait_insert_per_statement' => true,
|
|
])
|
|
->setFinder($finder);
|