diff --git a/composer.json b/composer.json index 228fc248c8..a94cac9ef6 100644 --- a/composer.json +++ b/composer.json @@ -26,7 +26,7 @@ "symfony/error-handler" : "v5.3.11", "symfony/http-kernel" : "v5.3.12", - "tsugi/lib": "dev-master#8b1eeda28f71457a5199c0fce2ba34e911553fb2", + "tsugi/lib": "dev-master#b68d98a3b09edf27086b70d31e7d27556a796310", "koseu/lib": "dev-master#5c5bcb32469977bea262b1900461c3f205adb899" }, "config": { diff --git a/composer.lock b/composer.lock index 5ac0028b47..13ca445d25 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "666d68f78c57e690da0f8f0913c8a886", + "content-hash": "2d5ddc1c16712664049bf3c07b8da062", "packages": [ { "name": "brick/math", @@ -5866,12 +5866,12 @@ "source": { "type": "git", "url": "https://github.com/tsugiproject/tsugi-php.git", - "reference": "8b1eeda28f71457a5199c0fce2ba34e911553fb2" + "reference": "b68d98a3b09edf27086b70d31e7d27556a796310" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tsugiproject/tsugi-php/zipball/8b1eeda28f71457a5199c0fce2ba34e911553fb2", - "reference": "8b1eeda28f71457a5199c0fce2ba34e911553fb2", + "url": "https://api.github.com/repos/tsugiproject/tsugi-php/zipball/b68d98a3b09edf27086b70d31e7d27556a796310", + "reference": "b68d98a3b09edf27086b70d31e7d27556a796310", "shasum": "" }, "require": { @@ -5914,7 +5914,7 @@ "issues": "https://github.com/tsugiproject/tsugi-php/issues", "source": "https://github.com/tsugiproject/tsugi-php/tree/master" }, - "time": "2022-05-17T16:24:18+00:00" + "time": "2022-08-04T18:07:58+00:00" }, { "name": "vlucas/phpdotenv", @@ -6080,5 +6080,5 @@ "prefer-lowest": false, "platform": [], "platform-dev": [], - "plugin-api-version": "2.2.0" + "plugin-api-version": "2.3.0" } diff --git a/vendor/autoload.php b/vendor/autoload.php index 4103bbf1aa..27d9c4ff74 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -2,6 +2,11 @@ // autoload.php @generated by Composer +if (PHP_VERSION_ID < 50600) { + echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; + exit(1); +} + require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInit129cbc536a214697caadba3ab28a195d::getLoader(); diff --git a/vendor/composer/InstalledVersions.php b/vendor/composer/InstalledVersions.php index d50e0c9fcc..c6b54af7ba 100644 --- a/vendor/composer/InstalledVersions.php +++ b/vendor/composer/InstalledVersions.php @@ -21,12 +21,14 @@ * See also https://getcomposer.org/doc/07-runtime.md#installed-versions * * To require its presence, you can require `composer-runtime-api ^2.0` + * + * @final */ class InstalledVersions { /** * @var mixed[]|null - * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array}|array{}|null + * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array}|array{}|null */ private static $installed; @@ -37,7 +39,7 @@ class InstalledVersions /** * @var array[] - * @psalm-var array}> + * @psalm-var array}> */ private static $installedByVendor = array(); @@ -241,7 +243,7 @@ public static function getInstallPath($packageName) /** * @return array - * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string} + * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool} */ public static function getRootPackage() { @@ -255,7 +257,7 @@ public static function getRootPackage() * * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect. * @return array[] - * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array} + * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} */ public static function getRawData() { @@ -278,7 +280,7 @@ public static function getRawData() * Returns the raw data of all installed.php which are currently loaded for custom implementations * * @return array[] - * @psalm-return list}> + * @psalm-return list}> */ public static function getAllRawData() { @@ -301,7 +303,7 @@ public static function getAllRawData() * @param array[] $data A vendor/composer/installed.php data set * @return void * - * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array} $data + * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} $data */ public static function reload($data) { @@ -311,7 +313,7 @@ public static function reload($data) /** * @return array[] - * @psalm-return list}> + * @psalm-return list}> */ private static function getInstalled() { diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 0874015519..8d72fe0f81 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -2,7 +2,7 @@ // autoload_classmap.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php index 414359bedf..c97a81bf22 100644 --- a/vendor/composer/autoload_files.php +++ b/vendor/composer/autoload_files.php @@ -2,31 +2,31 @@ // autoload_files.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php', - '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php', '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', + '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php', + 'a1105708a18b76903365ca1c4aa61b02' => $vendorDir . '/symfony/translation/Resources/functions.php', + '72579e7bd17821bb1321b87411366eae' => $vendorDir . '/illuminate/support/helpers.php', + '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', 'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php', + '0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php', + '8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php', + 'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php', '25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php', 'f598d06aa772fa33d905e87be6398fb1' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php', - '0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php', - '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', - 'a1105708a18b76903365ca1c4aa61b02' => $vendorDir . '/symfony/translation/Resources/functions.php', - '72579e7bd17821bb1321b87411366eae' => $vendorDir . '/illuminate/support/helpers.php', - 'ad155f8f1cf0d418fe49e248db8c661b' => $vendorDir . '/react/promise/src/functions_include.php', + '667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php', '23c18046f52bef3eea034657bafda50f' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php', '538ca81a9a966a6716601ecf48f4eaef' => $vendorDir . '/opis/closure/functions.php', 'e39a8b23c42d4e1452234d762b03835a' => $vendorDir . '/ramsey/uuid/src/functions.php', - '667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php', + 'ad155f8f1cf0d418fe49e248db8c661b' => $vendorDir . '/react/promise/src/functions_include.php', '972fda704d680a3a53c68e34e193cb22' => $vendorDir . '/react/promise-timer/src/functions_include.php', '253c157292f75eb38082b5acb06f3f01' => $vendorDir . '/nikic/fast-route/src/functions.php', '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php', 'bee9632da3ca00a99623b9c35d0c4f8b' => $vendorDir . '/laravel/lumen-framework/src/helpers.php', '2cffec82183ee1cea088009cef9a6fc3' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php', - '8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php', 'decc78cc4436b1292c6c0d151b19445c' => $vendorDir . '/phpseclib/phpseclib/phpseclib/bootstrap.php', - 'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php', ); diff --git a/vendor/composer/autoload_namespaces.php b/vendor/composer/autoload_namespaces.php index fa8330a227..f147e1ba2f 100644 --- a/vendor/composer/autoload_namespaces.php +++ b/vendor/composer/autoload_namespaces.php @@ -2,7 +2,7 @@ // autoload_namespaces.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php index 490b4344e4..1a8abfe562 100644 --- a/vendor/composer/autoload_psr4.php +++ b/vendor/composer/autoload_psr4.php @@ -2,7 +2,7 @@ // autoload_psr4.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index e77a472265..6788591b2a 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -25,42 +25,19 @@ public static function getLoader() require __DIR__ . '/platform_check.php'; spl_autoload_register(array('ComposerAutoloaderInit129cbc536a214697caadba3ab28a195d', 'loadClassLoader'), true, true); - self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); + self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); spl_autoload_unregister(array('ComposerAutoloaderInit129cbc536a214697caadba3ab28a195d', 'loadClassLoader')); $includePaths = require __DIR__ . '/include_paths.php'; $includePaths[] = get_include_path(); set_include_path(implode(PATH_SEPARATOR, $includePaths)); - $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); - if ($useStaticLoader) { - require __DIR__ . '/autoload_static.php'; - - call_user_func(\Composer\Autoload\ComposerStaticInit129cbc536a214697caadba3ab28a195d::getInitializer($loader)); - } else { - $map = require __DIR__ . '/autoload_namespaces.php'; - foreach ($map as $namespace => $path) { - $loader->set($namespace, $path); - } - - $map = require __DIR__ . '/autoload_psr4.php'; - foreach ($map as $namespace => $path) { - $loader->setPsr4($namespace, $path); - } - - $classMap = require __DIR__ . '/autoload_classmap.php'; - if ($classMap) { - $loader->addClassMap($classMap); - } - } + require __DIR__ . '/autoload_static.php'; + call_user_func(\Composer\Autoload\ComposerStaticInit129cbc536a214697caadba3ab28a195d::getInitializer($loader)); $loader->register(true); - if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInit129cbc536a214697caadba3ab28a195d::$files; - } else { - $includeFiles = require __DIR__ . '/autoload_files.php'; - } + $includeFiles = \Composer\Autoload\ComposerStaticInit129cbc536a214697caadba3ab28a195d::$files; foreach ($includeFiles as $fileIdentifier => $file) { composerRequire129cbc536a214697caadba3ab28a195d($fileIdentifier, $file); } diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index b1a4178644..2ebc313123 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -8,28 +8,28 @@ class ComposerStaticInit129cbc536a214697caadba3ab28a195d { public static $files = array ( 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', - '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php', '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', + '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php', + 'a1105708a18b76903365ca1c4aa61b02' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php', + '72579e7bd17821bb1321b87411366eae' => __DIR__ . '/..' . '/illuminate/support/helpers.php', + '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', 'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php', + '0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php', + '8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php', + 'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php', '25072dd6e2470089de65ae7bf11d3109' => __DIR__ . '/..' . '/symfony/polyfill-php72/bootstrap.php', 'f598d06aa772fa33d905e87be6398fb1' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php', - '0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php', - '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', - 'a1105708a18b76903365ca1c4aa61b02' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php', - '72579e7bd17821bb1321b87411366eae' => __DIR__ . '/..' . '/illuminate/support/helpers.php', - 'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php', + '667aeda72477189d0494fecd327c3641' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php', '23c18046f52bef3eea034657bafda50f' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php', '538ca81a9a966a6716601ecf48f4eaef' => __DIR__ . '/..' . '/opis/closure/functions.php', 'e39a8b23c42d4e1452234d762b03835a' => __DIR__ . '/..' . '/ramsey/uuid/src/functions.php', - '667aeda72477189d0494fecd327c3641' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php', + 'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php', '972fda704d680a3a53c68e34e193cb22' => __DIR__ . '/..' . '/react/promise-timer/src/functions_include.php', '253c157292f75eb38082b5acb06f3f01' => __DIR__ . '/..' . '/nikic/fast-route/src/functions.php', '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php', 'bee9632da3ca00a99623b9c35d0c4f8b' => __DIR__ . '/..' . '/laravel/lumen-framework/src/helpers.php', '2cffec82183ee1cea088009cef9a6fc3' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php', - '8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php', 'decc78cc4436b1292c6c0d151b19445c' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/bootstrap.php', - 'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php', ); public static $prefixLengthsPsr4 = array ( diff --git a/vendor/composer/include_paths.php b/vendor/composer/include_paths.php index 030a8bb8fb..40e6d18239 100644 --- a/vendor/composer/include_paths.php +++ b/vendor/composer/include_paths.php @@ -2,7 +2,7 @@ // include_paths.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 8b50a43722..5fe31cb940 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -6060,12 +6060,12 @@ "source": { "type": "git", "url": "https://github.com/tsugiproject/tsugi-php.git", - "reference": "8b1eeda28f71457a5199c0fce2ba34e911553fb2" + "reference": "b68d98a3b09edf27086b70d31e7d27556a796310" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tsugiproject/tsugi-php/zipball/8b1eeda28f71457a5199c0fce2ba34e911553fb2", - "reference": "8b1eeda28f71457a5199c0fce2ba34e911553fb2", + "url": "https://api.github.com/repos/tsugiproject/tsugi-php/zipball/b68d98a3b09edf27086b70d31e7d27556a796310", + "reference": "b68d98a3b09edf27086b70d31e7d27556a796310", "shasum": "" }, "require": { @@ -6078,7 +6078,7 @@ "phpunit/php-timer": "v5.0.3", "phpunit/phpunit": "9.*" }, - "time": "2022-05-17T16:24:18+00:00", + "time": "2022-08-04T18:07:58+00:00", "default-branch": true, "type": "library", "installation-source": "dist", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 76924e2214..a2d740ff0d 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -1,420 +1,420 @@ array( + 'name' => '__root__', 'pretty_version' => 'dev-master', 'version' => 'dev-master', + 'reference' => 'ecdc0c8db527a2e0c9bc79089555bca3315209e4', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), - 'reference' => '5f8b66dcbe62b498a59be6853ca6e0a0ad6962fc', - 'name' => '__root__', 'dev' => true, ), 'versions' => array( '__root__' => array( 'pretty_version' => 'dev-master', 'version' => 'dev-master', + 'reference' => 'ecdc0c8db527a2e0c9bc79089555bca3315209e4', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), - 'reference' => '5f8b66dcbe62b498a59be6853ca6e0a0ad6962fc', 'dev_requirement' => false, ), 'brick/math' => array( 'pretty_version' => '0.9.3', 'version' => '0.9.3.0', + 'reference' => 'ca57d18f028f84f777b2168cd1911b0dee2343ae', 'type' => 'library', 'install_path' => __DIR__ . '/../brick/math', 'aliases' => array(), - 'reference' => 'ca57d18f028f84f777b2168cd1911b0dee2343ae', 'dev_requirement' => false, ), 'cboden/ratchet' => array( 'pretty_version' => 'v0.4.4', 'version' => '0.4.4.0', + 'reference' => '5012dc954541b40c5599d286fd40653f5716a38f', 'type' => 'library', 'install_path' => __DIR__ . '/../cboden/ratchet', 'aliases' => array(), - 'reference' => '5012dc954541b40c5599d286fd40653f5716a38f', 'dev_requirement' => false, ), 'doctrine/inflector' => array( 'pretty_version' => '2.0.4', 'version' => '2.0.4.0', + 'reference' => '8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/inflector', 'aliases' => array(), - 'reference' => '8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89', 'dev_requirement' => false, ), 'doctrine/lexer' => array( 'pretty_version' => '1.2.3', 'version' => '1.2.3.0', + 'reference' => 'c268e882d4dbdd85e36e4ad69e02dc284f89d229', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/lexer', 'aliases' => array(), - 'reference' => 'c268e882d4dbdd85e36e4ad69e02dc284f89d229', 'dev_requirement' => false, ), 'dragonmantank/cron-expression' => array( 'pretty_version' => 'v2.3.1', 'version' => '2.3.1.0', + 'reference' => '65b2d8ee1f10915efb3b55597da3404f096acba2', 'type' => 'library', 'install_path' => __DIR__ . '/../dragonmantank/cron-expression', 'aliases' => array(), - 'reference' => '65b2d8ee1f10915efb3b55597da3404f096acba2', 'dev_requirement' => false, ), 'egulias/email-validator' => array( 'pretty_version' => '2.1.25', 'version' => '2.1.25.0', + 'reference' => '0dbf5d78455d4d6a41d186da50adc1122ec066f4', 'type' => 'library', 'install_path' => __DIR__ . '/../egulias/email-validator', 'aliases' => array(), - 'reference' => '0dbf5d78455d4d6a41d186da50adc1122ec066f4', 'dev_requirement' => false, ), 'evenement/evenement' => array( 'pretty_version' => 'v3.0.1', 'version' => '3.0.1.0', + 'reference' => '531bfb9d15f8aa57454f5f0285b18bec903b8fb7', 'type' => 'library', 'install_path' => __DIR__ . '/../evenement/evenement', 'aliases' => array(), - 'reference' => '531bfb9d15f8aa57454f5f0285b18bec903b8fb7', 'dev_requirement' => false, ), 'ezyang/htmlpurifier' => array( 'pretty_version' => 'v4.14.0', 'version' => '4.14.0.0', + 'reference' => '12ab42bd6e742c70c0a52f7b82477fcd44e64b75', 'type' => 'library', 'install_path' => __DIR__ . '/../ezyang/htmlpurifier', 'aliases' => array(), - 'reference' => '12ab42bd6e742c70c0a52f7b82477fcd44e64b75', 'dev_requirement' => false, ), 'firebase/php-jwt' => array( 'pretty_version' => 'v5.2.0', 'version' => '5.2.0.0', + 'reference' => 'feb0e820b8436873675fd3aca04f3728eb2185cb', 'type' => 'library', 'install_path' => __DIR__ . '/../firebase/php-jwt', 'aliases' => array(), - 'reference' => 'feb0e820b8436873675fd3aca04f3728eb2185cb', 'dev_requirement' => false, ), 'gree/jose' => array( 'pretty_version' => '2.2.1', 'version' => '2.2.1.0', + 'reference' => '445d702ffc8b17abd22d664b334a4046a0ed0b8e', 'type' => 'library', 'install_path' => __DIR__ . '/../gree/jose', 'aliases' => array(), - 'reference' => '445d702ffc8b17abd22d664b334a4046a0ed0b8e', 'dev_requirement' => false, ), 'guzzlehttp/psr7' => array( 'pretty_version' => '2.1.0', 'version' => '2.1.0.0', + 'reference' => '089edd38f5b8abba6cb01567c2a8aaa47cec4c72', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/psr7', 'aliases' => array(), - 'reference' => '089edd38f5b8abba6cb01567c2a8aaa47cec4c72', 'dev_requirement' => false, ), 'illuminate/auth' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => 'd523b7b96cd1afc55d24afba8fc3176e84eb8154', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/auth', 'aliases' => array(), - 'reference' => 'd523b7b96cd1afc55d24afba8fc3176e84eb8154', 'dev_requirement' => false, ), 'illuminate/broadcasting' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => 'b30bf4ff2b020a98aca537877a68fabecfa3a8ab', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/broadcasting', 'aliases' => array(), - 'reference' => 'b30bf4ff2b020a98aca537877a68fabecfa3a8ab', 'dev_requirement' => false, ), 'illuminate/bus' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '78d8013a700eef9fbece09094d422d73fa9a493a', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/bus', 'aliases' => array(), - 'reference' => '78d8013a700eef9fbece09094d422d73fa9a493a', 'dev_requirement' => false, ), 'illuminate/cache' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => 'f9155c4827600ea3e0743eb03402f8048c04455c', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/cache', 'aliases' => array(), - 'reference' => 'f9155c4827600ea3e0743eb03402f8048c04455c', 'dev_requirement' => false, ), 'illuminate/config' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '9d908793eceb04a8c8f74cfc6af3429ce140d2e2', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/config', 'aliases' => array(), - 'reference' => '9d908793eceb04a8c8f74cfc6af3429ce140d2e2', 'dev_requirement' => false, ), 'illuminate/console' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => 'c2c078d71efc8d75ca3741402a4b0fd3bf05c6fc', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/console', 'aliases' => array(), - 'reference' => 'c2c078d71efc8d75ca3741402a4b0fd3bf05c6fc', 'dev_requirement' => false, ), 'illuminate/container' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '06456a2ea5656c2f1ebda37039ce14c1bfc973b3', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/container', 'aliases' => array(), - 'reference' => '06456a2ea5656c2f1ebda37039ce14c1bfc973b3', 'dev_requirement' => false, ), 'illuminate/contracts' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '2449f2ea949ddf995a3dcffe5e21c768cf7d6478', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/contracts', 'aliases' => array(), - 'reference' => '2449f2ea949ddf995a3dcffe5e21c768cf7d6478', 'dev_requirement' => false, ), 'illuminate/database' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => 'e26b023f23c08968950470189e108e30f2e3b7ba', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/database', 'aliases' => array(), - 'reference' => 'e26b023f23c08968950470189e108e30f2e3b7ba', 'dev_requirement' => false, ), 'illuminate/encryption' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '2b58e3a5175003f8a2272691a8b5c6c8e059c97d', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/encryption', 'aliases' => array(), - 'reference' => '2b58e3a5175003f8a2272691a8b5c6c8e059c97d', 'dev_requirement' => false, ), 'illuminate/events' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '6f64db49dbfd490c6e30c983964543a054882faf', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/events', 'aliases' => array(), - 'reference' => '6f64db49dbfd490c6e30c983964543a054882faf', 'dev_requirement' => false, ), 'illuminate/filesystem' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '2013f94a3a7dff008be54884774548e3c222c3e8', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/filesystem', 'aliases' => array(), - 'reference' => '2013f94a3a7dff008be54884774548e3c222c3e8', 'dev_requirement' => false, ), 'illuminate/hashing' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '021a2a74f77f2b7bab4ef19b32bb9326c7cefacd', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/hashing', 'aliases' => array(), - 'reference' => '021a2a74f77f2b7bab4ef19b32bb9326c7cefacd', 'dev_requirement' => false, ), 'illuminate/http' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '39d6e9eca58b575016be5d85cc1f223f632c0e95', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/http', 'aliases' => array(), - 'reference' => '39d6e9eca58b575016be5d85cc1f223f632c0e95', 'dev_requirement' => false, ), 'illuminate/log' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '6152160fac69ff3267ccc1e87ea070503b79a906', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/log', 'aliases' => array(), - 'reference' => '6152160fac69ff3267ccc1e87ea070503b79a906', 'dev_requirement' => false, ), 'illuminate/pagination' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '5815c28d9430fb3eff673c6876881621b4fea48b', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/pagination', 'aliases' => array(), - 'reference' => '5815c28d9430fb3eff673c6876881621b4fea48b', 'dev_requirement' => false, ), 'illuminate/pipeline' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '68434133b675a9914868fb2d8f665ec2157d9faa', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/pipeline', 'aliases' => array(), - 'reference' => '68434133b675a9914868fb2d8f665ec2157d9faa', 'dev_requirement' => false, ), 'illuminate/queue' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '91d7b3db1c816f08bb7607a3ec662a6b7015e112', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/queue', 'aliases' => array(), - 'reference' => '91d7b3db1c816f08bb7607a3ec662a6b7015e112', 'dev_requirement' => false, ), 'illuminate/session' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => 'b18bc348f4af2afae78e72ea332a4390c5c01a72', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/session', 'aliases' => array(), - 'reference' => 'b18bc348f4af2afae78e72ea332a4390c5c01a72', 'dev_requirement' => false, ), 'illuminate/support' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => 'c7b42acd009c94a3f8b749a65f6835db90174d58', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/support', 'aliases' => array(), - 'reference' => 'c7b42acd009c94a3f8b749a65f6835db90174d58', 'dev_requirement' => false, ), 'illuminate/testing' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '150fc64c2f5bc31183870ea0d691a69456ac2cac', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/testing', 'aliases' => array(), - 'reference' => '150fc64c2f5bc31183870ea0d691a69456ac2cac', 'dev_requirement' => false, ), 'illuminate/translation' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '3fa058d9fbac56fd53d211e43acdb107fb1d2a77', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/translation', 'aliases' => array(), - 'reference' => '3fa058d9fbac56fd53d211e43acdb107fb1d2a77', 'dev_requirement' => false, ), 'illuminate/validation' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '0520da7549fb4b16b1948357b2328e1cc8d234c6', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/validation', 'aliases' => array(), - 'reference' => '0520da7549fb4b16b1948357b2328e1cc8d234c6', 'dev_requirement' => false, ), 'illuminate/view' => array( 'pretty_version' => 'v7.30.6', 'version' => '7.30.6.0', + 'reference' => '098e583d43c8fd1d3505ed83b2d54a31ce20bcdb', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/view', 'aliases' => array(), - 'reference' => '098e583d43c8fd1d3505ed83b2d54a31ce20bcdb', 'dev_requirement' => false, ), 'koseu/lib' => array( 'pretty_version' => 'dev-master', 'version' => 'dev-master', + 'reference' => '5c5bcb32469977bea262b1900461c3f205adb899', 'type' => 'library', 'install_path' => __DIR__ . '/../koseu/lib', 'aliases' => array( 0 => '9999999-dev', ), - 'reference' => '5c5bcb32469977bea262b1900461c3f205adb899', 'dev_requirement' => false, ), 'laravel/lumen-framework' => array( 'pretty_version' => 'v7.2.2', 'version' => '7.2.2.0', + 'reference' => '613c9c02dd9632f18c6e2542a289cb37a98c939f', 'type' => 'library', 'install_path' => __DIR__ . '/../laravel/lumen-framework', 'aliases' => array(), - 'reference' => '613c9c02dd9632f18c6e2542a289cb37a98c939f', 'dev_requirement' => false, ), 'monolog/monolog' => array( 'pretty_version' => '2.3.0', 'version' => '2.3.0.0', + 'reference' => 'df991fd88693ab703aa403413d83e15f688dae33', 'type' => 'library', 'install_path' => __DIR__ . '/../monolog/monolog', 'aliases' => array(), - 'reference' => 'df991fd88693ab703aa403413d83e15f688dae33', 'dev_requirement' => false, ), 'nesbot/carbon' => array( 'pretty_version' => '2.57.0', 'version' => '2.57.0.0', + 'reference' => '4a54375c21eea4811dbd1149fe6b246517554e78', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), - 'reference' => '4a54375c21eea4811dbd1149fe6b246517554e78', 'dev_requirement' => false, ), 'nikic/fast-route' => array( 'pretty_version' => 'v1.3.0', 'version' => '1.3.0.0', + 'reference' => '181d480e08d9476e61381e04a71b34dc0432e812', 'type' => 'library', 'install_path' => __DIR__ . '/../nikic/fast-route', 'aliases' => array(), - 'reference' => '181d480e08d9476e61381e04a71b34dc0432e812', 'dev_requirement' => false, ), 'opis/closure' => array( 'pretty_version' => '3.6.3', 'version' => '3.6.3.0', + 'reference' => '3d81e4309d2a927abbe66df935f4bb60082805ad', 'type' => 'library', 'install_path' => __DIR__ . '/../opis/closure', 'aliases' => array(), - 'reference' => '3d81e4309d2a927abbe66df935f4bb60082805ad', 'dev_requirement' => false, ), 'phpoption/phpoption' => array( 'pretty_version' => '1.8.1', 'version' => '1.8.1.0', + 'reference' => 'eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15', 'type' => 'library', 'install_path' => __DIR__ . '/../phpoption/phpoption', 'aliases' => array(), - 'reference' => 'eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15', 'dev_requirement' => false, ), 'phpseclib/phpseclib' => array( 'pretty_version' => '2.0.36', 'version' => '2.0.36.0', + 'reference' => 'a97547126396548c224703a267a30af1592be146', 'type' => 'library', 'install_path' => __DIR__ . '/../phpseclib/phpseclib', 'aliases' => array(), - 'reference' => 'a97547126396548c224703a267a30af1592be146', 'dev_requirement' => false, ), 'psr/container' => array( 'pretty_version' => '1.1.2', 'version' => '1.1.2.0', + 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), - 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'dev_requirement' => false, ), 'psr/container-implementation' => array( @@ -426,10 +426,10 @@ 'psr/event-dispatcher' => array( 'pretty_version' => '1.0.0', 'version' => '1.0.0.0', + 'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/event-dispatcher', 'aliases' => array(), - 'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0', 'dev_requirement' => false, ), 'psr/event-dispatcher-implementation' => array( @@ -441,10 +441,10 @@ 'psr/http-factory' => array( 'pretty_version' => '1.0.1', 'version' => '1.0.1.0', + 'reference' => '12ac7fcd07e5b077433f5f2bee95b3a771bf61be', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), - 'reference' => '12ac7fcd07e5b077433f5f2bee95b3a771bf61be', 'dev_requirement' => false, ), 'psr/http-factory-implementation' => array( @@ -456,10 +456,10 @@ 'psr/http-message' => array( 'pretty_version' => '1.0.1', 'version' => '1.0.1.0', + 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), - 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363', 'dev_requirement' => false, ), 'psr/http-message-implementation' => array( @@ -471,10 +471,10 @@ 'psr/log' => array( 'pretty_version' => '1.1.4', 'version' => '1.1.4.0', + 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), - 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', 'dev_requirement' => false, ), 'psr/log-implementation' => array( @@ -487,109 +487,109 @@ 'psr/simple-cache' => array( 'pretty_version' => '1.0.1', 'version' => '1.0.1.0', + 'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/simple-cache', 'aliases' => array(), - 'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b', 'dev_requirement' => false, ), 'ralouphie/getallheaders' => array( 'pretty_version' => '3.0.3', 'version' => '3.0.3.0', + 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'type' => 'library', 'install_path' => __DIR__ . '/../ralouphie/getallheaders', 'aliases' => array(), - 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'dev_requirement' => false, ), 'ramsey/collection' => array( 'pretty_version' => '1.2.2', 'version' => '1.2.2.0', + 'reference' => 'cccc74ee5e328031b15640b51056ee8d3bb66c0a', 'type' => 'library', 'install_path' => __DIR__ . '/../ramsey/collection', 'aliases' => array(), - 'reference' => 'cccc74ee5e328031b15640b51056ee8d3bb66c0a', 'dev_requirement' => false, ), 'ramsey/uuid' => array( 'pretty_version' => '4.2.3', 'version' => '4.2.3.0', + 'reference' => 'fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df', 'type' => 'library', 'install_path' => __DIR__ . '/../ramsey/uuid', 'aliases' => array(), - 'reference' => 'fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df', 'dev_requirement' => false, ), 'ratchet/rfc6455' => array( 'pretty_version' => 'v0.3.1', 'version' => '0.3.1.0', + 'reference' => '7c964514e93456a52a99a20fcfa0de242a43ccdb', 'type' => 'library', 'install_path' => __DIR__ . '/../ratchet/rfc6455', 'aliases' => array(), - 'reference' => '7c964514e93456a52a99a20fcfa0de242a43ccdb', 'dev_requirement' => false, ), 'react/cache' => array( 'pretty_version' => 'v1.1.1', 'version' => '1.1.1.0', + 'reference' => '4bf736a2cccec7298bdf745db77585966fc2ca7e', 'type' => 'library', 'install_path' => __DIR__ . '/../react/cache', 'aliases' => array(), - 'reference' => '4bf736a2cccec7298bdf745db77585966fc2ca7e', 'dev_requirement' => false, ), 'react/dns' => array( 'pretty_version' => 'v1.7.0', 'version' => '1.7.0.0', + 'reference' => 'a45784faebf8fbd59058fad2d8497f71a787d20c', 'type' => 'library', 'install_path' => __DIR__ . '/../react/dns', 'aliases' => array(), - 'reference' => 'a45784faebf8fbd59058fad2d8497f71a787d20c', 'dev_requirement' => false, ), 'react/event-loop' => array( 'pretty_version' => 'v1.1.1', 'version' => '1.1.1.0', + 'reference' => '6d24de090cd59cfc830263cfba965be77b563c13', 'type' => 'library', 'install_path' => __DIR__ . '/../react/event-loop', 'aliases' => array(), - 'reference' => '6d24de090cd59cfc830263cfba965be77b563c13', 'dev_requirement' => false, ), 'react/promise' => array( 'pretty_version' => 'v2.9.0', 'version' => '2.9.0.0', + 'reference' => '234f8fd1023c9158e2314fa9d7d0e6a83db42910', 'type' => 'library', 'install_path' => __DIR__ . '/../react/promise', 'aliases' => array(), - 'reference' => '234f8fd1023c9158e2314fa9d7d0e6a83db42910', 'dev_requirement' => false, ), 'react/promise-timer' => array( 'pretty_version' => 'v1.6.0', 'version' => '1.6.0.0', + 'reference' => 'daee9baf6ef30c43ea4c86399f828bb5f558f6e6', 'type' => 'library', 'install_path' => __DIR__ . '/../react/promise-timer', 'aliases' => array(), - 'reference' => 'daee9baf6ef30c43ea4c86399f828bb5f558f6e6', 'dev_requirement' => false, ), 'react/socket' => array( 'pretty_version' => 'v1.7.0', 'version' => '1.7.0.0', + 'reference' => '5d39e3fa56ea7cc443c86f2788a40867cdba1659', 'type' => 'library', 'install_path' => __DIR__ . '/../react/socket', 'aliases' => array(), - 'reference' => '5d39e3fa56ea7cc443c86f2788a40867cdba1659', 'dev_requirement' => false, ), 'react/stream' => array( 'pretty_version' => 'v1.1.1', 'version' => '1.1.1.0', + 'reference' => '7c02b510ee3f582c810aeccd3a197b9c2f52ff1a', 'type' => 'library', 'install_path' => __DIR__ . '/../react/stream', 'aliases' => array(), - 'reference' => '7c02b510ee3f582c810aeccd3a197b9c2f52ff1a', 'dev_requirement' => false, ), 'rhumsaa/uuid' => array( @@ -601,46 +601,46 @@ 'symfony/console' => array( 'pretty_version' => 'v5.3.11', 'version' => '5.3.11.0', + 'reference' => '3e7ab8f5905058984899b05a4648096f558bfeba', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/console', 'aliases' => array(), - 'reference' => '3e7ab8f5905058984899b05a4648096f558bfeba', 'dev_requirement' => false, ), 'symfony/deprecation-contracts' => array( 'pretty_version' => 'v2.5.0', 'version' => '2.5.0.0', + 'reference' => '6f981ee24cf69ee7ce9736146d1c57c2780598a8', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), - 'reference' => '6f981ee24cf69ee7ce9736146d1c57c2780598a8', 'dev_requirement' => false, ), 'symfony/error-handler' => array( 'pretty_version' => 'v5.3.11', 'version' => '5.3.11.0', + 'reference' => 'eec73dd7218713f48a7996583a741b3bae58c8d3', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/error-handler', 'aliases' => array(), - 'reference' => 'eec73dd7218713f48a7996583a741b3bae58c8d3', 'dev_requirement' => false, ), 'symfony/event-dispatcher' => array( 'pretty_version' => 'v5.3.11', 'version' => '5.3.11.0', + 'reference' => '661a7a6e085394f8513945669e31f7c1338a7e69', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/event-dispatcher', 'aliases' => array(), - 'reference' => '661a7a6e085394f8513945669e31f7c1338a7e69', 'dev_requirement' => false, ), 'symfony/event-dispatcher-contracts' => array( 'pretty_version' => 'v2.5.0', 'version' => '2.5.0.0', + 'reference' => '66bea3b09be61613cd3b4043a65a8ec48cfa6d2a', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/event-dispatcher-contracts', 'aliases' => array(), - 'reference' => '66bea3b09be61613cd3b4043a65a8ec48cfa6d2a', 'dev_requirement' => false, ), 'symfony/event-dispatcher-implementation' => array( @@ -652,181 +652,181 @@ 'symfony/finder' => array( 'pretty_version' => 'v5.3.7', 'version' => '5.3.7.0', + 'reference' => 'a10000ada1e600d109a6c7632e9ac42e8bf2fb93', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/finder', 'aliases' => array(), - 'reference' => 'a10000ada1e600d109a6c7632e9ac42e8bf2fb93', 'dev_requirement' => false, ), 'symfony/http-client-contracts' => array( 'pretty_version' => 'v2.5.0', 'version' => '2.5.0.0', + 'reference' => 'ec82e57b5b714dbb69300d348bd840b345e24166', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/http-client-contracts', 'aliases' => array(), - 'reference' => 'ec82e57b5b714dbb69300d348bd840b345e24166', 'dev_requirement' => false, ), 'symfony/http-foundation' => array( 'pretty_version' => 'v5.3.11', 'version' => '5.3.11.0', + 'reference' => 'd1e7059ebeb0b8f9fe5eb5b26eacd2e3c1f371cc', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/http-foundation', 'aliases' => array(), - 'reference' => 'd1e7059ebeb0b8f9fe5eb5b26eacd2e3c1f371cc', 'dev_requirement' => false, ), 'symfony/http-kernel' => array( 'pretty_version' => 'v5.3.12', 'version' => '5.3.12.0', + 'reference' => 'f53025cd1d91b1af85d6d9e17eefa98e31ee953b', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/http-kernel', 'aliases' => array(), - 'reference' => 'f53025cd1d91b1af85d6d9e17eefa98e31ee953b', 'dev_requirement' => false, ), 'symfony/mime' => array( 'pretty_version' => 'v5.3.11', 'version' => '5.3.11.0', + 'reference' => 'dffc0684f10526db12c52fcd6238c64695426d61', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/mime', 'aliases' => array(), - 'reference' => 'dffc0684f10526db12c52fcd6238c64695426d61', 'dev_requirement' => false, ), 'symfony/polyfill-ctype' => array( 'pretty_version' => 'v1.25.0', 'version' => '1.25.0.0', + 'reference' => '30885182c981ab175d4d034db0f6f469898070ab', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 'aliases' => array(), - 'reference' => '30885182c981ab175d4d034db0f6f469898070ab', 'dev_requirement' => false, ), 'symfony/polyfill-intl-grapheme' => array( 'pretty_version' => 'v1.25.0', 'version' => '1.25.0.0', + 'reference' => '81b86b50cf841a64252b439e738e97f4a34e2783', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme', 'aliases' => array(), - 'reference' => '81b86b50cf841a64252b439e738e97f4a34e2783', 'dev_requirement' => false, ), 'symfony/polyfill-intl-idn' => array( 'pretty_version' => 'v1.25.0', 'version' => '1.25.0.0', + 'reference' => '749045c69efb97c70d25d7463abba812e91f3a44', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-idn', 'aliases' => array(), - 'reference' => '749045c69efb97c70d25d7463abba812e91f3a44', 'dev_requirement' => false, ), 'symfony/polyfill-intl-normalizer' => array( 'pretty_version' => 'v1.25.0', 'version' => '1.25.0.0', + 'reference' => '8590a5f561694770bdcd3f9b5c69dde6945028e8', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer', 'aliases' => array(), - 'reference' => '8590a5f561694770bdcd3f9b5c69dde6945028e8', 'dev_requirement' => false, ), 'symfony/polyfill-mbstring' => array( 'pretty_version' => 'v1.25.0', 'version' => '1.25.0.0', + 'reference' => '0abb51d2f102e00a4eefcf46ba7fec406d245825', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), - 'reference' => '0abb51d2f102e00a4eefcf46ba7fec406d245825', 'dev_requirement' => false, ), 'symfony/polyfill-php72' => array( 'pretty_version' => 'v1.25.0', 'version' => '1.25.0.0', + 'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php72', 'aliases' => array(), - 'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976', 'dev_requirement' => false, ), 'symfony/polyfill-php73' => array( 'pretty_version' => 'v1.25.0', 'version' => '1.25.0.0', + 'reference' => 'cc5db0e22b3cb4111010e48785a97f670b350ca5', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), - 'reference' => 'cc5db0e22b3cb4111010e48785a97f670b350ca5', 'dev_requirement' => false, ), 'symfony/polyfill-php80' => array( 'pretty_version' => 'v1.25.0', 'version' => '1.25.0.0', + 'reference' => '4407588e0d3f1f52efb65fbe92babe41f37fe50c', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), - 'reference' => '4407588e0d3f1f52efb65fbe92babe41f37fe50c', 'dev_requirement' => false, ), 'symfony/polyfill-php81' => array( 'pretty_version' => 'v1.25.0', 'version' => '1.25.0.0', + 'reference' => '5de4ba2d41b15f9bd0e19b2ab9674135813ec98f', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php81', 'aliases' => array(), - 'reference' => '5de4ba2d41b15f9bd0e19b2ab9674135813ec98f', 'dev_requirement' => false, ), 'symfony/process' => array( 'pretty_version' => 'v5.3.11', 'version' => '5.3.11.0', + 'reference' => '6c99204de85d04ca17f16c466fc61896960b0636', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/process', 'aliases' => array(), - 'reference' => '6c99204de85d04ca17f16c466fc61896960b0636', 'dev_requirement' => false, ), 'symfony/routing' => array( 'pretty_version' => 'v5.3.7', 'version' => '5.3.7.0', + 'reference' => 'be865017746fe869007d94220ad3f5297951811b', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/routing', 'aliases' => array(), - 'reference' => 'be865017746fe869007d94220ad3f5297951811b', 'dev_requirement' => false, ), 'symfony/service-contracts' => array( 'pretty_version' => 'v2.5.0', 'version' => '2.5.0.0', + 'reference' => '1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/service-contracts', 'aliases' => array(), - 'reference' => '1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc', 'dev_requirement' => false, ), 'symfony/string' => array( 'pretty_version' => 'v5.4.3', 'version' => '5.4.3.0', + 'reference' => '92043b7d8383e48104e411bc9434b260dbeb5a10', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/string', 'aliases' => array(), - 'reference' => '92043b7d8383e48104e411bc9434b260dbeb5a10', 'dev_requirement' => false, ), 'symfony/translation' => array( 'pretty_version' => 'v5.3.11', 'version' => '5.3.11.0', + 'reference' => '17a965c8f3b1b348cf15d903ac53942984561f8a', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), - 'reference' => '17a965c8f3b1b348cf15d903ac53942984561f8a', 'dev_requirement' => false, ), 'symfony/translation-contracts' => array( 'pretty_version' => 'v2.5.0', 'version' => '2.5.0.0', + 'reference' => 'd28150f0f44ce854e942b671fc2620a98aae1b1e', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), - 'reference' => 'd28150f0f44ce854e942b671fc2620a98aae1b1e', 'dev_requirement' => false, ), 'symfony/translation-implementation' => array( @@ -838,39 +838,39 @@ 'symfony/var-dumper' => array( 'pretty_version' => 'v5.3.11', 'version' => '5.3.11.0', + 'reference' => 'a029b3a11b757f9cc8693040339153b4745a913f', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/var-dumper', 'aliases' => array(), - 'reference' => 'a029b3a11b757f9cc8693040339153b4745a913f', 'dev_requirement' => false, ), 'tsugi/lib' => array( 'pretty_version' => 'dev-master', 'version' => 'dev-master', + 'reference' => 'b68d98a3b09edf27086b70d31e7d27556a796310', 'type' => 'library', 'install_path' => __DIR__ . '/../tsugi/lib', 'aliases' => array( 0 => '9999999-dev', ), - 'reference' => '8b1eeda28f71457a5199c0fce2ba34e911553fb2', 'dev_requirement' => false, ), 'vlucas/phpdotenv' => array( 'pretty_version' => 'v4.2.2', 'version' => '4.2.2.0', + 'reference' => '77e974614d2ead521f18069dccc571696f52b8dc', 'type' => 'library', 'install_path' => __DIR__ . '/../vlucas/phpdotenv', 'aliases' => array(), - 'reference' => '77e974614d2ead521f18069dccc571696f52b8dc', 'dev_requirement' => false, ), 'voku/portable-ascii' => array( 'pretty_version' => '1.6.1', 'version' => '1.6.1.0', + 'reference' => '87337c91b9dfacee02452244ee14ab3c43bc485a', 'type' => 'library', 'install_path' => __DIR__ . '/../voku/portable-ascii', 'aliases' => array(), - 'reference' => '87337c91b9dfacee02452244ee14ab3c43bc485a', 'dev_requirement' => false, ), ), diff --git a/vendor/tsugi/lib/src/Util/CC.php b/vendor/tsugi/lib/src/Util/CC.php index 2eff96c84c..8b082e4631 100644 --- a/vendor/tsugi/lib/src/Util/CC.php +++ b/vendor/tsugi/lib/src/Util/CC.php @@ -235,7 +235,7 @@ public function add_lti_link($module, $title=null) { /** * Add a resource to the manifest. */ - public function add_resource_item($module, $title=null, $type, $identifier, $file) { + public function add_resource_item($module, $title, $type, $identifier, $file) { $this->last_file = $file; $this->last_type = $type; $this->last_identifier = $identifier;