.php_cs.dist 297 B

1234567891011121314
  1. <?php
  2. return PhpCsFixer\Config::create()
  3. ->setRules([
  4. '@PSR2' => true,
  5. '@PSR12' => true,
  6. 'array_syntax' => ['syntax' => 'short']
  7. ])
  8. ->setFinder(
  9. PhpCsFixer\Finder::create()
  10. ->in(__DIR__ . '/src')
  11. ->in(__DIR__ . '/tests')
  12. )
  13. ;