forked from MacFJA/php-redisearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.unused.dist.php
33 lines (28 loc) · 863 Bytes
/
.unused.dist.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
<?php
$projectPath = __DIR__.'/';
$scanDirectories = [
$projectPath.'/src/',
$projectPath.'/tests/',
];
return [
// Required params
'composerJsonPath' => $projectPath.'/composer.json',
'vendorPath' => $projectPath.'/vendor/',
'scanDirectories' => $scanDirectories,
// Optional params
'skipPackages' => [
'phpmd/phpmd', // QA tool
'vimeo/psalm', // QA tool
'friendsofphp/php-cs-fixer', // QA tool
'rskuipers/php-assumptions', // QA tool
'ergebnis/composer-normalize', // QA tool
'enlightn/security-checker', // QA tool
'php-parallel-lint/php-parallel-lint', // QA tool
'sebastian/phpcpd', // QA tool
'ukko/phpredis-phpdoc', // Stubs
],
'excludeDirectories' => [],
'scanFiles' => [],
'extensions' => ['*.php'],
'requireDev' => true,
];