You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
42 lines
1.2 KiB
2 months ago
|
<?php
|
||
|
|
||
|
if (!file_exists(__DIR__ . '/src'))
|
||
|
{
|
||
|
exit(0);
|
||
|
}
|
||
|
|
||
|
return PhpCsFixer\Config::create()
|
||
|
->setRules([
|
||
|
'@Symfony' => true,
|
||
|
'@Symfony:risky' => true,
|
||
|
'php_unit_dedicate_assert' => ['target' => '5.6'],
|
||
|
'array_syntax' => ['syntax' => 'short'],
|
||
|
'array_indentation' => true,
|
||
|
'binary_operator_spaces' => [
|
||
|
'operators' => [
|
||
|
'=>' => 'align_single_space',
|
||
|
],
|
||
|
],
|
||
|
'concat_space' => [
|
||
|
'spacing' => 'one',
|
||
|
],
|
||
|
'fopen_flags' => false,
|
||
|
'protected_to_private' => false,
|
||
|
'native_constant_invocation' => true,
|
||
|
'combine_nested_dirname' => true,
|
||
|
'single_quote' => true,
|
||
|
'braces' => [
|
||
|
'position_after_control_structures' => 'next',
|
||
|
],
|
||
|
'no_superfluous_phpdoc_tags' => false,
|
||
|
])
|
||
|
->setRiskyAllowed(true)
|
||
|
->setFinder(
|
||
|
PhpCsFixer\Finder::create()
|
||
|
->exclude(__DIR__ . '/vendor')
|
||
|
->in(__DIR__ . '/src')
|
||
|
->in(__DIR__ . '/tests')
|
||
|
->append([__FILE__])
|
||
|
)
|
||
|
;
|