1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/.php_cs.dist

13 lines
270 B
Plaintext
Raw Normal View History

2017-06-17 23:41:57 +02:00
<?php
2018-07-27 21:00:26 +02:00
$config = new Amp\CodeStyle\Config();
$config->getFinder()
->in(__DIR__ . '/lib')
->in(__DIR__ . '/test');
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
$config->setCacheFile($cacheDir . '/.php_cs.cache');
return $config;