mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 03:33:59 +00:00
* chore(deps): update dependencies * feat(tests): add matrix testing, problem matcher * feat(lint): add php-cs-fixer, fix codebase
16 lines
320 B
PHP
16 lines
320 B
PHP
<?php
|
|
|
|
$finder = (new PhpCsFixer\Finder())
|
|
->in(__DIR__);
|
|
|
|
return (new PhpCsFixer\Config())
|
|
->setRules([
|
|
'@PhpCsFixer' => true,
|
|
'@PHP74Migration' => true,
|
|
'@PSR12' => true,
|
|
'strict_param' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
])
|
|
->setFinder($finder)
|
|
;
|