This repository has been archived by the owner on May 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
phpstan-autoload.php
66 lines (56 loc) · 2.22 KB
/
phpstan-autoload.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
65
66
<?php
require_once 'vendor/autoload.php';
autoloadPhpunit();
function autoloadPhpunit()
{
$phpunitDir = getEnvVar('SYMFONY_PHPUNIT_DIR', 'vendor/bin/.phpunit');
$autoloadFilePattern = "{$phpunitDir}/phpunit-*/vendor/autoload.php";
$suitablePhpunitAutoloadFiles = glob($autoloadFilePattern);
if (!isset($suitablePhpunitAutoloadFiles[0]) || !file_exists($suitablePhpunitAutoloadFiles[0])) {
echo addRedBackground(
'Для корректной работы phpstan будут установлены зависимости phpunit'
) . PHP_EOL;
passthru('bin/phpunit --version');
$suitablePhpunitAutoloadFiles = glob($autoloadFilePattern);
if (!isset($suitablePhpunitAutoloadFiles[0]) || !file_exists($suitablePhpunitAutoloadFiles[0])) {
echo addRedBackground(
"По пути {$autoloadFilePattern} не найден файл автозагрузки phpunit, не удалось установить зависимости phpunit. Попробуйте вручную запустить bin/phpstan"
) . PHP_EOL;
exit();
}
}
require_once $suitablePhpunitAutoloadFiles[0];
}
// взято из реализации vendor/symfony/phpunit-bridge/bin/simple-phpunit
function getEnvVar($name, $default = false)
{
if (false !== $value = getenv($name)) {
return $value;
}
static $phpunitConfig = null;
if ($phpunitConfig === null) {
$phpunitConfigFilename = null;
if (file_exists('phpunit.xml')) {
$phpunitConfigFilename = 'phpunit.xml';
} elseif (file_exists('phpunit.xml.dist')) {
$phpunitConfigFilename = 'phpunit.xml.dist';
}
if ($phpunitConfigFilename) {
$phpunitConfig = new DOMDocument();
$phpunitConfig->load($phpunitConfigFilename);
} else {
$phpunitConfig = false;
}
}
if ($phpunitConfig !== false) {
$var = new DOMXPath($phpunitConfig);
foreach ($var->query('//php/env[@name="' . $name . '"]') as $var) {
return $var->getAttribute('value');
}
}
return $default;
}
function addRedBackground($text)
{
return "\e[41m{$text}\e[0m";
}