1
0
mirror of https://github.com/danog/process.git synced 2024-11-30 04:39:04 +01:00
process/.php_cs

14 lines
302 B
Plaintext
Raw Normal View History

<?php
2018-10-15 06:16:09 +02:00
$config = new Amp\CodeStyle\Config();
2018-10-15 16:55:26 +02:00
$config->getFinder()
->in(__DIR__ . '/examples')
->in(__DIR__ . '/lib')
->in(__DIR__ . '/test');
2018-10-15 06:16:09 +02:00
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
$config->setCacheFile($cacheDir . '/.php_cs.cache');
return $config;