|
|
|
@ -14,11 +14,14 @@ $config = new Config();
|
|
|
|
$config
|
|
|
|
$config
|
|
|
|
->setParallelConfig(ParallelConfigFactory::detect())
|
|
|
|
->setParallelConfig(ParallelConfigFactory::detect())
|
|
|
|
->getFinder()
|
|
|
|
->getFinder()
|
|
|
|
->exclude('config')
|
|
|
|
->in(__DIR__)
|
|
|
|
->exclude('3rdparty')
|
|
|
|
->exclude([
|
|
|
|
->exclude('build/stubs')
|
|
|
|
'3rdparty',
|
|
|
|
->exclude('composer')
|
|
|
|
'build/stubs',
|
|
|
|
->in(__DIR__);
|
|
|
|
'composer',
|
|
|
|
|
|
|
|
])
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$ignoredEntries = shell_exec('git status --porcelain --ignored ' . escapeshellarg(__DIR__));
|
|
|
|
$ignoredEntries = shell_exec('git status --porcelain --ignored ' . escapeshellarg(__DIR__));
|
|
|
|
$ignoredEntries = explode("\n", $ignoredEntries);
|
|
|
|
$ignoredEntries = explode("\n", $ignoredEntries);
|
|
|
|
|