|
15 | 15 |
|
16 | 16 | $default = include __DIR__ . '/../vendor/jbzoo/codestyle/src/phan/default.php'; |
17 | 17 |
|
| 18 | +$index = array_search('UnusedSuppressionPlugin', $default['plugins'], true); |
| 19 | +unset($default['plugins'][$index]); |
| 20 | + |
18 | 21 | return array_merge($default, [ |
| 22 | + 'file_list' => [ |
| 23 | + 'src/phpunit/functions/defines.php', |
| 24 | + 'src/phpunit/functions/aliases.php', |
| 25 | + 'src/phpunit/functions/tools.php' |
| 26 | + ], |
| 27 | + |
19 | 28 | 'directory_list' => [ |
20 | 29 | 'src', |
21 | 30 |
|
| 31 | + // http-client |
22 | 32 | 'vendor/guzzlehttp/guzzle', |
23 | 33 | 'vendor/guzzlehttp/promises', |
24 | 34 | 'vendor/psr/http-message', |
25 | 35 | 'vendor/rmccue/requests', |
| 36 | + |
| 37 | + // data |
26 | 38 | 'vendor/symfony/yaml', |
| 39 | + |
| 40 | + // less, assets |
27 | 41 | 'vendor/wikimedia/less.php', |
| 42 | + |
| 43 | + // utils |
28 | 44 | 'vendor/symfony/console', |
29 | 45 | 'vendor/symfony/process', |
| 46 | + |
| 47 | + // phpunit |
| 48 | + 'vendor/phpunit/phpunit/src', |
| 49 | + 'vendor/phpunit/php-code-coverage/src', |
| 50 | + 'vendor/ulrichsg/getopt-php/src', |
| 51 | + 'vendor/symfony/finder', |
| 52 | + |
| 53 | + // composer-diff |
| 54 | + 'vendor/composer/semver/src', |
| 55 | + |
| 56 | + // codestyle |
| 57 | + 'vendor/phan/phan/src' |
30 | 58 | ] |
31 | 59 | ]); |
0 commit comments