mirror of
https://github.com/danog/LibDNSJson.git
synced 2024-11-26 11:54:47 +01:00
14 lines
302 B
PHP
14 lines
302 B
PHP
|
<?php
|
||
|
|
||
|
$config = new Amp\CodeStyle\Config();
|
||
|
$config->getFinder()
|
||
|
->in(__DIR__ . '/examples')
|
||
|
->in(__DIR__ . '/lib')
|
||
|
->in(__DIR__ . '/test');
|
||
|
|
||
|
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
|
||
|
|
||
|
$config->setCacheFile($cacheDir . '/.php_cs.cache');
|
||
|
|
||
|
return $config;
|