add CS-Fixer configuration
Dieser Commit ist enthalten in:
Ursprung
d0464d4a20
Commit
51642b57c7
4
.gitattributes
vendored
Normale Datei
4
.gitattributes
vendored
Normale Datei
@ -0,0 +1,4 @@
|
||||
* text=auto
|
||||
|
||||
/.gitattributes export-ignore
|
||||
/.php-cs-fixer.php export-ignore
|
13
.php-cs-fixer.php
Normale Datei
13
.php-cs-fixer.php
Normale Datei
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
$finder = PhpCsFixer\Finder::create()
|
||||
->in(__DIR__)
|
||||
;
|
||||
|
||||
$config = new PhpCsFixer\Config();
|
||||
return $config->setRules([
|
||||
'@PHP73Migration' => true,
|
||||
'@PSR12' => true
|
||||
])
|
||||
->setFinder($finder)
|
||||
;
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren