Composer install updates

This commit is contained in:
Clemens Schwaighofer
2023-02-28 12:06:28 +09:00
parent 8766d4db77
commit e1357f5d39
93 changed files with 20174 additions and 74 deletions

View File

@@ -22,6 +22,8 @@ class ComposerAutoloaderInit1b7cd5bacf2590b458d7a94400b505d4
return self::$loader;
}
require __DIR__ . '/platform_check.php';
spl_autoload_register(array('ComposerAutoloaderInit1b7cd5bacf2590b458d7a94400b505d4', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInit1b7cd5bacf2590b458d7a94400b505d4', 'loadClassLoader'));

View File

@@ -2,12 +2,23 @@
"packages": [
{
"name": "egrajp/corelibs-composer-all",
"version": "7.11.0",
"version_normalized": "7.11.0.0",
"version": "7.12.1",
"version_normalized": "7.12.1.0",
"dist": {
"type": "zip",
"url": "https://git.egplusww.jp/Composer/CoreLibs-Composer-All/archive/v7.11.0.zip"
"url": "https://git.egplusww.jp/api/packages/Composer/composer/files/egrajp%2Fcorelibs-composer-all/7.12.1/egrajp-corelibs-composer-all.7.12.1.zip",
"shasum": "457089ac43cb9fff5091e163877bb56ecb868151"
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"egrajp/smarty-extended": "^4.3",
"phan/phan": "v5.x-dev",
"phpstan/phpstan": "1.10.x-dev",
"phpunit/phpunit": "^9"
},
"time": "2023-02-28T09:16:32+09:00",
"type": "library",
"installation-source": "dist",
"autoload": {

View File

@@ -11,8 +11,8 @@
),
'versions' => array(
'egrajp/corelibs-composer-all' => array(
'pretty_version' => '7.11.0',
'version' => '7.11.0.0',
'pretty_version' => '7.12.1',
'version' => '7.12.1.0',
'reference' => NULL,
'type' => 'library',
'install_path' => __DIR__ . '/../egrajp/corelibs-composer-all',

26
www/vendor/composer/platform_check.php vendored Normal file
View File

@@ -0,0 +1,26 @@
<?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 . '.';
}
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;
}
}
trigger_error(
'Composer detected issues in your platform: ' . implode(' ', $issues),
E_USER_ERROR
);
}