1
0
Fork 0
composer/.php_cs

59 lines
1.9 KiB
Plaintext
Raw Normal View History

2015-05-28 13:51:01 +00:00
<?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 = PhpCsFixer\Finder::create()
2015-05-28 13:51:01 +00:00
->files()
->in(__DIR__.'/src')
->in(__DIR__.'/tests')
2017-12-18 15:02:48 +00:00
->name('*.php')
->notPath('Fixtures')
2015-05-28 13:51:01 +00:00
;
return PhpCsFixer\Config::create()
2015-05-28 13:51:01 +00:00
->setUsingCache(true)
2015-09-28 09:34:24 +00:00
->setRiskyAllowed(true)
->setRules(array(
'@PSR2' => true,
2018-03-09 07:17:31 +00:00
'array_syntax' => array('syntax' => 'long'),
2016-01-26 13:59:34 +00:00
'binary_operator_spaces' => true,
2018-07-24 12:32:52 +00:00
'blank_line_before_statement' => array('statements' => array('declare', 'return')),
'cast_spaces' => array('space' => 'single'),
'header_comment' => array('header' => $header),
2015-09-28 09:34:24 +00:00
'include' => true,
2018-07-24 12:32:52 +00:00
'class_attributes_separation' => array('elements' => array('method')),
'no_blank_lines_after_class_opening' => true,
2016-01-26 13:59:34 +00:00
'no_blank_lines_after_phpdoc' => true,
2017-03-08 14:07:29 +00:00
'no_empty_statement' => true,
2016-01-26 13:59:34 +00:00
'no_extra_consecutive_blank_lines' => true,
'no_leading_import_slash' => true,
'no_leading_namespace_whitespace' => true,
'no_trailing_comma_in_singleline_array' => true,
'no_unused_imports' => true,
2017-03-08 14:07:29 +00:00
'no_whitespace_in_blank_line' => true,
2016-01-26 13:59:34 +00:00
'object_operator_without_whitespace' => true,
2015-09-28 09:34:24 +00:00
'phpdoc_align' => true,
'phpdoc_indent' => true,
'phpdoc_no_access' => true,
'phpdoc_no_package' => true,
'phpdoc_order' => true,
'phpdoc_scalar' => true,
'phpdoc_trim' => true,
2017-03-08 14:07:29 +00:00
'phpdoc_types' => true,
2015-09-28 09:34:24 +00:00
'psr0' => true,
2018-03-09 07:17:31 +00:00
'single_blank_line_before_namespace' => true,
2016-01-26 13:59:34 +00:00
'standardize_not_equals' => true,
'ternary_operator_spaces' => true,
'trailing_comma_in_multiline_array' => true,
2015-05-28 13:51:01 +00:00
))
2017-03-08 14:07:29 +00:00
->setFinder($finder)
2015-05-28 13:51:01 +00:00
;