mirror of
https://github.com/elyby/accounts.git
synced 2024-11-09 23:12:20 +05:30
17 lines
443 B
PHP
17 lines
443 B
PHP
<?php
|
|
$finder = \PhpCsFixer\Finder::create()
|
|
->in(__DIR__)
|
|
->exclude('data')
|
|
->exclude('docker')
|
|
->exclude('frontend')
|
|
->notPath('common/emails/views')
|
|
->notPath('common/mail/layouts')
|
|
->notPath('/.*\/runtime/')
|
|
->notPath('autocompletion.php')
|
|
->notPath('/.*\/tests\/_output/')
|
|
->notPath('/.*\/tests\/_support\/_generated/')
|
|
->name('yii');
|
|
|
|
return \Ely\CS\Config::create()
|
|
->setFinder($finder);
|