mirror of
https://github.com/Karaka-Management/oms-Search.git
synced 2026-02-12 08:18:41 +00:00
12 lines
194 B
PHP
12 lines
194 B
PHP
<?php
|
|
|
|
$config = PhpCsFixer\Config::create();
|
|
$config->getFinder()
|
|
->exclude('vendor')
|
|
->in(__DIR__);
|
|
$config->setRules([
|
|
'@PSR1' => true,
|
|
'@Symfony' => true
|
|
]);
|
|
|
|
return $config; |