-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.phan.php
64 lines (51 loc) · 1.65 KB
/
.phan.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/**
* JBZoo Toolbox - Toolbox.
*
* This file is part of the JBZoo Toolbox project.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT
* @copyright Copyright (C) JBZoo.com, All rights reserved.
* @see https://github.com/JBZoo/Toolbox
*/
declare(strict_types=1);
$default = include __DIR__ . '/vendor/jbzoo/codestyle/src/phan.php';
$index = \array_search('UnusedSuppressionPlugin', $default['plugins'], true);
unset($default['plugins'][$index]);
return \array_merge($default, [
'file_list' => [
'src/phpunit/functions/defines.php',
'src/phpunit/functions/aliases.php',
'src/phpunit/functions/tools.php',
],
'directory_list' => [
'src',
// http-client
'vendor/guzzlehttp/guzzle',
'vendor/guzzlehttp/promises',
'vendor/psr/http-message',
'vendor/rmccue/requests',
// data
'vendor/symfony/yaml',
// less, assets
'vendor/wikimedia/less.php',
// utils
'vendor/bluepsyduck/symfony-process-manager/src',
'vendor/symfony/console',
'vendor/symfony/process',
// phpunit
'vendor/phpunit/php-code-coverage/src',
'vendor/phpunit/php-file-iterator/src',
'vendor/phpunit/phpunit/src',
'vendor/symfony/finder',
'vendor/ulrichsg/getopt-php/src',
// composer-diff
'vendor/composer/semver/src',
// codestyle
'vendor/friendsofphp/php-cs-fixer/src',
'vendor/kubawerlos/php-cs-fixer-custom-fixers/src',
'vendor/phan/phan/src',
],
]);