edbizarro/clash-royale-api

View on GitHub
.php_cs

Summary

Maintainability
Test Coverage
<?php
/**
 * Config for PHP-CS-Fixer ver2
 */
$rules = [
    '@PSR2' => true,
    // addtional rules
    'array_syntax' => ['syntax' => 'short'],
    'no_multiline_whitespace_before_semicolons' => true,
    'no_short_echo_tag' => true,
    'no_unused_imports' => true,
    'not_operator_with_successor_space' => true,
];
$excludes = [
    // add exclude project directory
    'vendor',
    'build',
];
return PhpCsFixer\Config::create()
    ->setRules($rules)
    ->setFinder(
        PhpCsFixer\Finder::create()
            ->exclude($excludes)
            ->notName('README.md')
            ->notName('_ide_helper.php')
            ->notName('_ide_helper_models.php')
            ->notName('.phpstorm.meta.php')
            ->notName('server.php')
            ->notName('*.xml')
            ->notName('*.yml')
    );