mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
16 lines
268 B
PHP
16 lines
268 B
PHP
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->in([__DIR__])
|
|
->exclude(['vendor', 'var'])
|
|
->notPath('/cache/')
|
|
;
|
|
|
|
return PhpCsFixer\Config::create()
|
|
->setFinder($finder)
|
|
->setRules([
|
|
'@PSR2' => true,
|
|
'@PhpCsFixer' => true,
|
|
])
|
|
;
|