depage-forms v1.4.1
html forms made easy
Loading...
Searching...
No Matches
.php-cs-fixer.php
Go to the documentation of this file.
1<?php
2
3use PhpCsFixer\Config;
4
5return (new Config())
6 ->setRules(
7 [
8 '@PER-CS2.0' => true,
9 ],
10 )
11 ->setFinder(
12 PhpCsFixer\Finder::create()
13 ->in(__DIR__)
14 ->name('*.php')
15 ->ignoreDotFiles(true)
16 ->ignoreVCS(true),
17 )
18 ->setParallelConfig(
19 PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect(),
20 );