Add cs-fix config

This commit is contained in:
Daniil Gentili 2021-08-14 16:08:15 +02:00
parent 28cdbef38c
commit b25d8033e2
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

12
.php-cs-fixer.dist.php Normal file
View File

@ -0,0 +1,12 @@
<?php
$config = new Amp\CodeStyle\Config();
$config->getFinder()
->in(__DIR__ . '/src')
->in(__DIR__ . '/tests');
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
$config->setCacheFile($cacheDir . '/.php_cs.cache');
return $config;