1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- $header = <<<EOF
- This file is part of Composer.
- (c) Nils Adermann <naderman@naderman.de>
- Jordi Boggiano <j.boggiano@seld.be>
- For the full copyright and license information, please view the LICENSE
- file that was distributed with this source code.
- EOF;
- $finder = Symfony\CS\Finder\DefaultFinder::create()
- ->files()
- ->name('*.php')
- ->exclude('Fixtures')
- ->in(__DIR__.'/src')
- ->in(__DIR__.'/tests')
- ;
- return Symfony\CS\Config\Config::create()
- ->setUsingCache(true)
- ->setRiskyAllowed(true)
- ->setRules(array(
- '@PSR2' => true,
- 'duplicate_semicolon' => true,
- 'extra_empty_lines' => true,
- 'header_comment' => array('header' => $header),
- 'include' => true,
- 'long_array_syntax' => true,
- 'method_separation' => true,
- 'multiline_array_trailing_comma' => true,
- 'namespace_no_leading_whitespace' => true,
- 'no_blank_lines_after_class_opening' => true,
- 'no_empty_lines_after_phpdocs' => true,
- 'object_operator' => true,
- 'operators_spaces' => true,
- 'phpdoc_align' => true,
- 'phpdoc_indent' => true,
- 'phpdoc_no_access' => true,
- 'phpdoc_no_package' => true,
- 'phpdoc_order' => true,
- 'phpdoc_scalar' => true,
- 'phpdoc_trim' => true,
- 'phpdoc_type_to_var' => true,
- 'psr0' => true,
- 'return' => true,
- 'remove_leading_slash_use' => true,
- 'remove_lines_between_uses' => true,
- 'single_array_no_trailing_comma' => true,
- 'single_blank_line_before_namespace' => true,
- 'spaces_cast' => true,
- 'standardize_not_equal' => true,
- 'ternary_spaces' => true,
- 'unused_use' => true,
- 'whitespacy_lines' => true,
- ))
- ->finder($finder)
- ;
|