.php_cs.dist 194 B

123456789101112
  1. <?php
  2. $config = PhpCsFixer\Config::create();
  3. $config->getFinder()
  4. ->exclude('vendor')
  5. ->in(__DIR__);
  6. $config->setRules([
  7. '@PSR1' => true,
  8. '@Symfony' => true
  9. ]);
  10. return $config;