33 lines
1.3 KiB
PHP
33 lines
1.3 KiB
PHP
<?php
|
|
|
|
if (!file_exists(__DIR__.'/src')) {
|
|
exit(0);
|
|
}
|
|
|
|
return PhpCsFixer\Config::create()
|
|
->setRules([
|
|
'@Symfony' => true,
|
|
'@Symfony:risky' => true,
|
|
'@PHPUnit75Migration:risky' => true,
|
|
'php_unit_dedicate_assert' => ['target' => '5.6'],
|
|
'phpdoc_no_empty_return' => false, // triggers almost always false positive
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
'fopen_flags' => false,
|
|
'ordered_imports' => true,
|
|
'phpdoc_trim_consecutive_blank_line_separation' => true,
|
|
'no_superfluous_phpdoc_tags' => ['allow_mixed' => true],
|
|
'protected_to_private' => false,
|
|
// Part of @Symfony:risky in PHP-CS-Fixer 2.13.0. To be removed from the config file once upgrading
|
|
'native_function_invocation' => ['include' => ['@compiler_optimized'], 'scope' => 'namespaced', 'strict' => true],
|
|
// Part of future @Symfony ruleset in PHP-CS-Fixer To be removed from the config file once upgrading
|
|
'phpdoc_types_order' => ['null_adjustment' => 'always_last', 'sort_algorithm' => 'none'],
|
|
'combine_nested_dirname' => true,
|
|
])
|
|
->setRiskyAllowed(true)
|
|
->setFinder(
|
|
PhpCsFixer\Finder::create()
|
|
->in(__DIR__.'/{src,tests}')
|
|
->append([__FILE__])
|
|
)
|
|
;
|