File: .php_cs.dist

package info (click to toggle)
php-symfony-polyfill 1.22.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,304 kB
  • sloc: php: 123,961; makefile: 66
file content (35 lines) | stat: -rw-r--r-- 1,186 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php

if (!file_exists(__DIR__.'/src')) {
    exit(0);
}

return PhpCsFixer\Config::create()
    ->setRules([
        '@Symfony' => true,
        '@Symfony:risky' => true,
        '@PHPUnit75Migration:risky' => true,
        'blank_line_before_statement' => false, // as currently, some of methods are defined as one-liners
        'braces' => false,                      // as currently, some of methods are defined as one-liners
        'php_unit_dedicate_assert' => ['target' => '5.6'],
        'array_syntax' => ['syntax' => 'short'],
        'fopen_flags' => false,
        'native_constant_invocation' => true,
        'list_syntax' => ['syntax' => 'short'],
        'visibility_required' => ['property', 'method', 'const'],
        'ternary_to_null_coalescing' => true,
    ])
    ->setRiskyAllowed(true)
    ->setFinder(
        PhpCsFixer\Finder::create()
            ->in(__DIR__)
            ->append([__FILE__])
            ->exclude([
                'src/Iconv/Resources',
                'src/Intl/Icu/Resources',
                'src/Intl/Idn/Resources',
                'src/Mbstring/Resources',
                'src/Intl/Normalizer/Resources',
            ])
    )
;