mirror of
https://github.com/danog/tg-file-decoder.git
synced 2024-11-26 20:34:39 +01:00
13 lines
271 B
Plaintext
13 lines
271 B
Plaintext
|
<?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;
|