51 lines
1.6 KiB
PHP
51 lines
1.6 KiB
PHP
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing
|
|
|
|
$tracyVersion = '2.9.7';
|
|
// The newer tracy version doesn't support PHP 7.X which we still support in tests and also in development environment.
|
|
if (PHP_VERSION_ID < 80000) {
|
|
$tracyVersion = '2.9.4';
|
|
}
|
|
|
|
$tools = [
|
|
'https://github.com/composer/composer/releases/download/2.7.1/composer.phar' => 'composer.phar',
|
|
'https://github.com/humbug/php-scoper/releases/download/0.17.2/php-scoper.phar' => 'php-scoper.phar',
|
|
"https://github.com/nette/tracy/releases/download/v$tracyVersion/tracy.phar" => 'tracy.phar',
|
|
];
|
|
// ensure installation in dev-mode only
|
|
$isDevMode = (bool)getenv('COMPOSER_DEV_MODE');
|
|
if (!$isDevMode) {
|
|
fwrite(STDERR, "Skipping installing dev tools in non-dev mode.\n");
|
|
return;
|
|
}
|
|
|
|
// prepare vendor dir
|
|
$vendorDir = __DIR__ . '/vendor';
|
|
if (!file_exists($vendorDir)) {
|
|
mkdir($vendorDir);
|
|
}
|
|
|
|
function downloadFile($url, $filePath, $fileInfoPath) {
|
|
fwrite(STDERR, "Downloading '$url'...");
|
|
if (file_exists($filePath) && file_exists($fileInfoPath) && file_get_contents($fileInfoPath) === $url) {
|
|
fwrite(STDERR, " skipped (already exists).\n");
|
|
return;
|
|
}
|
|
|
|
$resource = fopen($url, 'r');
|
|
if ($resource === false) {
|
|
throw new \RuntimeException("Could not connect to '$url'");
|
|
}
|
|
file_put_contents($filePath, $resource);
|
|
file_put_contents($fileInfoPath, $url);
|
|
chmod($filePath, 0755);
|
|
fwrite(STDERR, " done.\n");
|
|
}
|
|
|
|
// download all tools
|
|
foreach ($tools as $url => $path) {
|
|
$pharPath = "$vendorDir/$path";
|
|
$pharInfoPath = "$pharPath.info";
|
|
|
|
downloadFile($url, $pharPath, $pharInfoPath);
|
|
}
|