mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-29 13:38:44 +02:00
* Update twig/twig from 3.16.0 to 3.21.1 * Update tecnickcom/tcpdf from 6.7.5 to 6.10.0 * Correct font folder case failing on linux server * Suppress documentation generator from project in favor of the online version * Update symfony/http-foundation from 6.4.2 to 6.4.14 Update symfony/runtime from 6.4.0 to 6.4.24
43 lines
1.7 KiB
PHP
43 lines
1.7 KiB
PHP
<?php
|
|
|
|
// platform_check.php @generated by Composer
|
|
|
|
$issues = array();
|
|
|
|
if (!(PHP_VERSION_ID >= 80100)) {
|
|
$issues[] = 'Your Composer dependencies require a PHP version ">= 8.1.0". You are running ' . PHP_VERSION . '.';
|
|
}
|
|
|
|
$missingExtensions = array();
|
|
extension_loaded('curl') || $missingExtensions[] = 'curl';
|
|
extension_loaded('dom') || $missingExtensions[] = 'dom';
|
|
extension_loaded('gd') || $missingExtensions[] = 'gd';
|
|
extension_loaded('iconv') || $missingExtensions[] = 'iconv';
|
|
extension_loaded('json') || $missingExtensions[] = 'json';
|
|
extension_loaded('libxml') || $missingExtensions[] = 'libxml';
|
|
extension_loaded('mysqli') || $missingExtensions[] = 'mysqli';
|
|
extension_loaded('openssl') || $missingExtensions[] = 'openssl';
|
|
extension_loaded('soap') || $missingExtensions[] = 'soap';
|
|
extension_loaded('tokenizer') || $missingExtensions[] = 'tokenizer';
|
|
extension_loaded('xml') || $missingExtensions[] = 'xml';
|
|
|
|
if ($missingExtensions) {
|
|
$issues[] = 'Your Composer dependencies require the following PHP extensions to be installed: ' . implode(', ', $missingExtensions) . '.';
|
|
}
|
|
|
|
if ($issues) {
|
|
if (!headers_sent()) {
|
|
header('HTTP/1.1 500 Internal Server Error');
|
|
}
|
|
if (!ini_get('display_errors')) {
|
|
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
|
|
fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
|
|
} elseif (!headers_sent()) {
|
|
echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
|
|
}
|
|
}
|
|
throw new \RuntimeException(
|
|
'Composer detected issues in your platform: ' . implode(' ', $issues)
|
|
);
|
|
}
|