aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/composer
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/composer')
-rw-r--r--vendor/composer/InstalledVersions.php45
-rw-r--r--vendor/composer/autoload_classmap.php858
-rw-r--r--vendor/composer/autoload_files.php6
-rw-r--r--vendor/composer/autoload_psr4.php14
-rw-r--r--vendor/composer/autoload_static.php929
-rw-r--r--vendor/composer/installed.json1542
-rw-r--r--vendor/composer/installed.php305
7 files changed, 2874 insertions, 825 deletions
diff --git a/vendor/composer/InstalledVersions.php b/vendor/composer/InstalledVersions.php
index 51e734a77..2052022fd 100644
--- a/vendor/composer/InstalledVersions.php
+++ b/vendor/composer/InstalledVersions.php
@@ -27,12 +27,23 @@ use Composer\Semver\VersionParser;
class InstalledVersions
{
/**
+ * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
+ * @internal
+ */
+ private static $selfDir = null;
+
+ /**
* @var mixed[]|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<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
*/
private static $installed;
/**
+ * @var bool
+ */
+ private static $installedIsLocalDir;
+
+ /**
* @var bool|null
*/
private static $canGetVendors;
@@ -309,6 +320,24 @@ class InstalledVersions
{
self::$installed = $data;
self::$installedByVendor = array();
+
+ // when using reload, we disable the duplicate protection to ensure that self::$installed data is
+ // always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not,
+ // so we have to assume it does not, and that may result in duplicate data being returned when listing
+ // all installed packages for example
+ self::$installedIsLocalDir = false;
+ }
+
+ /**
+ * @return string
+ */
+ private static function getSelfDir()
+ {
+ if (self::$selfDir === null) {
+ self::$selfDir = strtr(__DIR__, '\\', '/');
+ }
+
+ return self::$selfDir;
}
/**
@@ -322,19 +351,27 @@ class InstalledVersions
}
$installed = array();
+ $copiedLocalDir = false;
if (self::$canGetVendors) {
+ $selfDir = self::getSelfDir();
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
+ $vendorDir = strtr($vendorDir, '\\', '/');
if (isset(self::$installedByVendor[$vendorDir])) {
$installed[] = self::$installedByVendor[$vendorDir];
} elseif (is_file($vendorDir.'/composer/installed.php')) {
/** @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<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
$required = require $vendorDir.'/composer/installed.php';
- $installed[] = self::$installedByVendor[$vendorDir] = $required;
- if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
- self::$installed = $installed[count($installed) - 1];
+ self::$installedByVendor[$vendorDir] = $required;
+ $installed[] = $required;
+ if (self::$installed === null && $vendorDir.'/composer' === $selfDir) {
+ self::$installed = $required;
+ self::$installedIsLocalDir = true;
}
}
+ if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) {
+ $copiedLocalDir = true;
+ }
}
}
@@ -350,7 +387,7 @@ class InstalledVersions
}
}
- if (self::$installed !== array()) {
+ if (self::$installed !== array() && !$copiedLocalDir) {
$installed[] = self::$installed;
}
diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php
index 69ec2d8ca..b5fc26567 100644
--- a/vendor/composer/autoload_classmap.php
+++ b/vendor/composer/autoload_classmap.php
@@ -6,6 +6,36 @@ $vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
+ 'Bakame\\Http\\StructuredFields\\Bytes' => $vendorDir . '/bakame/http-structured-fields/src/Bytes.php',
+ 'Bakame\\Http\\StructuredFields\\DataType' => $vendorDir . '/bakame/http-structured-fields/src/DataType.php',
+ 'Bakame\\Http\\StructuredFields\\Dictionary' => $vendorDir . '/bakame/http-structured-fields/src/Dictionary.php',
+ 'Bakame\\Http\\StructuredFields\\DisplayString' => $vendorDir . '/bakame/http-structured-fields/src/DisplayString.php',
+ 'Bakame\\Http\\StructuredFields\\ForbiddenOperation' => $vendorDir . '/bakame/http-structured-fields/src/ForbiddenOperation.php',
+ 'Bakame\\Http\\StructuredFields\\Ietf' => $vendorDir . '/bakame/http-structured-fields/src/Ietf.php',
+ 'Bakame\\Http\\StructuredFields\\InnerList' => $vendorDir . '/bakame/http-structured-fields/src/InnerList.php',
+ 'Bakame\\Http\\StructuredFields\\InvalidArgument' => $vendorDir . '/bakame/http-structured-fields/src/InvalidArgument.php',
+ 'Bakame\\Http\\StructuredFields\\InvalidOffset' => $vendorDir . '/bakame/http-structured-fields/src/InvalidOffset.php',
+ 'Bakame\\Http\\StructuredFields\\Item' => $vendorDir . '/bakame/http-structured-fields/src/Item.php',
+ 'Bakame\\Http\\StructuredFields\\Key' => $vendorDir . '/bakame/http-structured-fields/src/Key.php',
+ 'Bakame\\Http\\StructuredFields\\Member' => $vendorDir . '/bakame/http-structured-fields/src/Member.php',
+ 'Bakame\\Http\\StructuredFields\\MissingFeature' => $vendorDir . '/bakame/http-structured-fields/src/MissingFeature.php',
+ 'Bakame\\Http\\StructuredFields\\OuterList' => $vendorDir . '/bakame/http-structured-fields/src/OuterList.php',
+ 'Bakame\\Http\\StructuredFields\\ParameterAccess' => $vendorDir . '/bakame/http-structured-fields/src/ParameterAccess.php',
+ 'Bakame\\Http\\StructuredFields\\Parameters' => $vendorDir . '/bakame/http-structured-fields/src/Parameters.php',
+ 'Bakame\\Http\\StructuredFields\\Parser' => $vendorDir . '/bakame/http-structured-fields/src/Parser.php',
+ 'Bakame\\Http\\StructuredFields\\StructuredFieldError' => $vendorDir . '/bakame/http-structured-fields/src/StructuredFieldError.php',
+ 'Bakame\\Http\\StructuredFields\\StructuredFieldProvider' => $vendorDir . '/bakame/http-structured-fields/src/StructuredFieldProvider.php',
+ 'Bakame\\Http\\StructuredFields\\SyntaxError' => $vendorDir . '/bakame/http-structured-fields/src/SyntaxError.php',
+ 'Bakame\\Http\\StructuredFields\\Token' => $vendorDir . '/bakame/http-structured-fields/src/Token.php',
+ 'Bakame\\Http\\StructuredFields\\Type' => $vendorDir . '/bakame/http-structured-fields/src/Type.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\ErrorCode' => $vendorDir . '/bakame/http-structured-fields/src/Validation/ErrorCode.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\ItemValidator' => $vendorDir . '/bakame/http-structured-fields/src/Validation/ItemValidator.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\ParametersValidator' => $vendorDir . '/bakame/http-structured-fields/src/Validation/ParametersValidator.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\Result' => $vendorDir . '/bakame/http-structured-fields/src/Validation/Result.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\ValidatedItem' => $vendorDir . '/bakame/http-structured-fields/src/Validation/ValidatedItem.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\ValidatedParameters' => $vendorDir . '/bakame/http-structured-fields/src/Validation/ValidatedParameters.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\Violation' => $vendorDir . '/bakame/http-structured-fields/src/Validation/Violation.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\ViolationList' => $vendorDir . '/bakame/http-structured-fields/src/Validation/ViolationList.php',
'Brick\\Math\\BigDecimal' => $vendorDir . '/brick/math/src/BigDecimal.php',
'Brick\\Math\\BigInteger' => $vendorDir . '/brick/math/src/BigInteger.php',
'Brick\\Math\\BigNumber' => $vendorDir . '/brick/math/src/BigNumber.php',
@@ -21,7 +51,6 @@ return array(
'Brick\\Math\\Internal\\Calculator\\GmpCalculator' => $vendorDir . '/brick/math/src/Internal/Calculator/GmpCalculator.php',
'Brick\\Math\\Internal\\Calculator\\NativeCalculator' => $vendorDir . '/brick/math/src/Internal/Calculator/NativeCalculator.php',
'Brick\\Math\\RoundingMode' => $vendorDir . '/brick/math/src/RoundingMode.php',
- 'CURLStringFile' => $vendorDir . '/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php',
'CommerceGuys\\Intl\\Calculator' => $vendorDir . '/commerceguys/intl/src/Calculator.php',
'CommerceGuys\\Intl\\Currency\\Currency' => $vendorDir . '/commerceguys/intl/src/Currency/Currency.php',
'CommerceGuys\\Intl\\Currency\\CurrencyRepository' => $vendorDir . '/commerceguys/intl/src/Currency/CurrencyRepository.php',
@@ -45,6 +74,37 @@ return array(
'CommerceGuys\\Intl\\NumberFormat\\NumberFormatRepository' => $vendorDir . '/commerceguys/intl/src/NumberFormat/NumberFormatRepository.php',
'CommerceGuys\\Intl\\NumberFormat\\NumberFormatRepositoryInterface' => $vendorDir . '/commerceguys/intl/src/NumberFormat/NumberFormatRepositoryInterface.php',
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
+ 'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php',
+ 'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php',
+ 'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php',
+ 'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php',
+ 'GuzzleHttp\\Psr7\\Exception\\MalformedUriException' => $vendorDir . '/guzzlehttp/psr7/src/Exception/MalformedUriException.php',
+ 'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php',
+ 'GuzzleHttp\\Psr7\\Header' => $vendorDir . '/guzzlehttp/psr7/src/Header.php',
+ 'GuzzleHttp\\Psr7\\HttpFactory' => $vendorDir . '/guzzlehttp/psr7/src/HttpFactory.php',
+ 'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php',
+ 'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php',
+ 'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php',
+ 'GuzzleHttp\\Psr7\\Message' => $vendorDir . '/guzzlehttp/psr7/src/Message.php',
+ 'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php',
+ 'GuzzleHttp\\Psr7\\MimeType' => $vendorDir . '/guzzlehttp/psr7/src/MimeType.php',
+ 'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php',
+ 'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php',
+ 'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php',
+ 'GuzzleHttp\\Psr7\\Query' => $vendorDir . '/guzzlehttp/psr7/src/Query.php',
+ 'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php',
+ 'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php',
+ 'GuzzleHttp\\Psr7\\Rfc7230' => $vendorDir . '/guzzlehttp/psr7/src/Rfc7230.php',
+ 'GuzzleHttp\\Psr7\\ServerRequest' => $vendorDir . '/guzzlehttp/psr7/src/ServerRequest.php',
+ 'GuzzleHttp\\Psr7\\Stream' => $vendorDir . '/guzzlehttp/psr7/src/Stream.php',
+ 'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => $vendorDir . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
+ 'GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php',
+ 'GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php',
+ 'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php',
+ 'GuzzleHttp\\Psr7\\UriComparator' => $vendorDir . '/guzzlehttp/psr7/src/UriComparator.php',
+ 'GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php',
+ 'GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php',
+ 'GuzzleHttp\\Psr7\\Utils' => $vendorDir . '/guzzlehttp/psr7/src/Utils.php',
'HTMLPurifier' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.php',
'HTMLPurifier_Arborize' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Arborize.php',
'HTMLPurifier_AttrCollections' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrCollections.php',
@@ -67,6 +127,7 @@ return array(
'HTMLPurifier_AttrDef_CSS_Multiple' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php',
'HTMLPurifier_AttrDef_CSS_Number' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php',
'HTMLPurifier_AttrDef_CSS_Percentage' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php',
+ 'HTMLPurifier_AttrDef_CSS_Ratio' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ratio.php',
'HTMLPurifier_AttrDef_CSS_TextDecoration' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php',
'HTMLPurifier_AttrDef_CSS_URI' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php',
'HTMLPurifier_AttrDef_Clone' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php',
@@ -276,6 +337,8 @@ return array(
'HTMLPurifier_VarParser_Flexible' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php',
'HTMLPurifier_VarParser_Native' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php',
'HTMLPurifier_Zipper' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Zipper.php',
+ 'HttpSignature\\HttpMessageSigner' => $vendorDir . '/macgirvin/http-message-signer/src/HttpMessageSigner.php',
+ 'HttpSignature\\StructuredFieldTypes' => $vendorDir . '/macgirvin/http-message-signer/src/StructuredFieldTypes.php',
'ID3Parser\\ID3Parser' => $vendorDir . '/lukasreschke/id3parser/src/ID3Parser.php',
'ID3Parser\\getID3\\Tags\\getid3_id3v1' => $vendorDir . '/lukasreschke/id3parser/src/getID3/Tags/getid3_id3v1.php',
'ID3Parser\\getID3\\Tags\\getid3_id3v2' => $vendorDir . '/lukasreschke/id3parser/src/getID3/Tags/getid3_id3v2.php',
@@ -316,6 +379,53 @@ return array(
'League\\HTMLToMarkdown\\HtmlConverter' => $vendorDir . '/league/html-to-markdown/src/HtmlConverter.php',
'League\\HTMLToMarkdown\\HtmlConverterInterface' => $vendorDir . '/league/html-to-markdown/src/HtmlConverterInterface.php',
'League\\HTMLToMarkdown\\PreConverterInterface' => $vendorDir . '/league/html-to-markdown/src/PreConverterInterface.php',
+ 'League\\Uri\\BaseUri' => $vendorDir . '/league/uri/BaseUri.php',
+ 'League\\Uri\\Contracts\\AuthorityInterface' => $vendorDir . '/league/uri-interfaces/Contracts/AuthorityInterface.php',
+ 'League\\Uri\\Contracts\\DataPathInterface' => $vendorDir . '/league/uri-interfaces/Contracts/DataPathInterface.php',
+ 'League\\Uri\\Contracts\\DomainHostInterface' => $vendorDir . '/league/uri-interfaces/Contracts/DomainHostInterface.php',
+ 'League\\Uri\\Contracts\\FragmentInterface' => $vendorDir . '/league/uri-interfaces/Contracts/FragmentInterface.php',
+ 'League\\Uri\\Contracts\\HostInterface' => $vendorDir . '/league/uri-interfaces/Contracts/HostInterface.php',
+ 'League\\Uri\\Contracts\\IpHostInterface' => $vendorDir . '/league/uri-interfaces/Contracts/IpHostInterface.php',
+ 'League\\Uri\\Contracts\\PathInterface' => $vendorDir . '/league/uri-interfaces/Contracts/PathInterface.php',
+ 'League\\Uri\\Contracts\\PortInterface' => $vendorDir . '/league/uri-interfaces/Contracts/PortInterface.php',
+ 'League\\Uri\\Contracts\\QueryInterface' => $vendorDir . '/league/uri-interfaces/Contracts/QueryInterface.php',
+ 'League\\Uri\\Contracts\\SegmentedPathInterface' => $vendorDir . '/league/uri-interfaces/Contracts/SegmentedPathInterface.php',
+ 'League\\Uri\\Contracts\\UriAccess' => $vendorDir . '/league/uri-interfaces/Contracts/UriAccess.php',
+ 'League\\Uri\\Contracts\\UriComponentInterface' => $vendorDir . '/league/uri-interfaces/Contracts/UriComponentInterface.php',
+ 'League\\Uri\\Contracts\\UriException' => $vendorDir . '/league/uri-interfaces/Contracts/UriException.php',
+ 'League\\Uri\\Contracts\\UriInterface' => $vendorDir . '/league/uri-interfaces/Contracts/UriInterface.php',
+ 'League\\Uri\\Contracts\\UserInfoInterface' => $vendorDir . '/league/uri-interfaces/Contracts/UserInfoInterface.php',
+ 'League\\Uri\\Encoder' => $vendorDir . '/league/uri-interfaces/Encoder.php',
+ 'League\\Uri\\Exceptions\\ConversionFailed' => $vendorDir . '/league/uri-interfaces/Exceptions/ConversionFailed.php',
+ 'League\\Uri\\Exceptions\\MissingFeature' => $vendorDir . '/league/uri-interfaces/Exceptions/MissingFeature.php',
+ 'League\\Uri\\Exceptions\\OffsetOutOfBounds' => $vendorDir . '/league/uri-interfaces/Exceptions/OffsetOutOfBounds.php',
+ 'League\\Uri\\Exceptions\\SyntaxError' => $vendorDir . '/league/uri-interfaces/Exceptions/SyntaxError.php',
+ 'League\\Uri\\FeatureDetection' => $vendorDir . '/league/uri-interfaces/FeatureDetection.php',
+ 'League\\Uri\\Http' => $vendorDir . '/league/uri/Http.php',
+ 'League\\Uri\\HttpFactory' => $vendorDir . '/league/uri/HttpFactory.php',
+ 'League\\Uri\\IPv4\\BCMathCalculator' => $vendorDir . '/league/uri-interfaces/IPv4/BCMathCalculator.php',
+ 'League\\Uri\\IPv4\\Calculator' => $vendorDir . '/league/uri-interfaces/IPv4/Calculator.php',
+ 'League\\Uri\\IPv4\\Converter' => $vendorDir . '/league/uri-interfaces/IPv4/Converter.php',
+ 'League\\Uri\\IPv4\\GMPCalculator' => $vendorDir . '/league/uri-interfaces/IPv4/GMPCalculator.php',
+ 'League\\Uri\\IPv4\\NativeCalculator' => $vendorDir . '/league/uri-interfaces/IPv4/NativeCalculator.php',
+ 'League\\Uri\\IPv6\\Converter' => $vendorDir . '/league/uri-interfaces/IPv6/Converter.php',
+ 'League\\Uri\\Idna\\Converter' => $vendorDir . '/league/uri-interfaces/Idna/Converter.php',
+ 'League\\Uri\\Idna\\Error' => $vendorDir . '/league/uri-interfaces/Idna/Error.php',
+ 'League\\Uri\\Idna\\Option' => $vendorDir . '/league/uri-interfaces/Idna/Option.php',
+ 'League\\Uri\\Idna\\Result' => $vendorDir . '/league/uri-interfaces/Idna/Result.php',
+ 'League\\Uri\\KeyValuePair\\Converter' => $vendorDir . '/league/uri-interfaces/KeyValuePair/Converter.php',
+ 'League\\Uri\\QueryString' => $vendorDir . '/league/uri-interfaces/QueryString.php',
+ 'League\\Uri\\Uri' => $vendorDir . '/league/uri/Uri.php',
+ 'League\\Uri\\UriInfo' => $vendorDir . '/league/uri/UriInfo.php',
+ 'League\\Uri\\UriResolver' => $vendorDir . '/league/uri/UriResolver.php',
+ 'League\\Uri\\UriString' => $vendorDir . '/league/uri-interfaces/UriString.php',
+ 'League\\Uri\\UriTemplate' => $vendorDir . '/league/uri/UriTemplate.php',
+ 'League\\Uri\\UriTemplate\\Expression' => $vendorDir . '/league/uri/UriTemplate/Expression.php',
+ 'League\\Uri\\UriTemplate\\Operator' => $vendorDir . '/league/uri/UriTemplate/Operator.php',
+ 'League\\Uri\\UriTemplate\\Template' => $vendorDir . '/league/uri/UriTemplate/Template.php',
+ 'League\\Uri\\UriTemplate\\TemplateCanNotBeExpanded' => $vendorDir . '/league/uri/UriTemplate/TemplateCanNotBeExpanded.php',
+ 'League\\Uri\\UriTemplate\\VarSpecifier' => $vendorDir . '/league/uri/UriTemplate/VarSpecifier.php',
+ 'League\\Uri\\UriTemplate\\VariableBag' => $vendorDir . '/league/uri/UriTemplate/VariableBag.php',
'Michelf\\Markdown' => $vendorDir . '/michelf/php-markdown/Michelf/Markdown.php',
'Michelf\\MarkdownExtra' => $vendorDir . '/michelf/php-markdown/Michelf/MarkdownExtra.php',
'Michelf\\MarkdownInterface' => $vendorDir . '/michelf/php-markdown/Michelf/MarkdownInterface.php',
@@ -395,6 +505,7 @@ return array(
'OTPHP\\FactoryInterface' => $vendorDir . '/spomky-labs/otphp/src/FactoryInterface.php',
'OTPHP\\HOTP' => $vendorDir . '/spomky-labs/otphp/src/HOTP.php',
'OTPHP\\HOTPInterface' => $vendorDir . '/spomky-labs/otphp/src/HOTPInterface.php',
+ 'OTPHP\\InternalClock' => $vendorDir . '/spomky-labs/otphp/src/InternalClock.php',
'OTPHP\\OTP' => $vendorDir . '/spomky-labs/otphp/src/OTP.php',
'OTPHP\\OTPInterface' => $vendorDir . '/spomky-labs/otphp/src/OTPInterface.php',
'OTPHP\\ParameterTrait' => $vendorDir . '/spomky-labs/otphp/src/ParameterTrait.php',
@@ -412,6 +523,20 @@ return array(
'ParagonIE\\ConstantTime\\Encoding' => $vendorDir . '/paragonie/constant_time_encoding/src/Encoding.php',
'ParagonIE\\ConstantTime\\Hex' => $vendorDir . '/paragonie/constant_time_encoding/src/Hex.php',
'ParagonIE\\ConstantTime\\RFC4648' => $vendorDir . '/paragonie/constant_time_encoding/src/RFC4648.php',
+ 'Psr\\Clock\\ClockInterface' => $vendorDir . '/psr/clock/src/ClockInterface.php',
+ 'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php',
+ 'Psr\\Http\\Message\\RequestFactoryInterface' => $vendorDir . '/psr/http-factory/src/RequestFactoryInterface.php',
+ 'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php',
+ 'Psr\\Http\\Message\\ResponseFactoryInterface' => $vendorDir . '/psr/http-factory/src/ResponseFactoryInterface.php',
+ 'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php',
+ 'Psr\\Http\\Message\\ServerRequestFactoryInterface' => $vendorDir . '/psr/http-factory/src/ServerRequestFactoryInterface.php',
+ 'Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php',
+ 'Psr\\Http\\Message\\StreamFactoryInterface' => $vendorDir . '/psr/http-factory/src/StreamFactoryInterface.php',
+ 'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php',
+ 'Psr\\Http\\Message\\UploadedFileFactoryInterface' => $vendorDir . '/psr/http-factory/src/UploadedFileFactoryInterface.php',
+ 'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php',
+ 'Psr\\Http\\Message\\UriFactoryInterface' => $vendorDir . '/psr/http-factory/src/UriFactoryInterface.php',
+ 'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php',
'Psr\\Log\\AbstractLogger' => $vendorDir . '/psr/log/src/AbstractLogger.php',
'Psr\\Log\\InvalidArgumentException' => $vendorDir . '/psr/log/src/InvalidArgumentException.php',
'Psr\\Log\\LogLevel' => $vendorDir . '/psr/log/src/LogLevel.php',
@@ -428,13 +553,13 @@ return array(
'Ramsey\\Collection\\CollectionInterface' => $vendorDir . '/ramsey/collection/src/CollectionInterface.php',
'Ramsey\\Collection\\DoubleEndedQueue' => $vendorDir . '/ramsey/collection/src/DoubleEndedQueue.php',
'Ramsey\\Collection\\DoubleEndedQueueInterface' => $vendorDir . '/ramsey/collection/src/DoubleEndedQueueInterface.php',
+ 'Ramsey\\Collection\\Exception\\CollectionException' => $vendorDir . '/ramsey/collection/src/Exception/CollectionException.php',
'Ramsey\\Collection\\Exception\\CollectionMismatchException' => $vendorDir . '/ramsey/collection/src/Exception/CollectionMismatchException.php',
'Ramsey\\Collection\\Exception\\InvalidArgumentException' => $vendorDir . '/ramsey/collection/src/Exception/InvalidArgumentException.php',
- 'Ramsey\\Collection\\Exception\\InvalidSortOrderException' => $vendorDir . '/ramsey/collection/src/Exception/InvalidSortOrderException.php',
+ 'Ramsey\\Collection\\Exception\\InvalidPropertyOrMethod' => $vendorDir . '/ramsey/collection/src/Exception/InvalidPropertyOrMethod.php',
'Ramsey\\Collection\\Exception\\NoSuchElementException' => $vendorDir . '/ramsey/collection/src/Exception/NoSuchElementException.php',
'Ramsey\\Collection\\Exception\\OutOfBoundsException' => $vendorDir . '/ramsey/collection/src/Exception/OutOfBoundsException.php',
'Ramsey\\Collection\\Exception\\UnsupportedOperationException' => $vendorDir . '/ramsey/collection/src/Exception/UnsupportedOperationException.php',
- 'Ramsey\\Collection\\Exception\\ValueExtractionException' => $vendorDir . '/ramsey/collection/src/Exception/ValueExtractionException.php',
'Ramsey\\Collection\\GenericArray' => $vendorDir . '/ramsey/collection/src/GenericArray.php',
'Ramsey\\Collection\\Map\\AbstractMap' => $vendorDir . '/ramsey/collection/src/Map/AbstractMap.php',
'Ramsey\\Collection\\Map\\AbstractTypedMap' => $vendorDir . '/ramsey/collection/src/Map/AbstractTypedMap.php',
@@ -446,6 +571,7 @@ return array(
'Ramsey\\Collection\\Queue' => $vendorDir . '/ramsey/collection/src/Queue.php',
'Ramsey\\Collection\\QueueInterface' => $vendorDir . '/ramsey/collection/src/QueueInterface.php',
'Ramsey\\Collection\\Set' => $vendorDir . '/ramsey/collection/src/Set.php',
+ 'Ramsey\\Collection\\Sort' => $vendorDir . '/ramsey/collection/src/Sort.php',
'Ramsey\\Collection\\Tool\\TypeTrait' => $vendorDir . '/ramsey/collection/src/Tool/TypeTrait.php',
'Ramsey\\Collection\\Tool\\ValueExtractorTrait' => $vendorDir . '/ramsey/collection/src/Tool/ValueExtractorTrait.php',
'Ramsey\\Collection\\Tool\\ValueToStringTrait' => $vendorDir . '/ramsey/collection/src/Tool/ValueToStringTrait.php',
@@ -561,7 +687,6 @@ return array(
'Ramsey\\Uuid\\UuidInterface' => $vendorDir . '/ramsey/uuid/src/UuidInterface.php',
'Ramsey\\Uuid\\Validator\\GenericValidator' => $vendorDir . '/ramsey/uuid/src/Validator/GenericValidator.php',
'Ramsey\\Uuid\\Validator\\ValidatorInterface' => $vendorDir . '/ramsey/uuid/src/Validator/ValidatorInterface.php',
- 'ReturnTypeWillChange' => $vendorDir . '/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php',
'Sabre\\CalDAV\\Backend\\AbstractBackend' => $vendorDir . '/sabre/dav/lib/CalDAV/Backend/AbstractBackend.php',
'Sabre\\CalDAV\\Backend\\BackendInterface' => $vendorDir . '/sabre/dav/lib/CalDAV/Backend/BackendInterface.php',
'Sabre\\CalDAV\\Backend\\NotificationSupport' => $vendorDir . '/sabre/dav/lib/CalDAV/Backend/NotificationSupport.php',
@@ -914,55 +1039,282 @@ return array(
'Sabre\\Xml\\Writer' => $vendorDir . '/sabre/xml/lib/Writer.php',
'Sabre\\Xml\\XmlDeserializable' => $vendorDir . '/sabre/xml/lib/XmlDeserializable.php',
'Sabre\\Xml\\XmlSerializable' => $vendorDir . '/sabre/xml/lib/XmlSerializable.php',
- 'ScssPhp\\ScssPhp\\Base\\Range' => $vendorDir . '/scssphp/scssphp/src/Base/Range.php',
- 'ScssPhp\\ScssPhp\\Block' => $vendorDir . '/scssphp/scssphp/src/Block.php',
- 'ScssPhp\\ScssPhp\\Block\\AtRootBlock' => $vendorDir . '/scssphp/scssphp/src/Block/AtRootBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\CallableBlock' => $vendorDir . '/scssphp/scssphp/src/Block/CallableBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\ContentBlock' => $vendorDir . '/scssphp/scssphp/src/Block/ContentBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\DirectiveBlock' => $vendorDir . '/scssphp/scssphp/src/Block/DirectiveBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\EachBlock' => $vendorDir . '/scssphp/scssphp/src/Block/EachBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\ElseBlock' => $vendorDir . '/scssphp/scssphp/src/Block/ElseBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\ElseifBlock' => $vendorDir . '/scssphp/scssphp/src/Block/ElseifBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\ForBlock' => $vendorDir . '/scssphp/scssphp/src/Block/ForBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\IfBlock' => $vendorDir . '/scssphp/scssphp/src/Block/IfBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\MediaBlock' => $vendorDir . '/scssphp/scssphp/src/Block/MediaBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\NestedPropertyBlock' => $vendorDir . '/scssphp/scssphp/src/Block/NestedPropertyBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\WhileBlock' => $vendorDir . '/scssphp/scssphp/src/Block/WhileBlock.php',
- 'ScssPhp\\ScssPhp\\Cache' => $vendorDir . '/scssphp/scssphp/src/Cache.php',
+ 'ScssPhp\\ScssPhp\\Ast\\AstNode' => $vendorDir . '/scssphp/scssphp/src/Ast/AstNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssAtRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssAtRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssComment' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssComment.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssDeclaration' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssImport' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssImport.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssKeyframeBlock' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssKeyframeBlock.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssMediaQuery' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssMediaQuery.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssMediaRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssMediaRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssNode' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssParentNode' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssParentNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssStyleRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssStyleRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssStylesheet' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssStylesheet.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssSupportsRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssSupportsRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssValue' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/CssValue.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\IsInvisibleVisitor' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/IsInvisibleVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\MediaQueryMergeResult' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/MediaQueryMergeResult.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\MediaQuerySingletonMergeResult' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/MediaQuerySingletonMergeResult.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssAtRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/ModifiableCssAtRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssComment' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/ModifiableCssComment.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssDeclaration' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/ModifiableCssDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssImport' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/ModifiableCssImport.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssKeyframeBlock' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/ModifiableCssKeyframeBlock.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssMediaRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/ModifiableCssMediaRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssNode' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/ModifiableCssNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssParentNode' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/ModifiableCssParentNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssStyleRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/ModifiableCssStyleRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssStylesheet' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/ModifiableCssStylesheet.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssSupportsRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Css/ModifiableCssSupportsRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\FakeAstNode' => $vendorDir . '/scssphp/scssphp/src/Ast/FakeAstNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Argument' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Argument.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\ArgumentDeclaration' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/ArgumentDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\ArgumentInvocation' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/ArgumentInvocation.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\AtRootQuery' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/AtRootQuery.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\CallableInvocation' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/CallableInvocation.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\ConfiguredVariable' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/ConfiguredVariable.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\BinaryOperationExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/BinaryOperationExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\BinaryOperator' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/BinaryOperator.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\BooleanExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/BooleanExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\ColorExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/ColorExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\FunctionExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/FunctionExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\IfExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/IfExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\InterpolatedFunctionExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/InterpolatedFunctionExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\IsCalculationSafeVisitor' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/IsCalculationSafeVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\ListExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/ListExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\MapExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/MapExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\NullExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/NullExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\NumberExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/NumberExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\ParenthesizedExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/ParenthesizedExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\SelectorExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/SelectorExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\StringExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/StringExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\SupportsExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/SupportsExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\UnaryOperationExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/UnaryOperationExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\UnaryOperator' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/UnaryOperator.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\ValueExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/ValueExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\VariableExpression' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Expression/VariableExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Import' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Import.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Import\\DynamicImport' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Import/DynamicImport.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Import\\StaticImport' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Import/StaticImport.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Interpolation' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Interpolation.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SassDeclaration' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/SassDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SassNode' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/SassNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SassReference' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/SassReference.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\AtRootRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/AtRootRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\AtRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/AtRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\CallableDeclaration' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/CallableDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ContentBlock' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/ContentBlock.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ContentRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/ContentRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\DebugRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/DebugRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\Declaration' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/Declaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\EachRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/EachRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ElseClause' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/ElseClause.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ErrorRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/ErrorRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ExtendRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/ExtendRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ForRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/ForRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\FunctionRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/FunctionRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\HasContentVisitor' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/HasContentVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\IfClause' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/IfClause.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\IfRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/IfRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\IfRuleClause' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/IfRuleClause.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ImportRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/ImportRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\IncludeRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/IncludeRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\LoudComment' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/LoudComment.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\MediaRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/MediaRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\MixinRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/MixinRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ParentStatement' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/ParentStatement.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ReturnRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/ReturnRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\SilentComment' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/SilentComment.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\StyleRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/StyleRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\Stylesheet' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/Stylesheet.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\SupportsRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/SupportsRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\VariableDeclaration' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/VariableDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\WarnRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/WarnRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\WhileRule' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/Statement/WhileRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition\\SupportsAnything' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsAnything.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition\\SupportsDeclaration' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition\\SupportsFunction' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsFunction.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition\\SupportsInterpolation' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsInterpolation.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition\\SupportsNegation' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsNegation.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition\\SupportsOperation' => $vendorDir . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsOperation.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\AttributeOperator' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/AttributeOperator.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\AttributeSelector' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/AttributeSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\ClassSelector' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/ClassSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\Combinator' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/Combinator.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\ComplexSelector' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/ComplexSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\ComplexSelectorComponent' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/ComplexSelectorComponent.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\CompoundSelector' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/CompoundSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\IDSelector' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/IDSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\IsBogusVisitor' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/IsBogusVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\IsInvisibleVisitor' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/IsInvisibleVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\IsUselessVisitor' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/IsUselessVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\ParentSelector' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/ParentSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\ParentSelectorVisitor' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/ParentSelectorVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\PlaceholderSelector' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/PlaceholderSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\PseudoSelector' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/PseudoSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\QualifiedName' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/QualifiedName.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\Selector' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/Selector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\SelectorList' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/SelectorList.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\SimpleSelector' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/SimpleSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\TypeSelector' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/TypeSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\UniversalSelector' => $vendorDir . '/scssphp/scssphp/src/Ast/Selector/UniversalSelector.php',
+ 'ScssPhp\\ScssPhp\\Collection\\Map' => $vendorDir . '/scssphp/scssphp/src/Collection/Map.php',
'ScssPhp\\ScssPhp\\Colors' => $vendorDir . '/scssphp/scssphp/src/Colors.php',
'ScssPhp\\ScssPhp\\CompilationResult' => $vendorDir . '/scssphp/scssphp/src/CompilationResult.php',
'ScssPhp\\ScssPhp\\Compiler' => $vendorDir . '/scssphp/scssphp/src/Compiler.php',
- 'ScssPhp\\ScssPhp\\Compiler\\CachedResult' => $vendorDir . '/scssphp/scssphp/src/Compiler/CachedResult.php',
- 'ScssPhp\\ScssPhp\\Compiler\\Environment' => $vendorDir . '/scssphp/scssphp/src/Compiler/Environment.php',
- 'ScssPhp\\ScssPhp\\Exception\\CompilerException' => $vendorDir . '/scssphp/scssphp/src/Exception/CompilerException.php',
- 'ScssPhp\\ScssPhp\\Exception\\ParserException' => $vendorDir . '/scssphp/scssphp/src/Exception/ParserException.php',
- 'ScssPhp\\ScssPhp\\Exception\\RangeException' => $vendorDir . '/scssphp/scssphp/src/Exception/RangeException.php',
+ 'ScssPhp\\ScssPhp\\Compiler\\LegacyValueVisitor' => $vendorDir . '/scssphp/scssphp/src/Compiler/LegacyValueVisitor.php',
+ 'ScssPhp\\ScssPhp\\Deprecation' => $vendorDir . '/scssphp/scssphp/src/Deprecation.php',
+ 'ScssPhp\\ScssPhp\\DeprecationStatus' => $vendorDir . '/scssphp/scssphp/src/DeprecationStatus.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\ArgumentResults' => $vendorDir . '/scssphp/scssphp/src/Evaluation/ArgumentResults.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\Environment' => $vendorDir . '/scssphp/scssphp/src/Evaluation/Environment.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\EvaluateResult' => $vendorDir . '/scssphp/scssphp/src/Evaluation/EvaluateResult.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\EvaluateVisitor' => $vendorDir . '/scssphp/scssphp/src/Evaluation/EvaluateVisitor.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\EvaluationContext' => $vendorDir . '/scssphp/scssphp/src/Evaluation/EvaluationContext.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\LoadedStylesheet' => $vendorDir . '/scssphp/scssphp/src/Evaluation/LoadedStylesheet.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\VisitorEvaluationContext' => $vendorDir . '/scssphp/scssphp/src/Evaluation/VisitorEvaluationContext.php',
+ 'ScssPhp\\ScssPhp\\Exception\\MultiSpanSassException' => $vendorDir . '/scssphp/scssphp/src/Exception/MultiSpanSassException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\MultiSpanSassFormatException' => $vendorDir . '/scssphp/scssphp/src/Exception/MultiSpanSassFormatException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\MultiSpanSassRuntimeException' => $vendorDir . '/scssphp/scssphp/src/Exception/MultiSpanSassRuntimeException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\MultiSpanSassScriptException' => $vendorDir . '/scssphp/scssphp/src/Exception/MultiSpanSassScriptException.php',
'ScssPhp\\ScssPhp\\Exception\\SassException' => $vendorDir . '/scssphp/scssphp/src/Exception/SassException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\SassFormatException' => $vendorDir . '/scssphp/scssphp/src/Exception/SassFormatException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\SassRuntimeException' => $vendorDir . '/scssphp/scssphp/src/Exception/SassRuntimeException.php',
'ScssPhp\\ScssPhp\\Exception\\SassScriptException' => $vendorDir . '/scssphp/scssphp/src/Exception/SassScriptException.php',
- 'ScssPhp\\ScssPhp\\Exception\\ServerException' => $vendorDir . '/scssphp/scssphp/src/Exception/ServerException.php',
- 'ScssPhp\\ScssPhp\\Formatter' => $vendorDir . '/scssphp/scssphp/src/Formatter.php',
- 'ScssPhp\\ScssPhp\\Formatter\\Compact' => $vendorDir . '/scssphp/scssphp/src/Formatter/Compact.php',
- 'ScssPhp\\ScssPhp\\Formatter\\Compressed' => $vendorDir . '/scssphp/scssphp/src/Formatter/Compressed.php',
- 'ScssPhp\\ScssPhp\\Formatter\\Crunched' => $vendorDir . '/scssphp/scssphp/src/Formatter/Crunched.php',
- 'ScssPhp\\ScssPhp\\Formatter\\Debug' => $vendorDir . '/scssphp/scssphp/src/Formatter/Debug.php',
- 'ScssPhp\\ScssPhp\\Formatter\\Expanded' => $vendorDir . '/scssphp/scssphp/src/Formatter/Expanded.php',
- 'ScssPhp\\ScssPhp\\Formatter\\Nested' => $vendorDir . '/scssphp/scssphp/src/Formatter/Nested.php',
- 'ScssPhp\\ScssPhp\\Formatter\\OutputBlock' => $vendorDir . '/scssphp/scssphp/src/Formatter/OutputBlock.php',
+ 'ScssPhp\\ScssPhp\\Exception\\SimpleSassException' => $vendorDir . '/scssphp/scssphp/src/Exception/SimpleSassException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\SimpleSassFormatException' => $vendorDir . '/scssphp/scssphp/src/Exception/SimpleSassFormatException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\SimpleSassRuntimeException' => $vendorDir . '/scssphp/scssphp/src/Exception/SimpleSassRuntimeException.php',
+ 'ScssPhp\\ScssPhp\\Extend\\ComplexSelectorMap' => $vendorDir . '/scssphp/scssphp/src/Extend/ComplexSelectorMap.php',
+ 'ScssPhp\\ScssPhp\\Extend\\ConcreteExtensionStore' => $vendorDir . '/scssphp/scssphp/src/Extend/ConcreteExtensionStore.php',
+ 'ScssPhp\\ScssPhp\\Extend\\EmptyExtensionStore' => $vendorDir . '/scssphp/scssphp/src/Extend/EmptyExtensionStore.php',
+ 'ScssPhp\\ScssPhp\\Extend\\ExtendMode' => $vendorDir . '/scssphp/scssphp/src/Extend/ExtendMode.php',
+ 'ScssPhp\\ScssPhp\\Extend\\ExtendUtil' => $vendorDir . '/scssphp/scssphp/src/Extend/ExtendUtil.php',
+ 'ScssPhp\\ScssPhp\\Extend\\Extender' => $vendorDir . '/scssphp/scssphp/src/Extend/Extender.php',
+ 'ScssPhp\\ScssPhp\\Extend\\Extension' => $vendorDir . '/scssphp/scssphp/src/Extend/Extension.php',
+ 'ScssPhp\\ScssPhp\\Extend\\ExtensionStore' => $vendorDir . '/scssphp/scssphp/src/Extend/ExtensionStore.php',
+ 'ScssPhp\\ScssPhp\\Extend\\MergedExtension' => $vendorDir . '/scssphp/scssphp/src/Extend/MergedExtension.php',
+ 'ScssPhp\\ScssPhp\\Extend\\ObjectSet' => $vendorDir . '/scssphp/scssphp/src/Extend/ObjectSet.php',
+ 'ScssPhp\\ScssPhp\\Extend\\SimpleSelectorMap' => $vendorDir . '/scssphp/scssphp/src/Extend/SimpleSelectorMap.php',
+ 'ScssPhp\\ScssPhp\\Function\\ColorFunctions' => $vendorDir . '/scssphp/scssphp/src/Function/ColorFunctions.php',
+ 'ScssPhp\\ScssPhp\\Function\\FunctionRegistry' => $vendorDir . '/scssphp/scssphp/src/Function/FunctionRegistry.php',
+ 'ScssPhp\\ScssPhp\\Function\\ListFunctions' => $vendorDir . '/scssphp/scssphp/src/Function/ListFunctions.php',
+ 'ScssPhp\\ScssPhp\\Function\\MapFunctions' => $vendorDir . '/scssphp/scssphp/src/Function/MapFunctions.php',
+ 'ScssPhp\\ScssPhp\\Function\\MathFunctions' => $vendorDir . '/scssphp/scssphp/src/Function/MathFunctions.php',
+ 'ScssPhp\\ScssPhp\\Function\\MetaFunctions' => $vendorDir . '/scssphp/scssphp/src/Function/MetaFunctions.php',
+ 'ScssPhp\\ScssPhp\\Function\\SelectorFunctions' => $vendorDir . '/scssphp/scssphp/src/Function/SelectorFunctions.php',
+ 'ScssPhp\\ScssPhp\\Function\\StringFunctions' => $vendorDir . '/scssphp/scssphp/src/Function/StringFunctions.php',
+ 'ScssPhp\\ScssPhp\\Importer\\CanonicalizeContext' => $vendorDir . '/scssphp/scssphp/src/Importer/CanonicalizeContext.php',
+ 'ScssPhp\\ScssPhp\\Importer\\CanonicalizeResult' => $vendorDir . '/scssphp/scssphp/src/Importer/CanonicalizeResult.php',
+ 'ScssPhp\\ScssPhp\\Importer\\FilesystemImporter' => $vendorDir . '/scssphp/scssphp/src/Importer/FilesystemImporter.php',
+ 'ScssPhp\\ScssPhp\\Importer\\ImportCache' => $vendorDir . '/scssphp/scssphp/src/Importer/ImportCache.php',
+ 'ScssPhp\\ScssPhp\\Importer\\ImportContext' => $vendorDir . '/scssphp/scssphp/src/Importer/ImportContext.php',
+ 'ScssPhp\\ScssPhp\\Importer\\ImportUtil' => $vendorDir . '/scssphp/scssphp/src/Importer/ImportUtil.php',
+ 'ScssPhp\\ScssPhp\\Importer\\Importer' => $vendorDir . '/scssphp/scssphp/src/Importer/Importer.php',
+ 'ScssPhp\\ScssPhp\\Importer\\ImporterResult' => $vendorDir . '/scssphp/scssphp/src/Importer/ImporterResult.php',
+ 'ScssPhp\\ScssPhp\\Importer\\LegacyCallbackImporter' => $vendorDir . '/scssphp/scssphp/src/Importer/LegacyCallbackImporter.php',
+ 'ScssPhp\\ScssPhp\\Importer\\NoOpImporter' => $vendorDir . '/scssphp/scssphp/src/Importer/NoOpImporter.php',
+ 'ScssPhp\\ScssPhp\\Importer\\SpecialCacheValue' => $vendorDir . '/scssphp/scssphp/src/Importer/SpecialCacheValue.php',
+ 'ScssPhp\\ScssPhp\\Logger\\DeprecationProcessingLogger' => $vendorDir . '/scssphp/scssphp/src/Logger/DeprecationProcessingLogger.php',
'ScssPhp\\ScssPhp\\Logger\\LoggerInterface' => $vendorDir . '/scssphp/scssphp/src/Logger/LoggerInterface.php',
'ScssPhp\\ScssPhp\\Logger\\QuietLogger' => $vendorDir . '/scssphp/scssphp/src/Logger/QuietLogger.php',
'ScssPhp\\ScssPhp\\Logger\\StreamLogger' => $vendorDir . '/scssphp/scssphp/src/Logger/StreamLogger.php',
'ScssPhp\\ScssPhp\\Node' => $vendorDir . '/scssphp/scssphp/src/Node.php',
'ScssPhp\\ScssPhp\\Node\\Number' => $vendorDir . '/scssphp/scssphp/src/Node/Number.php',
'ScssPhp\\ScssPhp\\OutputStyle' => $vendorDir . '/scssphp/scssphp/src/OutputStyle.php',
- 'ScssPhp\\ScssPhp\\Parser' => $vendorDir . '/scssphp/scssphp/src/Parser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\AtRootQueryParser' => $vendorDir . '/scssphp/scssphp/src/Parser/AtRootQueryParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\CssParser' => $vendorDir . '/scssphp/scssphp/src/Parser/CssParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\FormatException' => $vendorDir . '/scssphp/scssphp/src/Parser/FormatException.php',
+ 'ScssPhp\\ScssPhp\\Parser\\InterpolationBuffer' => $vendorDir . '/scssphp/scssphp/src/Parser/InterpolationBuffer.php',
+ 'ScssPhp\\ScssPhp\\Parser\\InterpolationMap' => $vendorDir . '/scssphp/scssphp/src/Parser/InterpolationMap.php',
+ 'ScssPhp\\ScssPhp\\Parser\\KeyframeSelectorParser' => $vendorDir . '/scssphp/scssphp/src/Parser/KeyframeSelectorParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\LineScanner' => $vendorDir . '/scssphp/scssphp/src/Parser/LineScanner.php',
+ 'ScssPhp\\ScssPhp\\Parser\\MediaQueryParser' => $vendorDir . '/scssphp/scssphp/src/Parser/MediaQueryParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\MultiSourceFormatException' => $vendorDir . '/scssphp/scssphp/src/Parser/MultiSourceFormatException.php',
+ 'ScssPhp\\ScssPhp\\Parser\\Parser' => $vendorDir . '/scssphp/scssphp/src/Parser/Parser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\SassParser' => $vendorDir . '/scssphp/scssphp/src/Parser/SassParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\ScssParser' => $vendorDir . '/scssphp/scssphp/src/Parser/ScssParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\SelectorParser' => $vendorDir . '/scssphp/scssphp/src/Parser/SelectorParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\StringScanner' => $vendorDir . '/scssphp/scssphp/src/Parser/StringScanner.php',
+ 'ScssPhp\\ScssPhp\\Parser\\StylesheetParser' => $vendorDir . '/scssphp/scssphp/src/Parser/StylesheetParser.php',
+ 'ScssPhp\\ScssPhp\\SassCallable\\BuiltInCallable' => $vendorDir . '/scssphp/scssphp/src/SassCallable/BuiltInCallable.php',
+ 'ScssPhp\\ScssPhp\\SassCallable\\PlainCssCallable' => $vendorDir . '/scssphp/scssphp/src/SassCallable/PlainCssCallable.php',
+ 'ScssPhp\\ScssPhp\\SassCallable\\SassCallable' => $vendorDir . '/scssphp/scssphp/src/SassCallable/SassCallable.php',
+ 'ScssPhp\\ScssPhp\\SassCallable\\UserDefinedCallable' => $vendorDir . '/scssphp/scssphp/src/SassCallable/UserDefinedCallable.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\SerializeResult' => $vendorDir . '/scssphp/scssphp/src/Serializer/SerializeResult.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\SerializeVisitor' => $vendorDir . '/scssphp/scssphp/src/Serializer/SerializeVisitor.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\Serializer' => $vendorDir . '/scssphp/scssphp/src/Serializer/Serializer.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\SimpleStringBuffer' => $vendorDir . '/scssphp/scssphp/src/Serializer/SimpleStringBuffer.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\SourceMapBuffer' => $vendorDir . '/scssphp/scssphp/src/Serializer/SourceMapBuffer.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\StringBuffer' => $vendorDir . '/scssphp/scssphp/src/Serializer/StringBuffer.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\TrackingSourceMapBuffer' => $vendorDir . '/scssphp/scssphp/src/Serializer/TrackingSourceMapBuffer.php',
'ScssPhp\\ScssPhp\\SourceMap\\Base64' => $vendorDir . '/scssphp/scssphp/src/SourceMap/Base64.php',
'ScssPhp\\ScssPhp\\SourceMap\\Base64VLQ' => $vendorDir . '/scssphp/scssphp/src/SourceMap/Base64VLQ.php',
- 'ScssPhp\\ScssPhp\\SourceMap\\SourceMapGenerator' => $vendorDir . '/scssphp/scssphp/src/SourceMap/SourceMapGenerator.php',
+ 'ScssPhp\\ScssPhp\\SourceMap\\Builder\\Entry' => $vendorDir . '/scssphp/scssphp/src/SourceMap/Builder/Entry.php',
+ 'ScssPhp\\ScssPhp\\SourceMap\\SingleMapping' => $vendorDir . '/scssphp/scssphp/src/SourceMap/SingleMapping.php',
+ 'ScssPhp\\ScssPhp\\SourceMap\\TargetEntry' => $vendorDir . '/scssphp/scssphp/src/SourceMap/TargetEntry.php',
+ 'ScssPhp\\ScssPhp\\SourceMap\\TargetLineEntry' => $vendorDir . '/scssphp/scssphp/src/SourceMap/TargetLineEntry.php',
+ 'ScssPhp\\ScssPhp\\SourceSpan\\LazyFileSpan' => $vendorDir . '/scssphp/scssphp/src/SourceSpan/LazyFileSpan.php',
+ 'ScssPhp\\ScssPhp\\SourceSpan\\MultiSpan' => $vendorDir . '/scssphp/scssphp/src/SourceSpan/MultiSpan.php',
+ 'ScssPhp\\ScssPhp\\StackTrace\\Frame' => $vendorDir . '/scssphp/scssphp/src/StackTrace/Frame.php',
+ 'ScssPhp\\ScssPhp\\StackTrace\\Trace' => $vendorDir . '/scssphp/scssphp/src/StackTrace/Trace.php',
+ 'ScssPhp\\ScssPhp\\Syntax' => $vendorDir . '/scssphp/scssphp/src/Syntax.php',
'ScssPhp\\ScssPhp\\Type' => $vendorDir . '/scssphp/scssphp/src/Type.php',
'ScssPhp\\ScssPhp\\Util' => $vendorDir . '/scssphp/scssphp/src/Util.php',
+ 'ScssPhp\\ScssPhp\\Util\\ArrayUtil' => $vendorDir . '/scssphp/scssphp/src/Util/ArrayUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\AstUtil' => $vendorDir . '/scssphp/scssphp/src/Util/AstUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\Box' => $vendorDir . '/scssphp/scssphp/src/Util/Box.php',
+ 'ScssPhp\\ScssPhp\\Util\\Character' => $vendorDir . '/scssphp/scssphp/src/Util/Character.php',
+ 'ScssPhp\\ScssPhp\\Util\\Equatable' => $vendorDir . '/scssphp/scssphp/src/Util/Equatable.php',
+ 'ScssPhp\\ScssPhp\\Util\\EquatableUtil' => $vendorDir . '/scssphp/scssphp/src/Util/EquatableUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\ErrorUtil' => $vendorDir . '/scssphp/scssphp/src/Util/ErrorUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\IterableUtil' => $vendorDir . '/scssphp/scssphp/src/Util/IterableUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\ListUtil' => $vendorDir . '/scssphp/scssphp/src/Util/ListUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\LoggerUtil' => $vendorDir . '/scssphp/scssphp/src/Util/LoggerUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\MakeExpressionCalculationSafe' => $vendorDir . '/scssphp/scssphp/src/Util/MakeExpressionCalculationSafe.php',
+ 'ScssPhp\\ScssPhp\\Util\\ModifiableBox' => $vendorDir . '/scssphp/scssphp/src/Util/ModifiableBox.php',
+ 'ScssPhp\\ScssPhp\\Util\\NumberUtil' => $vendorDir . '/scssphp/scssphp/src/Util/NumberUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\ParserUtil' => $vendorDir . '/scssphp/scssphp/src/Util/ParserUtil.php',
'ScssPhp\\ScssPhp\\Util\\Path' => $vendorDir . '/scssphp/scssphp/src/Util/Path.php',
+ 'ScssPhp\\ScssPhp\\Util\\SpanUtil' => $vendorDir . '/scssphp/scssphp/src/Util/SpanUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\StringUtil' => $vendorDir . '/scssphp/scssphp/src/Util/StringUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\UriUtil' => $vendorDir . '/scssphp/scssphp/src/Util/UriUtil.php',
'ScssPhp\\ScssPhp\\ValueConverter' => $vendorDir . '/scssphp/scssphp/src/ValueConverter.php',
+ 'ScssPhp\\ScssPhp\\Value\\CalculationOperation' => $vendorDir . '/scssphp/scssphp/src/Value/CalculationOperation.php',
+ 'ScssPhp\\ScssPhp\\Value\\CalculationOperator' => $vendorDir . '/scssphp/scssphp/src/Value/CalculationOperator.php',
+ 'ScssPhp\\ScssPhp\\Value\\ColorFormat' => $vendorDir . '/scssphp/scssphp/src/Value/ColorFormat.php',
+ 'ScssPhp\\ScssPhp\\Value\\ColorFormatEnum' => $vendorDir . '/scssphp/scssphp/src/Value/ColorFormatEnum.php',
+ 'ScssPhp\\ScssPhp\\Value\\ComplexSassNumber' => $vendorDir . '/scssphp/scssphp/src/Value/ComplexSassNumber.php',
+ 'ScssPhp\\ScssPhp\\Value\\ListSeparator' => $vendorDir . '/scssphp/scssphp/src/Value/ListSeparator.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassArgumentList' => $vendorDir . '/scssphp/scssphp/src/Value/SassArgumentList.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassBoolean' => $vendorDir . '/scssphp/scssphp/src/Value/SassBoolean.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassCalculation' => $vendorDir . '/scssphp/scssphp/src/Value/SassCalculation.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassColor' => $vendorDir . '/scssphp/scssphp/src/Value/SassColor.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassFunction' => $vendorDir . '/scssphp/scssphp/src/Value/SassFunction.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassList' => $vendorDir . '/scssphp/scssphp/src/Value/SassList.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassMap' => $vendorDir . '/scssphp/scssphp/src/Value/SassMap.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassMixin' => $vendorDir . '/scssphp/scssphp/src/Value/SassMixin.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassNull' => $vendorDir . '/scssphp/scssphp/src/Value/SassNull.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassNumber' => $vendorDir . '/scssphp/scssphp/src/Value/SassNumber.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassString' => $vendorDir . '/scssphp/scssphp/src/Value/SassString.php',
+ 'ScssPhp\\ScssPhp\\Value\\SingleUnitSassNumber' => $vendorDir . '/scssphp/scssphp/src/Value/SingleUnitSassNumber.php',
+ 'ScssPhp\\ScssPhp\\Value\\SpanColorFormat' => $vendorDir . '/scssphp/scssphp/src/Value/SpanColorFormat.php',
+ 'ScssPhp\\ScssPhp\\Value\\UnitlessSassNumber' => $vendorDir . '/scssphp/scssphp/src/Value/UnitlessSassNumber.php',
+ 'ScssPhp\\ScssPhp\\Value\\Value' => $vendorDir . '/scssphp/scssphp/src/Value/Value.php',
'ScssPhp\\ScssPhp\\Version' => $vendorDir . '/scssphp/scssphp/src/Version.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\AnySelectorVisitor' => $vendorDir . '/scssphp/scssphp/src/Visitor/AnySelectorVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\CssVisitor' => $vendorDir . '/scssphp/scssphp/src/Visitor/CssVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\EveryCssVisitor' => $vendorDir . '/scssphp/scssphp/src/Visitor/EveryCssVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\ExpressionVisitor' => $vendorDir . '/scssphp/scssphp/src/Visitor/ExpressionVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\ModifiableCssVisitor' => $vendorDir . '/scssphp/scssphp/src/Visitor/ModifiableCssVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\ReplaceExpressionVisitor' => $vendorDir . '/scssphp/scssphp/src/Visitor/ReplaceExpressionVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\SelectorSearchVisitor' => $vendorDir . '/scssphp/scssphp/src/Visitor/SelectorSearchVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\SelectorVisitor' => $vendorDir . '/scssphp/scssphp/src/Visitor/SelectorVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\StatementSearchVisitor' => $vendorDir . '/scssphp/scssphp/src/Visitor/StatementSearchVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\StatementVisitor' => $vendorDir . '/scssphp/scssphp/src/Visitor/StatementVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\ValueVisitor' => $vendorDir . '/scssphp/scssphp/src/Visitor/ValueVisitor.php',
'ScssPhp\\ScssPhp\\Warn' => $vendorDir . '/scssphp/scssphp/src/Warn.php',
'SimplePie' => $vendorDir . '/simplepie/simplepie/library/SimplePie.php',
'SimplePie\\Author' => $vendorDir . '/simplepie/simplepie/src/Author.php',
@@ -1038,173 +1390,185 @@ return array(
'SimplePie_Source' => $vendorDir . '/simplepie/simplepie/library/SimplePie/Source.php',
'SimplePie_XML_Declaration_Parser' => $vendorDir . '/simplepie/simplepie/library/SimplePie/XML/Declaration/Parser.php',
'SimplePie_gzdecode' => $vendorDir . '/simplepie/simplepie/library/SimplePie/gzdecode.php',
- 'Smarty' => $vendorDir . '/smarty/smarty/libs/Smarty.class.php',
- 'SmartyCompilerException' => $vendorDir . '/smarty/smarty/libs/sysplugins/smartycompilerexception.php',
- 'SmartyException' => $vendorDir . '/smarty/smarty/libs/sysplugins/smartyexception.php',
- 'Smarty_Autoloader' => $vendorDir . '/smarty/smarty/libs/Autoloader.php',
- 'Smarty_CacheResource' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_cacheresource.php',
- 'Smarty_CacheResource_Custom' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_cacheresource_custom.php',
- 'Smarty_CacheResource_KeyValueStore' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_cacheresource_keyvaluestore.php',
- 'Smarty_Data' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_data.php',
- 'Smarty_Internal_Block' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_block.php',
- 'Smarty_Internal_CacheResource_File' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_cacheresource_file.php',
- 'Smarty_Internal_CompileBase' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compilebase.php',
- 'Smarty_Internal_Compile_Append' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_append.php',
- 'Smarty_Internal_Compile_Assign' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_assign.php',
- 'Smarty_Internal_Compile_Block' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_block.php',
- 'Smarty_Internal_Compile_Block_Child' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_block_child.php',
- 'Smarty_Internal_Compile_Block_Parent' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_block_parent.php',
- 'Smarty_Internal_Compile_Blockclose' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_block.php',
- 'Smarty_Internal_Compile_Break' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_break.php',
- 'Smarty_Internal_Compile_Call' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_call.php',
- 'Smarty_Internal_Compile_Capture' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_capture.php',
- 'Smarty_Internal_Compile_CaptureClose' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_capture.php',
- 'Smarty_Internal_Compile_Child' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_child.php',
- 'Smarty_Internal_Compile_Config_Load' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_config_load.php',
- 'Smarty_Internal_Compile_Continue' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_continue.php',
- 'Smarty_Internal_Compile_Debug' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_debug.php',
- 'Smarty_Internal_Compile_Else' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_if.php',
- 'Smarty_Internal_Compile_Elseif' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_if.php',
- 'Smarty_Internal_Compile_Eval' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_eval.php',
- 'Smarty_Internal_Compile_Extends' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_extends.php',
- 'Smarty_Internal_Compile_For' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_for.php',
- 'Smarty_Internal_Compile_Forclose' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_for.php',
- 'Smarty_Internal_Compile_Foreach' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_foreach.php',
- 'Smarty_Internal_Compile_Foreachclose' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_foreach.php',
- 'Smarty_Internal_Compile_Foreachelse' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_foreach.php',
- 'Smarty_Internal_Compile_Forelse' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_for.php',
- 'Smarty_Internal_Compile_Function' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_function.php',
- 'Smarty_Internal_Compile_Functionclose' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_function.php',
- 'Smarty_Internal_Compile_If' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_if.php',
- 'Smarty_Internal_Compile_Ifclose' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_if.php',
- 'Smarty_Internal_Compile_Include' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_include.php',
- 'Smarty_Internal_Compile_Insert' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_insert.php',
- 'Smarty_Internal_Compile_Ldelim' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_ldelim.php',
- 'Smarty_Internal_Compile_Make_Nocache' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_make_nocache.php',
- 'Smarty_Internal_Compile_Nocache' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_nocache.php',
- 'Smarty_Internal_Compile_Nocacheclose' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_nocache.php',
- 'Smarty_Internal_Compile_Parent' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_parent.php',
- 'Smarty_Internal_Compile_Private_Block_Plugin' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_block_plugin.php',
- 'Smarty_Internal_Compile_Private_ForeachSection' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_foreachsection.php',
- 'Smarty_Internal_Compile_Private_Function_Plugin' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_function_plugin.php',
- 'Smarty_Internal_Compile_Private_Modifier' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_modifier.php',
- 'Smarty_Internal_Compile_Private_Object_Block_Function' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_object_block_function.php',
- 'Smarty_Internal_Compile_Private_Object_Function' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_object_function.php',
- 'Smarty_Internal_Compile_Private_Print_Expression' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_print_expression.php',
- 'Smarty_Internal_Compile_Private_Registered_Block' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_registered_block.php',
- 'Smarty_Internal_Compile_Private_Registered_Function' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_registered_function.php',
- 'Smarty_Internal_Compile_Private_Special_Variable' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_special_variable.php',
- 'Smarty_Internal_Compile_Rdelim' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_rdelim.php',
- 'Smarty_Internal_Compile_Section' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_section.php',
- 'Smarty_Internal_Compile_Sectionclose' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_section.php',
- 'Smarty_Internal_Compile_Sectionelse' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_section.php',
- 'Smarty_Internal_Compile_Setfilter' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_setfilter.php',
- 'Smarty_Internal_Compile_Setfilterclose' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_setfilter.php',
- 'Smarty_Internal_Compile_Shared_Inheritance' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_shared_inheritance.php',
- 'Smarty_Internal_Compile_While' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_while.php',
- 'Smarty_Internal_Compile_Whileclose' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_while.php',
- 'Smarty_Internal_Config_File_Compiler' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_config_file_compiler.php',
- 'Smarty_Internal_Configfilelexer' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_configfilelexer.php',
- 'Smarty_Internal_Configfileparser' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_configfileparser.php',
- 'Smarty_Internal_Data' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_data.php',
- 'Smarty_Internal_Debug' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_debug.php',
- 'Smarty_Internal_ErrorHandler' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_errorhandler.php',
- 'Smarty_Internal_Extension_Handler' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_extension_handler.php',
- 'Smarty_Internal_Method_AddAutoloadFilters' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_addautoloadfilters.php',
- 'Smarty_Internal_Method_AddDefaultModifiers' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_adddefaultmodifiers.php',
- 'Smarty_Internal_Method_Append' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_append.php',
- 'Smarty_Internal_Method_AppendByRef' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_appendbyref.php',
- 'Smarty_Internal_Method_AssignByRef' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_assignbyref.php',
- 'Smarty_Internal_Method_AssignGlobal' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_assignglobal.php',
- 'Smarty_Internal_Method_ClearAllAssign' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_clearallassign.php',
- 'Smarty_Internal_Method_ClearAllCache' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_clearallcache.php',
- 'Smarty_Internal_Method_ClearAssign' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_clearassign.php',
- 'Smarty_Internal_Method_ClearCache' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_clearcache.php',
- 'Smarty_Internal_Method_ClearCompiledTemplate' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_clearcompiledtemplate.php',
- 'Smarty_Internal_Method_ClearConfig' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_clearconfig.php',
- 'Smarty_Internal_Method_CompileAllConfig' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_compileallconfig.php',
- 'Smarty_Internal_Method_CompileAllTemplates' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_compilealltemplates.php',
- 'Smarty_Internal_Method_ConfigLoad' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_configload.php',
- 'Smarty_Internal_Method_CreateData' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_createdata.php',
- 'Smarty_Internal_Method_GetAutoloadFilters' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getautoloadfilters.php',
- 'Smarty_Internal_Method_GetConfigVariable' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getconfigvariable.php',
- 'Smarty_Internal_Method_GetConfigVars' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getconfigvars.php',
- 'Smarty_Internal_Method_GetDebugTemplate' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getdebugtemplate.php',
- 'Smarty_Internal_Method_GetDefaultModifiers' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getdefaultmodifiers.php',
- 'Smarty_Internal_Method_GetGlobal' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getglobal.php',
- 'Smarty_Internal_Method_GetRegisteredObject' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getregisteredobject.php',
- 'Smarty_Internal_Method_GetStreamVariable' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getstreamvariable.php',
- 'Smarty_Internal_Method_GetTags' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_gettags.php',
- 'Smarty_Internal_Method_GetTemplateVars' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_gettemplatevars.php',
- 'Smarty_Internal_Method_Literals' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_literals.php',
- 'Smarty_Internal_Method_LoadFilter' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_loadfilter.php',
- 'Smarty_Internal_Method_LoadPlugin' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_loadplugin.php',
- 'Smarty_Internal_Method_MustCompile' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_mustcompile.php',
- 'Smarty_Internal_Method_RegisterCacheResource' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registercacheresource.php',
- 'Smarty_Internal_Method_RegisterClass' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerclass.php',
- 'Smarty_Internal_Method_RegisterDefaultConfigHandler' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerdefaultconfighandler.php',
- 'Smarty_Internal_Method_RegisterDefaultPluginHandler' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php',
- 'Smarty_Internal_Method_RegisterDefaultTemplateHandler' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerdefaulttemplatehandler.php',
- 'Smarty_Internal_Method_RegisterFilter' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerfilter.php',
- 'Smarty_Internal_Method_RegisterObject' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerobject.php',
- 'Smarty_Internal_Method_RegisterPlugin' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerplugin.php',
- 'Smarty_Internal_Method_RegisterResource' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerresource.php',
- 'Smarty_Internal_Method_SetAutoloadFilters' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_setautoloadfilters.php',
- 'Smarty_Internal_Method_SetDebugTemplate' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_setdebugtemplate.php',
- 'Smarty_Internal_Method_SetDefaultModifiers' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_setdefaultmodifiers.php',
- 'Smarty_Internal_Method_UnloadFilter' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_unloadfilter.php',
- 'Smarty_Internal_Method_UnregisterCacheResource' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_unregistercacheresource.php',
- 'Smarty_Internal_Method_UnregisterFilter' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_unregisterfilter.php',
- 'Smarty_Internal_Method_UnregisterObject' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_unregisterobject.php',
- 'Smarty_Internal_Method_UnregisterPlugin' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_unregisterplugin.php',
- 'Smarty_Internal_Method_UnregisterResource' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_method_unregisterresource.php',
- 'Smarty_Internal_Nocache_Insert' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_nocache_insert.php',
- 'Smarty_Internal_ParseTree' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree.php',
- 'Smarty_Internal_ParseTree_Code' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_code.php',
- 'Smarty_Internal_ParseTree_Dq' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_dq.php',
- 'Smarty_Internal_ParseTree_DqContent' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_dqcontent.php',
- 'Smarty_Internal_ParseTree_Tag' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_tag.php',
- 'Smarty_Internal_ParseTree_Template' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_template.php',
- 'Smarty_Internal_ParseTree_Text' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_text.php',
- 'Smarty_Internal_Resource_Eval' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_resource_eval.php',
- 'Smarty_Internal_Resource_Extends' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_resource_extends.php',
- 'Smarty_Internal_Resource_File' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_resource_file.php',
- 'Smarty_Internal_Resource_Php' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_resource_php.php',
- 'Smarty_Internal_Resource_Stream' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_resource_stream.php',
- 'Smarty_Internal_Resource_String' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_resource_string.php',
- 'Smarty_Internal_Runtime_CacheModify' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_cachemodify.php',
- 'Smarty_Internal_Runtime_CacheResourceFile' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_cacheresourcefile.php',
- 'Smarty_Internal_Runtime_Capture' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_capture.php',
- 'Smarty_Internal_Runtime_CodeFrame' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_codeframe.php',
- 'Smarty_Internal_Runtime_FilterHandler' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_filterhandler.php',
- 'Smarty_Internal_Runtime_Foreach' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_foreach.php',
- 'Smarty_Internal_Runtime_GetIncludePath' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_getincludepath.php',
- 'Smarty_Internal_Runtime_Inheritance' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php',
- 'Smarty_Internal_Runtime_Make_Nocache' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_make_nocache.php',
- 'Smarty_Internal_Runtime_TplFunction' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_tplfunction.php',
- 'Smarty_Internal_Runtime_UpdateCache' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php',
- 'Smarty_Internal_Runtime_UpdateScope' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatescope.php',
- 'Smarty_Internal_Runtime_WriteFile' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_writefile.php',
- 'Smarty_Internal_SmartyTemplateCompiler' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_smartytemplatecompiler.php',
- 'Smarty_Internal_Template' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_template.php',
- 'Smarty_Internal_TemplateBase' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php',
- 'Smarty_Internal_TemplateCompilerBase' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php',
- 'Smarty_Internal_Templatelexer' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_templatelexer.php',
- 'Smarty_Internal_Templateparser' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_templateparser.php',
- 'Smarty_Internal_TestInstall' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_testinstall.php',
- 'Smarty_Internal_Undefined' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_undefined.php',
- 'Smarty_Resource' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_resource.php',
- 'Smarty_Resource_Custom' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_resource_custom.php',
- 'Smarty_Resource_Recompiled' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_resource_recompiled.php',
- 'Smarty_Resource_Uncompiled' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_resource_uncompiled.php',
- 'Smarty_Security' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_security.php',
- 'Smarty_Template_Cached' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_template_cached.php',
- 'Smarty_Template_Compiled' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_template_compiled.php',
- 'Smarty_Template_Config' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_template_config.php',
- 'Smarty_Template_Resource_Base' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php',
- 'Smarty_Template_Source' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_template_source.php',
- 'Smarty_Undefined_Variable' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_undefined_variable.php',
- 'Smarty_Variable' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_variable.php',
+ 'Smarty\\BlockHandler\\Base' => $vendorDir . '/smarty/smarty/src/BlockHandler/Base.php',
+ 'Smarty\\BlockHandler\\BlockHandlerInterface' => $vendorDir . '/smarty/smarty/src/BlockHandler/BlockHandlerInterface.php',
+ 'Smarty\\BlockHandler\\BlockPluginWrapper' => $vendorDir . '/smarty/smarty/src/BlockHandler/BlockPluginWrapper.php',
+ 'Smarty\\BlockHandler\\TextFormat' => $vendorDir . '/smarty/smarty/src/BlockHandler/TextFormat.php',
+ 'Smarty\\Cacheresource\\Base' => $vendorDir . '/smarty/smarty/src/Cacheresource/Base.php',
+ 'Smarty\\Cacheresource\\Custom' => $vendorDir . '/smarty/smarty/src/Cacheresource/Custom.php',
+ 'Smarty\\Cacheresource\\File' => $vendorDir . '/smarty/smarty/src/Cacheresource/File.php',
+ 'Smarty\\Cacheresource\\KeyValueStore' => $vendorDir . '/smarty/smarty/src/Cacheresource/KeyValueStore.php',
+ 'Smarty\\Compile\\Base' => $vendorDir . '/smarty/smarty/src/Compile/Base.php',
+ 'Smarty\\Compile\\BlockCompiler' => $vendorDir . '/smarty/smarty/src/Compile/BlockCompiler.php',
+ 'Smarty\\Compile\\CompilerInterface' => $vendorDir . '/smarty/smarty/src/Compile/CompilerInterface.php',
+ 'Smarty\\Compile\\DefaultHandlerBlockCompiler' => $vendorDir . '/smarty/smarty/src/Compile/DefaultHandlerBlockCompiler.php',
+ 'Smarty\\Compile\\DefaultHandlerFunctionCallCompiler' => $vendorDir . '/smarty/smarty/src/Compile/DefaultHandlerFunctionCallCompiler.php',
+ 'Smarty\\Compile\\FunctionCallCompiler' => $vendorDir . '/smarty/smarty/src/Compile/FunctionCallCompiler.php',
+ 'Smarty\\Compile\\ModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/ModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\BCPluginWrapper' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/BCPluginWrapper.php',
+ 'Smarty\\Compile\\Modifier\\Base' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/Base.php',
+ 'Smarty\\Compile\\Modifier\\CatModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/CatModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\CountCharactersModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/CountCharactersModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\CountParagraphsModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/CountParagraphsModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\CountSentencesModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/CountSentencesModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\CountWordsModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/CountWordsModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\DefaultModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/DefaultModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\EmptyModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/EmptyModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\EscapeModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/EscapeModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\FromCharsetModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/FromCharsetModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\IndentModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/IndentModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\IsArrayModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/IsArrayModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\IssetModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/IssetModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\JsonEncodeModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/JsonEncodeModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\LowerModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/LowerModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\ModifierCompilerInterface' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/ModifierCompilerInterface.php',
+ 'Smarty\\Compile\\Modifier\\Nl2brModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/Nl2brModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\NoPrintModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/NoPrintModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\RawModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/RawModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\RoundModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/RoundModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\StrRepeatModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/StrRepeatModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\StringFormatModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/StringFormatModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\StripModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/StripModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\StripTagsModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/StripTagsModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\StrlenModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/StrlenModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\SubstrModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/SubstrModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\ToCharsetModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/ToCharsetModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\UnescapeModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/UnescapeModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\UpperModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/UpperModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\WordWrapModifierCompiler' => $vendorDir . '/smarty/smarty/src/Compile/Modifier/WordWrapModifierCompiler.php',
+ 'Smarty\\Compile\\ObjectMethodBlockCompiler' => $vendorDir . '/smarty/smarty/src/Compile/ObjectMethodBlockCompiler.php',
+ 'Smarty\\Compile\\ObjectMethodCallCompiler' => $vendorDir . '/smarty/smarty/src/Compile/ObjectMethodCallCompiler.php',
+ 'Smarty\\Compile\\PrintExpressionCompiler' => $vendorDir . '/smarty/smarty/src/Compile/PrintExpressionCompiler.php',
+ 'Smarty\\Compile\\SpecialVariableCompiler' => $vendorDir . '/smarty/smarty/src/Compile/SpecialVariableCompiler.php',
+ 'Smarty\\Compile\\Tag\\Append' => $vendorDir . '/smarty/smarty/src/Compile/Tag/Append.php',
+ 'Smarty\\Compile\\Tag\\Assign' => $vendorDir . '/smarty/smarty/src/Compile/Tag/Assign.php',
+ 'Smarty\\Compile\\Tag\\BCPluginWrapper' => $vendorDir . '/smarty/smarty/src/Compile/Tag/BCPluginWrapper.php',
+ 'Smarty\\Compile\\Tag\\Block' => $vendorDir . '/smarty/smarty/src/Compile/Tag/Block.php',
+ 'Smarty\\Compile\\Tag\\BlockClose' => $vendorDir . '/smarty/smarty/src/Compile/Tag/BlockClose.php',
+ 'Smarty\\Compile\\Tag\\BreakTag' => $vendorDir . '/smarty/smarty/src/Compile/Tag/BreakTag.php',
+ 'Smarty\\Compile\\Tag\\Call' => $vendorDir . '/smarty/smarty/src/Compile/Tag/Call.php',
+ 'Smarty\\Compile\\Tag\\Capture' => $vendorDir . '/smarty/smarty/src/Compile/Tag/Capture.php',
+ 'Smarty\\Compile\\Tag\\CaptureClose' => $vendorDir . '/smarty/smarty/src/Compile/Tag/CaptureClose.php',
+ 'Smarty\\Compile\\Tag\\ConfigLoad' => $vendorDir . '/smarty/smarty/src/Compile/Tag/ConfigLoad.php',
+ 'Smarty\\Compile\\Tag\\ContinueTag' => $vendorDir . '/smarty/smarty/src/Compile/Tag/ContinueTag.php',
+ 'Smarty\\Compile\\Tag\\Debug' => $vendorDir . '/smarty/smarty/src/Compile/Tag/Debug.php',
+ 'Smarty\\Compile\\Tag\\ElseIfTag' => $vendorDir . '/smarty/smarty/src/Compile/Tag/ElseIfTag.php',
+ 'Smarty\\Compile\\Tag\\ElseTag' => $vendorDir . '/smarty/smarty/src/Compile/Tag/ElseTag.php',
+ 'Smarty\\Compile\\Tag\\EvalTag' => $vendorDir . '/smarty/smarty/src/Compile/Tag/EvalTag.php',
+ 'Smarty\\Compile\\Tag\\ExtendsTag' => $vendorDir . '/smarty/smarty/src/Compile/Tag/ExtendsTag.php',
+ 'Smarty\\Compile\\Tag\\ForClose' => $vendorDir . '/smarty/smarty/src/Compile/Tag/ForClose.php',
+ 'Smarty\\Compile\\Tag\\ForElse' => $vendorDir . '/smarty/smarty/src/Compile/Tag/ForElse.php',
+ 'Smarty\\Compile\\Tag\\ForTag' => $vendorDir . '/smarty/smarty/src/Compile/Tag/ForTag.php',
+ 'Smarty\\Compile\\Tag\\ForeachClose' => $vendorDir . '/smarty/smarty/src/Compile/Tag/ForeachClose.php',
+ 'Smarty\\Compile\\Tag\\ForeachElse' => $vendorDir . '/smarty/smarty/src/Compile/Tag/ForeachElse.php',
+ 'Smarty\\Compile\\Tag\\ForeachSection' => $vendorDir . '/smarty/smarty/src/Compile/Tag/ForeachSection.php',
+ 'Smarty\\Compile\\Tag\\ForeachTag' => $vendorDir . '/smarty/smarty/src/Compile/Tag/ForeachTag.php',
+ 'Smarty\\Compile\\Tag\\FunctionClose' => $vendorDir . '/smarty/smarty/src/Compile/Tag/FunctionClose.php',
+ 'Smarty\\Compile\\Tag\\FunctionTag' => $vendorDir . '/smarty/smarty/src/Compile/Tag/FunctionTag.php',
+ 'Smarty\\Compile\\Tag\\IfClose' => $vendorDir . '/smarty/smarty/src/Compile/Tag/IfClose.php',
+ 'Smarty\\Compile\\Tag\\IfTag' => $vendorDir . '/smarty/smarty/src/Compile/Tag/IfTag.php',
+ 'Smarty\\Compile\\Tag\\IncludeTag' => $vendorDir . '/smarty/smarty/src/Compile/Tag/IncludeTag.php',
+ 'Smarty\\Compile\\Tag\\Inheritance' => $vendorDir . '/smarty/smarty/src/Compile/Tag/Inheritance.php',
+ 'Smarty\\Compile\\Tag\\Ldelim' => $vendorDir . '/smarty/smarty/src/Compile/Tag/Ldelim.php',
+ 'Smarty\\Compile\\Tag\\Nocache' => $vendorDir . '/smarty/smarty/src/Compile/Tag/Nocache.php',
+ 'Smarty\\Compile\\Tag\\NocacheClose' => $vendorDir . '/smarty/smarty/src/Compile/Tag/NocacheClose.php',
+ 'Smarty\\Compile\\Tag\\Rdelim' => $vendorDir . '/smarty/smarty/src/Compile/Tag/Rdelim.php',
+ 'Smarty\\Compile\\Tag\\Section' => $vendorDir . '/smarty/smarty/src/Compile/Tag/Section.php',
+ 'Smarty\\Compile\\Tag\\SectionClose' => $vendorDir . '/smarty/smarty/src/Compile/Tag/SectionClose.php',
+ 'Smarty\\Compile\\Tag\\SectionElse' => $vendorDir . '/smarty/smarty/src/Compile/Tag/SectionElse.php',
+ 'Smarty\\Compile\\Tag\\Setfilter' => $vendorDir . '/smarty/smarty/src/Compile/Tag/Setfilter.php',
+ 'Smarty\\Compile\\Tag\\SetfilterClose' => $vendorDir . '/smarty/smarty/src/Compile/Tag/SetfilterClose.php',
+ 'Smarty\\Compile\\Tag\\WhileClose' => $vendorDir . '/smarty/smarty/src/Compile/Tag/WhileClose.php',
+ 'Smarty\\Compile\\Tag\\WhileTag' => $vendorDir . '/smarty/smarty/src/Compile/Tag/WhileTag.php',
+ 'Smarty\\CompilerException' => $vendorDir . '/smarty/smarty/src/CompilerException.php',
+ 'Smarty\\Compiler\\BaseCompiler' => $vendorDir . '/smarty/smarty/src/Compiler/BaseCompiler.php',
+ 'Smarty\\Compiler\\CodeFrame' => $vendorDir . '/smarty/smarty/src/Compiler/CodeFrame.php',
+ 'Smarty\\Compiler\\Configfile' => $vendorDir . '/smarty/smarty/src/Compiler/Configfile.php',
+ 'Smarty\\Compiler\\Template' => $vendorDir . '/smarty/smarty/src/Compiler/Template.php',
+ 'Smarty\\Data' => $vendorDir . '/smarty/smarty/src/Data.php',
+ 'Smarty\\Debug' => $vendorDir . '/smarty/smarty/src/Debug.php',
+ 'Smarty\\ErrorHandler' => $vendorDir . '/smarty/smarty/src/ErrorHandler.php',
+ 'Smarty\\Exception' => $vendorDir . '/smarty/smarty/src/Exception.php',
+ 'Smarty\\Extension\\BCPluginsAdapter' => $vendorDir . '/smarty/smarty/src/Extension/BCPluginsAdapter.php',
+ 'Smarty\\Extension\\Base' => $vendorDir . '/smarty/smarty/src/Extension/Base.php',
+ 'Smarty\\Extension\\CallbackWrapper' => $vendorDir . '/smarty/smarty/src/Extension/CallbackWrapper.php',
+ 'Smarty\\Extension\\CoreExtension' => $vendorDir . '/smarty/smarty/src/Extension/CoreExtension.php',
+ 'Smarty\\Extension\\DefaultExtension' => $vendorDir . '/smarty/smarty/src/Extension/DefaultExtension.php',
+ 'Smarty\\Extension\\ExtensionInterface' => $vendorDir . '/smarty/smarty/src/Extension/ExtensionInterface.php',
+ 'Smarty\\Filter\\FilterInterface' => $vendorDir . '/smarty/smarty/src/Filter/FilterInterface.php',
+ 'Smarty\\Filter\\FilterPluginWrapper' => $vendorDir . '/smarty/smarty/src/Filter/FilterPluginWrapper.php',
+ 'Smarty\\Filter\\Output\\TrimWhitespace' => $vendorDir . '/smarty/smarty/src/Filter/Output/TrimWhitespace.php',
+ 'Smarty\\FunctionHandler\\BCPluginWrapper' => $vendorDir . '/smarty/smarty/src/FunctionHandler/BCPluginWrapper.php',
+ 'Smarty\\FunctionHandler\\Base' => $vendorDir . '/smarty/smarty/src/FunctionHandler/Base.php',
+ 'Smarty\\FunctionHandler\\Count' => $vendorDir . '/smarty/smarty/src/FunctionHandler/Count.php',
+ 'Smarty\\FunctionHandler\\Counter' => $vendorDir . '/smarty/smarty/src/FunctionHandler/Counter.php',
+ 'Smarty\\FunctionHandler\\Cycle' => $vendorDir . '/smarty/smarty/src/FunctionHandler/Cycle.php',
+ 'Smarty\\FunctionHandler\\Fetch' => $vendorDir . '/smarty/smarty/src/FunctionHandler/Fetch.php',
+ 'Smarty\\FunctionHandler\\FunctionHandlerInterface' => $vendorDir . '/smarty/smarty/src/FunctionHandler/FunctionHandlerInterface.php',
+ 'Smarty\\FunctionHandler\\HtmlBase' => $vendorDir . '/smarty/smarty/src/FunctionHandler/HtmlBase.php',
+ 'Smarty\\FunctionHandler\\HtmlCheckboxes' => $vendorDir . '/smarty/smarty/src/FunctionHandler/HtmlCheckboxes.php',
+ 'Smarty\\FunctionHandler\\HtmlImage' => $vendorDir . '/smarty/smarty/src/FunctionHandler/HtmlImage.php',
+ 'Smarty\\FunctionHandler\\HtmlOptions' => $vendorDir . '/smarty/smarty/src/FunctionHandler/HtmlOptions.php',
+ 'Smarty\\FunctionHandler\\HtmlRadios' => $vendorDir . '/smarty/smarty/src/FunctionHandler/HtmlRadios.php',
+ 'Smarty\\FunctionHandler\\HtmlSelectDate' => $vendorDir . '/smarty/smarty/src/FunctionHandler/HtmlSelectDate.php',
+ 'Smarty\\FunctionHandler\\HtmlSelectTime' => $vendorDir . '/smarty/smarty/src/FunctionHandler/HtmlSelectTime.php',
+ 'Smarty\\FunctionHandler\\HtmlTable' => $vendorDir . '/smarty/smarty/src/FunctionHandler/HtmlTable.php',
+ 'Smarty\\FunctionHandler\\Mailto' => $vendorDir . '/smarty/smarty/src/FunctionHandler/Mailto.php',
+ 'Smarty\\FunctionHandler\\Math' => $vendorDir . '/smarty/smarty/src/FunctionHandler/Math.php',
+ 'Smarty\\Lexer\\ConfigfileLexer' => $vendorDir . '/smarty/smarty/src/Lexer/ConfigfileLexer.php',
+ 'Smarty\\Lexer\\TemplateLexer' => $vendorDir . '/smarty/smarty/src/Lexer/TemplateLexer.php',
+ 'Smarty\\ParseTree\\Base' => $vendorDir . '/smarty/smarty/src/ParseTree/Base.php',
+ 'Smarty\\ParseTree\\Code' => $vendorDir . '/smarty/smarty/src/ParseTree/Code.php',
+ 'Smarty\\ParseTree\\Dq' => $vendorDir . '/smarty/smarty/src/ParseTree/Dq.php',
+ 'Smarty\\ParseTree\\DqContent' => $vendorDir . '/smarty/smarty/src/ParseTree/DqContent.php',
+ 'Smarty\\ParseTree\\Tag' => $vendorDir . '/smarty/smarty/src/ParseTree/Tag.php',
+ 'Smarty\\ParseTree\\Template' => $vendorDir . '/smarty/smarty/src/ParseTree/Template.php',
+ 'Smarty\\ParseTree\\Text' => $vendorDir . '/smarty/smarty/src/ParseTree/Text.php',
+ 'Smarty\\Parser\\ConfigfileParser' => $vendorDir . '/smarty/smarty/src/Parser/ConfigfileParser.php',
+ 'Smarty\\Parser\\TemplateParser' => $vendorDir . '/smarty/smarty/src/Parser/TemplateParser.php',
+ 'Smarty\\Resource\\BasePlugin' => $vendorDir . '/smarty/smarty/src/Resource/BasePlugin.php',
+ 'Smarty\\Resource\\CustomPlugin' => $vendorDir . '/smarty/smarty/src/Resource/CustomPlugin.php',
+ 'Smarty\\Resource\\ExtendsPlugin' => $vendorDir . '/smarty/smarty/src/Resource/ExtendsPlugin.php',
+ 'Smarty\\Resource\\FilePlugin' => $vendorDir . '/smarty/smarty/src/Resource/FilePlugin.php',
+ 'Smarty\\Resource\\RecompiledPlugin' => $vendorDir . '/smarty/smarty/src/Resource/RecompiledPlugin.php',
+ 'Smarty\\Resource\\StreamPlugin' => $vendorDir . '/smarty/smarty/src/Resource/StreamPlugin.php',
+ 'Smarty\\Resource\\StringEval' => $vendorDir . '/smarty/smarty/src/Resource/StringEval.php',
+ 'Smarty\\Resource\\StringPlugin' => $vendorDir . '/smarty/smarty/src/Resource/StringPlugin.php',
+ 'Smarty\\Runtime\\Block' => $vendorDir . '/smarty/smarty/src/Runtime/Block.php',
+ 'Smarty\\Runtime\\CaptureRuntime' => $vendorDir . '/smarty/smarty/src/Runtime/CaptureRuntime.php',
+ 'Smarty\\Runtime\\DefaultPluginHandlerRuntime' => $vendorDir . '/smarty/smarty/src/Runtime/DefaultPluginHandlerRuntime.php',
+ 'Smarty\\Runtime\\ForeachRuntime' => $vendorDir . '/smarty/smarty/src/Runtime/ForeachRuntime.php',
+ 'Smarty\\Runtime\\InheritanceRuntime' => $vendorDir . '/smarty/smarty/src/Runtime/InheritanceRuntime.php',
+ 'Smarty\\Runtime\\TplFunctionRuntime' => $vendorDir . '/smarty/smarty/src/Runtime/TplFunctionRuntime.php',
+ 'Smarty\\Security' => $vendorDir . '/smarty/smarty/src/Security.php',
+ 'Smarty\\Smarty' => $vendorDir . '/smarty/smarty/src/Smarty.php',
+ 'Smarty\\Template' => $vendorDir . '/smarty/smarty/src/Template.php',
+ 'Smarty\\TemplateBase' => $vendorDir . '/smarty/smarty/src/TemplateBase.php',
+ 'Smarty\\Template\\Cached' => $vendorDir . '/smarty/smarty/src/Template/Cached.php',
+ 'Smarty\\Template\\Compiled' => $vendorDir . '/smarty/smarty/src/Template/Compiled.php',
+ 'Smarty\\Template\\Config' => $vendorDir . '/smarty/smarty/src/Template/Config.php',
+ 'Smarty\\Template\\GeneratedPhpFile' => $vendorDir . '/smarty/smarty/src/Template/GeneratedPhpFile.php',
+ 'Smarty\\Template\\Source' => $vendorDir . '/smarty/smarty/src/Template/Source.php',
+ 'Smarty\\TestInstall' => $vendorDir . '/smarty/smarty/src/TestInstall.php',
+ 'Smarty\\UndefinedVariable' => $vendorDir . '/smarty/smarty/src/UndefinedVariable.php',
+ 'Smarty\\Variable' => $vendorDir . '/smarty/smarty/src/Variable.php',
+ 'SourceSpan\\ConcreteFileSpan' => $vendorDir . '/scssphp/source-span/src/ConcreteFileSpan.php',
+ 'SourceSpan\\FileLocation' => $vendorDir . '/scssphp/source-span/src/FileLocation.php',
+ 'SourceSpan\\FileSpan' => $vendorDir . '/scssphp/source-span/src/FileSpan.php',
+ 'SourceSpan\\Highlighter\\AsciiGlyph' => $vendorDir . '/scssphp/source-span/src/Highlighter/AsciiGlyph.php',
+ 'SourceSpan\\Highlighter\\Highlight' => $vendorDir . '/scssphp/source-span/src/Highlighter/Highlight.php',
+ 'SourceSpan\\Highlighter\\Highlighter' => $vendorDir . '/scssphp/source-span/src/Highlighter/Highlighter.php',
+ 'SourceSpan\\Highlighter\\Line' => $vendorDir . '/scssphp/source-span/src/Highlighter/Line.php',
+ 'SourceSpan\\SimpleSourceLocation' => $vendorDir . '/scssphp/source-span/src/SimpleSourceLocation.php',
+ 'SourceSpan\\SimpleSourceSpan' => $vendorDir . '/scssphp/source-span/src/SimpleSourceSpan.php',
+ 'SourceSpan\\SimpleSourceSpanWithContext' => $vendorDir . '/scssphp/source-span/src/SimpleSourceSpanWithContext.php',
+ 'SourceSpan\\SourceFile' => $vendorDir . '/scssphp/source-span/src/SourceFile.php',
+ 'SourceSpan\\SourceLocation' => $vendorDir . '/scssphp/source-span/src/SourceLocation.php',
+ 'SourceSpan\\SourceLocationMixin' => $vendorDir . '/scssphp/source-span/src/SourceLocationMixin.php',
+ 'SourceSpan\\SourceSpan' => $vendorDir . '/scssphp/source-span/src/SourceSpan.php',
+ 'SourceSpan\\SourceSpanMixin' => $vendorDir . '/scssphp/source-span/src/SourceSpanMixin.php',
+ 'SourceSpan\\SourceSpanWithContext' => $vendorDir . '/scssphp/source-span/src/SourceSpanWithContext.php',
+ 'SourceSpan\\Util' => $vendorDir . '/scssphp/source-span/src/Util.php',
'StephenHill\\BCMathService' => $vendorDir . '/stephenhill/base58/src/BCMathService.php',
'StephenHill\\Base58' => $vendorDir . '/stephenhill/base58/src/Base58.php',
'StephenHill\\Benchmarks\\Base16Event' => $vendorDir . '/stephenhill/base58/benchmarks/Base16Event.php',
@@ -1213,9 +1577,16 @@ return array(
'StephenHill\\Benchmarks\\Base64Event' => $vendorDir . '/stephenhill/base58/benchmarks/Base64Event.php',
'StephenHill\\GMPService' => $vendorDir . '/stephenhill/base58/src/GMPService.php',
'StephenHill\\ServiceInterface' => $vendorDir . '/stephenhill/base58/src/ServiceInterface.php',
- 'Symfony\\Polyfill\\Php81\\Php81' => $vendorDir . '/symfony/polyfill-php81/Php81.php',
- 'TPC_yyStackEntry' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_configfileparser.php',
- 'TP_yyStackEntry' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_internal_templateparser.php',
+ 'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/ExceptionInterface.php',
+ 'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => $vendorDir . '/symfony/filesystem/Exception/FileNotFoundException.php',
+ 'Symfony\\Component\\Filesystem\\Exception\\IOException' => $vendorDir . '/symfony/filesystem/Exception/IOException.php',
+ 'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/IOExceptionInterface.php',
+ 'Symfony\\Component\\Filesystem\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/filesystem/Exception/InvalidArgumentException.php',
+ 'Symfony\\Component\\Filesystem\\Exception\\RuntimeException' => $vendorDir . '/symfony/filesystem/Exception/RuntimeException.php',
+ 'Symfony\\Component\\Filesystem\\Filesystem' => $vendorDir . '/symfony/filesystem/Filesystem.php',
+ 'Symfony\\Component\\Filesystem\\Path' => $vendorDir . '/symfony/filesystem/Path.php',
+ 'Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php',
+ 'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php',
'Text_LanguageDetect' => $vendorDir . '/pear/text_languagedetect/Text/LanguageDetect.php',
'Text_LanguageDetect_Exception' => $vendorDir . '/pear/text_languagedetect/Text/LanguageDetect/Exception.php',
'Text_LanguageDetect_ISO639' => $vendorDir . '/pear/text_languagedetect/Text/LanguageDetect/ISO639.php',
@@ -1226,6 +1597,24 @@ return array(
'Zotlabs\\Access\\PermissionLimits' => $baseDir . '/Zotlabs/Access/PermissionLimits.php',
'Zotlabs\\Access\\PermissionRoles' => $baseDir . '/Zotlabs/Access/PermissionRoles.php',
'Zotlabs\\Access\\Permissions' => $baseDir . '/Zotlabs/Access/Permissions.php',
+ 'Zotlabs\\ActivityStreams\\ASObject' => $baseDir . '/Zotlabs/ActivityStreams/ASObject.php',
+ 'Zotlabs\\ActivityStreams\\Activity' => $baseDir . '/Zotlabs/ActivityStreams/Activity.php',
+ 'Zotlabs\\ActivityStreams\\Actor' => $baseDir . '/Zotlabs/ActivityStreams/Actor.php',
+ 'Zotlabs\\ActivityStreams\\AssertionMethod' => $baseDir . '/Zotlabs/ActivityStreams/AssertionMethod.php',
+ 'Zotlabs\\ActivityStreams\\Collection' => $baseDir . '/Zotlabs/ActivityStreams/Collection.php',
+ 'Zotlabs\\ActivityStreams\\CollectionPage' => $baseDir . '/Zotlabs/ActivityStreams/CollectionPage.php',
+ 'Zotlabs\\ActivityStreams\\IntransitiveActivity' => $baseDir . '/Zotlabs/ActivityStreams/IntransitiveActivity.php',
+ 'Zotlabs\\ActivityStreams\\Link' => $baseDir . '/Zotlabs/ActivityStreams/Link.php',
+ 'Zotlabs\\ActivityStreams\\OrderedCollection' => $baseDir . '/Zotlabs/ActivityStreams/OrderedCollection.php',
+ 'Zotlabs\\ActivityStreams\\OrderedCollectionPage' => $baseDir . '/Zotlabs/ActivityStreams/OrderedCollectionPage.php',
+ 'Zotlabs\\ActivityStreams\\Place' => $baseDir . '/Zotlabs/ActivityStreams/Place.php',
+ 'Zotlabs\\ActivityStreams\\Profile' => $baseDir . '/Zotlabs/ActivityStreams/Profile.php',
+ 'Zotlabs\\ActivityStreams\\PublicKey' => $baseDir . '/Zotlabs/ActivityStreams/PublicKey.php',
+ 'Zotlabs\\ActivityStreams\\Question' => $baseDir . '/Zotlabs/ActivityStreams/Question.php',
+ 'Zotlabs\\ActivityStreams\\Relationship' => $baseDir . '/Zotlabs/ActivityStreams/Relationship.php',
+ 'Zotlabs\\ActivityStreams\\Signature' => $baseDir . '/Zotlabs/ActivityStreams/Signature.php',
+ 'Zotlabs\\ActivityStreams\\Tombstone' => $baseDir . '/Zotlabs/ActivityStreams/Tombstone.php',
+ 'Zotlabs\\ActivityStreams\\UnhandledElementException' => $baseDir . '/Zotlabs/ActivityStreams/UnhandledElementException.php',
'Zotlabs\\Daemon\\Addon' => $baseDir . '/Zotlabs/Daemon/Addon.php',
'Zotlabs\\Daemon\\Cache_embeds' => $baseDir . '/Zotlabs/Daemon/Cache_embeds.php',
'Zotlabs\\Daemon\\Cache_query' => $baseDir . '/Zotlabs/Daemon/Cache_query.php',
@@ -1259,6 +1648,9 @@ return array(
'Zotlabs\\Daemon\\Thumbnail' => $baseDir . '/Zotlabs/Daemon/Thumbnail.php',
'Zotlabs\\Daemon\\Xchan_photo' => $baseDir . '/Zotlabs/Daemon/Xchan_photo.php',
'Zotlabs\\Daemon\\Zotconvo' => $baseDir . '/Zotlabs/Daemon/Zotconvo.php',
+ 'Zotlabs\\Entity\\Account' => $baseDir . '/Zotlabs/Entity/Account.php',
+ 'Zotlabs\\Entity\\Channel' => $baseDir . '/Zotlabs/Entity/Channel.php',
+ 'Zotlabs\\Entity\\Item' => $baseDir . '/Zotlabs/Entity/Item.php',
'Zotlabs\\Extend\\Hook' => $baseDir . '/Zotlabs/Extend/Hook.php',
'Zotlabs\\Extend\\Route' => $baseDir . '/Zotlabs/Extend/Route.php',
'Zotlabs\\Extend\\Widget' => $baseDir . '/Zotlabs/Extend/Widget.php',
@@ -1275,6 +1667,7 @@ return array(
'Zotlabs\\Lib\\ActivityStreams' => $baseDir . '/Zotlabs/Lib/ActivityStreams.php',
'Zotlabs\\Lib\\Api_router' => $baseDir . '/Zotlabs/Lib/Api_router.php',
'Zotlabs\\Lib\\Apps' => $baseDir . '/Zotlabs/Lib/Apps.php',
+ 'Zotlabs\\Lib\\BaseObject' => $baseDir . '/Zotlabs/Lib/BaseObject.php',
'Zotlabs\\Lib\\Cache' => $baseDir . '/Zotlabs/Lib/Cache.php',
'Zotlabs\\Lib\\Chatroom' => $baseDir . '/Zotlabs/Lib/Chatroom.php',
'Zotlabs\\Lib\\Config' => $baseDir . '/Zotlabs/Lib/Config.php',
@@ -1289,11 +1682,13 @@ return array(
'Zotlabs\\Lib\\Img_filesize' => $baseDir . '/Zotlabs/Lib/Img_filesize.php',
'Zotlabs\\Lib\\JSalmon' => $baseDir . '/Zotlabs/Lib/JSalmon.php',
'Zotlabs\\Lib\\JcsEddsa2022' => $baseDir . '/Zotlabs/Lib/JcsEddsa2022.php',
+ 'Zotlabs\\Lib\\JcsEddsa2022SignException' => $baseDir . '/Zotlabs/Lib/JcsEddsa2022SignException.php',
'Zotlabs\\Lib\\Keyutils' => $baseDir . '/Zotlabs/Lib/Keyutils.php',
'Zotlabs\\Lib\\LDSignatures' => $baseDir . '/Zotlabs/Lib/LDSignatures.php',
'Zotlabs\\Lib\\Libsync' => $baseDir . '/Zotlabs/Lib/Libsync.php',
'Zotlabs\\Lib\\Libzot' => $baseDir . '/Zotlabs/Lib/Libzot.php',
'Zotlabs\\Lib\\Libzotdir' => $baseDir . '/Zotlabs/Lib/Libzotdir.php',
+ 'Zotlabs\\Lib\\Mailer' => $baseDir . '/Zotlabs/Lib/Mailer.php',
'Zotlabs\\Lib\\MarkdownSoap' => $baseDir . '/Zotlabs/Lib/MarkdownSoap.php',
'Zotlabs\\Lib\\MessageFilter' => $baseDir . '/Zotlabs/Lib/MessageFilter.php',
'Zotlabs\\Lib\\Multibase' => $baseDir . '/Zotlabs/Lib/Multibase.php',
@@ -1304,7 +1699,6 @@ return array(
'Zotlabs\\Lib\\QueueWorker' => $baseDir . '/Zotlabs/Lib/QueueWorker.php',
'Zotlabs\\Lib\\SConfig' => $baseDir . '/Zotlabs/Lib/SConfig.php',
'Zotlabs\\Lib\\Share' => $baseDir . '/Zotlabs/Lib/Share.php',
- 'Zotlabs\\Lib\\SuperCurl' => $baseDir . '/Zotlabs/Lib/SuperCurl.php',
'Zotlabs\\Lib\\SvgSanitizer' => $baseDir . '/Zotlabs/Lib/SvgSanitizer.php',
'Zotlabs\\Lib\\System' => $baseDir . '/Zotlabs/Lib/System.php',
'Zotlabs\\Lib\\Techlevels' => $baseDir . '/Zotlabs/Lib/Techlevels.php',
@@ -1470,6 +1864,7 @@ return array(
'Zotlabs\\Module\\Regver' => $baseDir . '/Zotlabs/Module/Regver.php',
'Zotlabs\\Module\\Removeaccount' => $baseDir . '/Zotlabs/Module/Removeaccount.php',
'Zotlabs\\Module\\Removeme' => $baseDir . '/Zotlabs/Module/Removeme.php',
+ 'Zotlabs\\Module\\Request' => $baseDir . '/Zotlabs/Module/Request.php',
'Zotlabs\\Module\\Rmagic' => $baseDir . '/Zotlabs/Module/Rmagic.php',
'Zotlabs\\Module\\Rpost' => $baseDir . '/Zotlabs/Module/Rpost.php',
'Zotlabs\\Module\\Search' => $baseDir . '/Zotlabs/Module/Search.php',
@@ -1532,7 +1927,6 @@ return array(
'Zotlabs\\Module\\Xchan' => $baseDir . '/Zotlabs/Module/Xchan.php',
'Zotlabs\\Module\\Xpoco' => $baseDir . '/Zotlabs/Module/Xpoco.php',
'Zotlabs\\Module\\Xrd' => $baseDir . '/Zotlabs/Module/Xrd.php',
- 'Zotlabs\\Module\\Xref' => $baseDir . '/Zotlabs/Module/Xref.php',
'Zotlabs\\Module\\Z6trans' => $baseDir . '/Zotlabs/Module/Z6trans.php',
'Zotlabs\\Module\\Zot' => $baseDir . '/Zotlabs/Module/Zot.php',
'Zotlabs\\Module\\Zot_probe' => $baseDir . '/Zotlabs/Module/Zot_probe.php',
@@ -1551,7 +1945,6 @@ return array(
'Zotlabs\\Storage\\CalDAVClient' => $baseDir . '/Zotlabs/Storage/CalDAVClient.php',
'Zotlabs\\Storage\\Directory' => $baseDir . '/Zotlabs/Storage/Directory.php',
'Zotlabs\\Storage\\File' => $baseDir . '/Zotlabs/Storage/File.php',
- 'Zotlabs\\Storage\\GitRepo' => $baseDir . '/Zotlabs/Storage/GitRepo.php',
'Zotlabs\\Storage\\ZotOauth2Pdo' => $baseDir . '/Zotlabs/Storage/ZotOauth2Pdo.php',
'Zotlabs\\Text\\Tagadelic' => $baseDir . '/Zotlabs/Text/Tagadelic.php',
'Zotlabs\\Thumbs\\Epubthumb' => $baseDir . '/Zotlabs/Thumbs/Epubthumb.php',
@@ -1896,25 +2289,64 @@ return array(
'Zotlabs\\Zot6\\IHandler' => $baseDir . '/Zotlabs/Zot6/IHandler.php',
'Zotlabs\\Zot6\\Receiver' => $baseDir . '/Zotlabs/Zot6/Receiver.php',
'Zotlabs\\Zot6\\Zot6Handler' => $baseDir . '/Zotlabs/Zot6/Zot6Handler.php',
+ 'chillerlan\\QRCode\\Common\\BitBuffer' => $vendorDir . '/chillerlan/php-qrcode/src/Common/BitBuffer.php',
+ 'chillerlan\\QRCode\\Common\\ECICharset' => $vendorDir . '/chillerlan/php-qrcode/src/Common/ECICharset.php',
+ 'chillerlan\\QRCode\\Common\\EccLevel' => $vendorDir . '/chillerlan/php-qrcode/src/Common/EccLevel.php',
+ 'chillerlan\\QRCode\\Common\\GDLuminanceSource' => $vendorDir . '/chillerlan/php-qrcode/src/Common/GDLuminanceSource.php',
+ 'chillerlan\\QRCode\\Common\\GF256' => $vendorDir . '/chillerlan/php-qrcode/src/Common/GF256.php',
+ 'chillerlan\\QRCode\\Common\\GenericGFPoly' => $vendorDir . '/chillerlan/php-qrcode/src/Common/GenericGFPoly.php',
+ 'chillerlan\\QRCode\\Common\\IMagickLuminanceSource' => $vendorDir . '/chillerlan/php-qrcode/src/Common/IMagickLuminanceSource.php',
+ 'chillerlan\\QRCode\\Common\\LuminanceSourceAbstract' => $vendorDir . '/chillerlan/php-qrcode/src/Common/LuminanceSourceAbstract.php',
+ 'chillerlan\\QRCode\\Common\\LuminanceSourceInterface' => $vendorDir . '/chillerlan/php-qrcode/src/Common/LuminanceSourceInterface.php',
+ 'chillerlan\\QRCode\\Common\\MaskPattern' => $vendorDir . '/chillerlan/php-qrcode/src/Common/MaskPattern.php',
+ 'chillerlan\\QRCode\\Common\\Mode' => $vendorDir . '/chillerlan/php-qrcode/src/Common/Mode.php',
+ 'chillerlan\\QRCode\\Common\\Version' => $vendorDir . '/chillerlan/php-qrcode/src/Common/Version.php',
'chillerlan\\QRCode\\Data\\AlphaNum' => $vendorDir . '/chillerlan/php-qrcode/src/Data/AlphaNum.php',
'chillerlan\\QRCode\\Data\\Byte' => $vendorDir . '/chillerlan/php-qrcode/src/Data/Byte.php',
+ 'chillerlan\\QRCode\\Data\\ECI' => $vendorDir . '/chillerlan/php-qrcode/src/Data/ECI.php',
+ 'chillerlan\\QRCode\\Data\\Hanzi' => $vendorDir . '/chillerlan/php-qrcode/src/Data/Hanzi.php',
'chillerlan\\QRCode\\Data\\Kanji' => $vendorDir . '/chillerlan/php-qrcode/src/Data/Kanji.php',
- 'chillerlan\\QRCode\\Data\\MaskPatternTester' => $vendorDir . '/chillerlan/php-qrcode/src/Data/MaskPatternTester.php',
'chillerlan\\QRCode\\Data\\Number' => $vendorDir . '/chillerlan/php-qrcode/src/Data/Number.php',
'chillerlan\\QRCode\\Data\\QRCodeDataException' => $vendorDir . '/chillerlan/php-qrcode/src/Data/QRCodeDataException.php',
- 'chillerlan\\QRCode\\Data\\QRDataAbstract' => $vendorDir . '/chillerlan/php-qrcode/src/Data/QRDataAbstract.php',
- 'chillerlan\\QRCode\\Data\\QRDataInterface' => $vendorDir . '/chillerlan/php-qrcode/src/Data/QRDataInterface.php',
+ 'chillerlan\\QRCode\\Data\\QRData' => $vendorDir . '/chillerlan/php-qrcode/src/Data/QRData.php',
+ 'chillerlan\\QRCode\\Data\\QRDataModeAbstract' => $vendorDir . '/chillerlan/php-qrcode/src/Data/QRDataModeAbstract.php',
+ 'chillerlan\\QRCode\\Data\\QRDataModeInterface' => $vendorDir . '/chillerlan/php-qrcode/src/Data/QRDataModeInterface.php',
'chillerlan\\QRCode\\Data\\QRMatrix' => $vendorDir . '/chillerlan/php-qrcode/src/Data/QRMatrix.php',
- 'chillerlan\\QRCode\\Helpers\\BitBuffer' => $vendorDir . '/chillerlan/php-qrcode/src/Helpers/BitBuffer.php',
- 'chillerlan\\QRCode\\Helpers\\Polynomial' => $vendorDir . '/chillerlan/php-qrcode/src/Helpers/Polynomial.php',
+ 'chillerlan\\QRCode\\Data\\ReedSolomonEncoder' => $vendorDir . '/chillerlan/php-qrcode/src/Data/ReedSolomonEncoder.php',
+ 'chillerlan\\QRCode\\Decoder\\Binarizer' => $vendorDir . '/chillerlan/php-qrcode/src/Decoder/Binarizer.php',
+ 'chillerlan\\QRCode\\Decoder\\BitMatrix' => $vendorDir . '/chillerlan/php-qrcode/src/Decoder/BitMatrix.php',
+ 'chillerlan\\QRCode\\Decoder\\Decoder' => $vendorDir . '/chillerlan/php-qrcode/src/Decoder/Decoder.php',
+ 'chillerlan\\QRCode\\Decoder\\DecoderResult' => $vendorDir . '/chillerlan/php-qrcode/src/Decoder/DecoderResult.php',
+ 'chillerlan\\QRCode\\Decoder\\QRCodeDecoderException' => $vendorDir . '/chillerlan/php-qrcode/src/Decoder/QRCodeDecoderException.php',
+ 'chillerlan\\QRCode\\Decoder\\ReedSolomonDecoder' => $vendorDir . '/chillerlan/php-qrcode/src/Decoder/ReedSolomonDecoder.php',
+ 'chillerlan\\QRCode\\Detector\\AlignmentPattern' => $vendorDir . '/chillerlan/php-qrcode/src/Detector/AlignmentPattern.php',
+ 'chillerlan\\QRCode\\Detector\\AlignmentPatternFinder' => $vendorDir . '/chillerlan/php-qrcode/src/Detector/AlignmentPatternFinder.php',
+ 'chillerlan\\QRCode\\Detector\\Detector' => $vendorDir . '/chillerlan/php-qrcode/src/Detector/Detector.php',
+ 'chillerlan\\QRCode\\Detector\\FinderPattern' => $vendorDir . '/chillerlan/php-qrcode/src/Detector/FinderPattern.php',
+ 'chillerlan\\QRCode\\Detector\\FinderPatternFinder' => $vendorDir . '/chillerlan/php-qrcode/src/Detector/FinderPatternFinder.php',
+ 'chillerlan\\QRCode\\Detector\\GridSampler' => $vendorDir . '/chillerlan/php-qrcode/src/Detector/GridSampler.php',
+ 'chillerlan\\QRCode\\Detector\\PerspectiveTransform' => $vendorDir . '/chillerlan/php-qrcode/src/Detector/PerspectiveTransform.php',
+ 'chillerlan\\QRCode\\Detector\\QRCodeDetectorException' => $vendorDir . '/chillerlan/php-qrcode/src/Detector/QRCodeDetectorException.php',
+ 'chillerlan\\QRCode\\Detector\\ResultPoint' => $vendorDir . '/chillerlan/php-qrcode/src/Detector/ResultPoint.php',
'chillerlan\\QRCode\\Output\\QRCodeOutputException' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRCodeOutputException.php',
+ 'chillerlan\\QRCode\\Output\\QREps' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QREps.php',
'chillerlan\\QRCode\\Output\\QRFpdf' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRFpdf.php',
+ 'chillerlan\\QRCode\\Output\\QRGdImage' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRGdImage.php',
+ 'chillerlan\\QRCode\\Output\\QRGdImageBMP' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRGdImageBMP.php',
+ 'chillerlan\\QRCode\\Output\\QRGdImageGIF' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRGdImageGIF.php',
+ 'chillerlan\\QRCode\\Output\\QRGdImageJPEG' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRGdImageJPEG.php',
+ 'chillerlan\\QRCode\\Output\\QRGdImagePNG' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRGdImagePNG.php',
+ 'chillerlan\\QRCode\\Output\\QRGdImageWEBP' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRGdImageWEBP.php',
'chillerlan\\QRCode\\Output\\QRImage' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRImage.php',
'chillerlan\\QRCode\\Output\\QRImagick' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRImagick.php',
'chillerlan\\QRCode\\Output\\QRMarkup' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRMarkup.php',
+ 'chillerlan\\QRCode\\Output\\QRMarkupHTML' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRMarkupHTML.php',
+ 'chillerlan\\QRCode\\Output\\QRMarkupSVG' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRMarkupSVG.php',
'chillerlan\\QRCode\\Output\\QROutputAbstract' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QROutputAbstract.php',
'chillerlan\\QRCode\\Output\\QROutputInterface' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QROutputInterface.php',
'chillerlan\\QRCode\\Output\\QRString' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRString.php',
+ 'chillerlan\\QRCode\\Output\\QRStringJSON' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRStringJSON.php',
+ 'chillerlan\\QRCode\\Output\\QRStringText' => $vendorDir . '/chillerlan/php-qrcode/src/Output/QRStringText.php',
'chillerlan\\QRCode\\QRCode' => $vendorDir . '/chillerlan/php-qrcode/src/QRCode.php',
'chillerlan\\QRCode\\QRCodeException' => $vendorDir . '/chillerlan/php-qrcode/src/QRCodeException.php',
'chillerlan\\QRCode\\QROptions' => $vendorDir . '/chillerlan/php-qrcode/src/QROptions.php',
diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php
index 65808f1eb..4fa3c3acf 100644
--- a/vendor/composer/autoload_files.php
+++ b/vendor/composer/autoload_files.php
@@ -7,14 +7,18 @@ $baseDir = dirname($vendorDir);
return array(
'383eaff206634a77a1be54e64e6459c7' => $vendorDir . '/sabre/uri/lib/functions.php',
+ '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
'2b9d0f43f9552984cfa82fee95491826' => $vendorDir . '/sabre/event/lib/coroutine.php',
'd81bab31d3feb45bfe2f283ea3c8fdf7' => $vendorDir . '/sabre/event/lib/Loop/functions.php',
'a1cce3d26cc15c00fcd0b3354bd72c88' => $vendorDir . '/sabre/event/lib/Promise/functions.php',
'3569eecfeed3bcf0bad3c998a494ecb8' => $vendorDir . '/sabre/xml/lib/Deserializer/functions.php',
'93aa591bc4ca510c520999e34229ee79' => $vendorDir . '/sabre/xml/lib/Serializer/functions.php',
- '23c18046f52bef3eea034657bafda50f' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php',
+ '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
+ '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
'ebdb698ed4152ae445614b69b5e4bb6a' => $vendorDir . '/sabre/http/lib/functions.php',
+ '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
'2cffec82183ee1cea088009cef9a6fc3' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php',
'decc78cc4436b1292c6c0d151b19445c' => $vendorDir . '/phpseclib/phpseclib/phpseclib/bootstrap.php',
'e39a8b23c42d4e1452234d762b03835a' => $vendorDir . '/ramsey/uuid/src/functions.php',
+ 'c15d4a1253e33e055d05e547c61dcb71' => $vendorDir . '/smarty/smarty/src/functions.php',
);
diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php
index c2a27512d..05e9ab3f5 100644
--- a/vendor/composer/autoload_psr4.php
+++ b/vendor/composer/autoload_psr4.php
@@ -6,14 +6,18 @@ $vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
- 'voku\\' => array($vendorDir . '/voku/portable-ascii/src/voku', $vendorDir . '/voku/stop-words/src/voku'),
+ 'voku\\' => array($vendorDir . '/voku/stop-words/src/voku', $vendorDir . '/voku/portable-ascii/src/voku'),
'phpseclib\\' => array($vendorDir . '/phpseclib/phpseclib/phpseclib'),
'chillerlan\\Settings\\' => array($vendorDir . '/chillerlan/php-settings-container/src'),
'chillerlan\\QRCode\\' => array($vendorDir . '/chillerlan/php-qrcode/src'),
'Zotlabs\\' => array($baseDir . '/Zotlabs'),
- 'Symfony\\Polyfill\\Php81\\' => array($vendorDir . '/symfony/polyfill-php81'),
+ 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
+ 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
+ 'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'),
'StephenHill\\Benchmarks\\' => array($vendorDir . '/stephenhill/base58/benchmarks'),
'StephenHill\\' => array($vendorDir . '/stephenhill/base58/src'),
+ 'SourceSpan\\' => array($vendorDir . '/scssphp/source-span/src'),
+ 'Smarty\\' => array($vendorDir . '/smarty/smarty/src'),
'SimplePie\\' => array($vendorDir . '/simplepie/simplepie/src'),
'ScssPhp\\ScssPhp\\' => array($vendorDir . '/scssphp/scssphp/src'),
'Sabre\\Xml\\' => array($vendorDir . '/sabre/xml/lib'),
@@ -25,14 +29,20 @@ return array(
'Ramsey\\Uuid\\' => array($vendorDir . '/ramsey/uuid/src'),
'Ramsey\\Collection\\' => array($vendorDir . '/ramsey/collection/src'),
'Psr\\Log\\' => array($vendorDir . '/psr/log/src'),
+ 'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-factory/src', $vendorDir . '/psr/http-message/src'),
+ 'Psr\\Clock\\' => array($vendorDir . '/psr/clock/src'),
'ParagonIE\\ConstantTime\\' => array($vendorDir . '/paragonie/constant_time_encoding/src'),
'OTPHP\\' => array($vendorDir . '/spomky-labs/otphp/src'),
'Mmccook\\JsonCanonicalizator\\' => array($vendorDir . '/mmccook/php-json-canonicalization-scheme/src'),
'Michelf\\' => array($vendorDir . '/michelf/php-markdown/Michelf'),
+ 'League\\Uri\\' => array($vendorDir . '/league/uri', $vendorDir . '/league/uri-interfaces'),
'League\\HTMLToMarkdown\\' => array($vendorDir . '/league/html-to-markdown/src'),
'LanguageDetection\\' => array($vendorDir . '/patrickschur/language-detection/src/LanguageDetection'),
'ID3Parser\\' => array($vendorDir . '/lukasreschke/id3parser/src'),
'Hubzilla\\' => array($baseDir . '/include'),
+ 'HttpSignature\\' => array($vendorDir . '/macgirvin/http-message-signer/src'),
+ 'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
'CommerceGuys\\Intl\\' => array($vendorDir . '/commerceguys/intl/src'),
'Brick\\Math\\' => array($vendorDir . '/brick/math/src'),
+ 'Bakame\\Http\\StructuredFields\\' => array($vendorDir . '/bakame/http-structured-fields/src'),
);
diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php
index 1b958f6a8..b0e4fc912 100644
--- a/vendor/composer/autoload_static.php
+++ b/vendor/composer/autoload_static.php
@@ -8,16 +8,20 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
{
public static $files = array (
'383eaff206634a77a1be54e64e6459c7' => __DIR__ . '/..' . '/sabre/uri/lib/functions.php',
+ '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
'2b9d0f43f9552984cfa82fee95491826' => __DIR__ . '/..' . '/sabre/event/lib/coroutine.php',
'd81bab31d3feb45bfe2f283ea3c8fdf7' => __DIR__ . '/..' . '/sabre/event/lib/Loop/functions.php',
'a1cce3d26cc15c00fcd0b3354bd72c88' => __DIR__ . '/..' . '/sabre/event/lib/Promise/functions.php',
'3569eecfeed3bcf0bad3c998a494ecb8' => __DIR__ . '/..' . '/sabre/xml/lib/Deserializer/functions.php',
'93aa591bc4ca510c520999e34229ee79' => __DIR__ . '/..' . '/sabre/xml/lib/Serializer/functions.php',
- '23c18046f52bef3eea034657bafda50f' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php',
+ '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
+ '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
'ebdb698ed4152ae445614b69b5e4bb6a' => __DIR__ . '/..' . '/sabre/http/lib/functions.php',
+ '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
'2cffec82183ee1cea088009cef9a6fc3' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php',
'decc78cc4436b1292c6c0d151b19445c' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/bootstrap.php',
'e39a8b23c42d4e1452234d762b03835a' => __DIR__ . '/..' . '/ramsey/uuid/src/functions.php',
+ 'c15d4a1253e33e055d05e547c61dcb71' => __DIR__ . '/..' . '/smarty/smarty/src/functions.php',
);
public static $prefixLengthsPsr4 = array (
@@ -40,9 +44,13 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
),
'S' =>
array (
- 'Symfony\\Polyfill\\Php81\\' => 23,
+ 'Symfony\\Polyfill\\Mbstring\\' => 26,
+ 'Symfony\\Polyfill\\Ctype\\' => 23,
+ 'Symfony\\Component\\Filesystem\\' => 29,
'StephenHill\\Benchmarks\\' => 23,
'StephenHill\\' => 12,
+ 'SourceSpan\\' => 11,
+ 'Smarty\\' => 7,
'SimplePie\\' => 10,
'ScssPhp\\ScssPhp\\' => 16,
'Sabre\\Xml\\' => 10,
@@ -60,6 +68,8 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'P' =>
array (
'Psr\\Log\\' => 8,
+ 'Psr\\Http\\Message\\' => 17,
+ 'Psr\\Clock\\' => 10,
'ParagonIE\\ConstantTime\\' => 23,
),
'O' =>
@@ -73,6 +83,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
),
'L' =>
array (
+ 'League\\Uri\\' => 11,
'League\\HTMLToMarkdown\\' => 22,
'LanguageDetection\\' => 18,
),
@@ -83,6 +94,11 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'H' =>
array (
'Hubzilla\\' => 9,
+ 'HttpSignature\\' => 14,
+ ),
+ 'G' =>
+ array (
+ 'GuzzleHttp\\Psr7\\' => 16,
),
'C' =>
array (
@@ -91,14 +107,15 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'B' =>
array (
'Brick\\Math\\' => 11,
+ 'Bakame\\Http\\StructuredFields\\' => 29,
),
);
public static $prefixDirsPsr4 = array (
'voku\\' =>
array (
- 0 => __DIR__ . '/..' . '/voku/portable-ascii/src/voku',
- 1 => __DIR__ . '/..' . '/voku/stop-words/src/voku',
+ 0 => __DIR__ . '/..' . '/voku/stop-words/src/voku',
+ 1 => __DIR__ . '/..' . '/voku/portable-ascii/src/voku',
),
'phpseclib\\' =>
array (
@@ -116,9 +133,17 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
array (
0 => __DIR__ . '/../..' . '/Zotlabs',
),
- 'Symfony\\Polyfill\\Php81\\' =>
+ 'Symfony\\Polyfill\\Mbstring\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
+ ),
+ 'Symfony\\Polyfill\\Ctype\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
+ ),
+ 'Symfony\\Component\\Filesystem\\' =>
array (
- 0 => __DIR__ . '/..' . '/symfony/polyfill-php81',
+ 0 => __DIR__ . '/..' . '/symfony/filesystem',
),
'StephenHill\\Benchmarks\\' =>
array (
@@ -128,6 +153,14 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
array (
0 => __DIR__ . '/..' . '/stephenhill/base58/src',
),
+ 'SourceSpan\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/scssphp/source-span/src',
+ ),
+ 'Smarty\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/smarty/smarty/src',
+ ),
'SimplePie\\' =>
array (
0 => __DIR__ . '/..' . '/simplepie/simplepie/src',
@@ -172,6 +205,15 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
array (
0 => __DIR__ . '/..' . '/psr/log/src',
),
+ 'Psr\\Http\\Message\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/psr/http-factory/src',
+ 1 => __DIR__ . '/..' . '/psr/http-message/src',
+ ),
+ 'Psr\\Clock\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/psr/clock/src',
+ ),
'ParagonIE\\ConstantTime\\' =>
array (
0 => __DIR__ . '/..' . '/paragonie/constant_time_encoding/src',
@@ -188,6 +230,11 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
array (
0 => __DIR__ . '/..' . '/michelf/php-markdown/Michelf',
),
+ 'League\\Uri\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/league/uri',
+ 1 => __DIR__ . '/..' . '/league/uri-interfaces',
+ ),
'League\\HTMLToMarkdown\\' =>
array (
0 => __DIR__ . '/..' . '/league/html-to-markdown/src',
@@ -204,6 +251,14 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
array (
0 => __DIR__ . '/../..' . '/include',
),
+ 'HttpSignature\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/macgirvin/http-message-signer/src',
+ ),
+ 'GuzzleHttp\\Psr7\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src',
+ ),
'CommerceGuys\\Intl\\' =>
array (
0 => __DIR__ . '/..' . '/commerceguys/intl/src',
@@ -212,6 +267,10 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
array (
0 => __DIR__ . '/..' . '/brick/math/src',
),
+ 'Bakame\\Http\\StructuredFields\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/bakame/http-structured-fields/src',
+ ),
);
public static $prefixesPsr0 = array (
@@ -253,6 +312,36 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
);
public static $classMap = array (
+ 'Bakame\\Http\\StructuredFields\\Bytes' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Bytes.php',
+ 'Bakame\\Http\\StructuredFields\\DataType' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/DataType.php',
+ 'Bakame\\Http\\StructuredFields\\Dictionary' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Dictionary.php',
+ 'Bakame\\Http\\StructuredFields\\DisplayString' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/DisplayString.php',
+ 'Bakame\\Http\\StructuredFields\\ForbiddenOperation' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/ForbiddenOperation.php',
+ 'Bakame\\Http\\StructuredFields\\Ietf' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Ietf.php',
+ 'Bakame\\Http\\StructuredFields\\InnerList' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/InnerList.php',
+ 'Bakame\\Http\\StructuredFields\\InvalidArgument' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/InvalidArgument.php',
+ 'Bakame\\Http\\StructuredFields\\InvalidOffset' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/InvalidOffset.php',
+ 'Bakame\\Http\\StructuredFields\\Item' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Item.php',
+ 'Bakame\\Http\\StructuredFields\\Key' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Key.php',
+ 'Bakame\\Http\\StructuredFields\\Member' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Member.php',
+ 'Bakame\\Http\\StructuredFields\\MissingFeature' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/MissingFeature.php',
+ 'Bakame\\Http\\StructuredFields\\OuterList' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/OuterList.php',
+ 'Bakame\\Http\\StructuredFields\\ParameterAccess' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/ParameterAccess.php',
+ 'Bakame\\Http\\StructuredFields\\Parameters' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Parameters.php',
+ 'Bakame\\Http\\StructuredFields\\Parser' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Parser.php',
+ 'Bakame\\Http\\StructuredFields\\StructuredFieldError' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/StructuredFieldError.php',
+ 'Bakame\\Http\\StructuredFields\\StructuredFieldProvider' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/StructuredFieldProvider.php',
+ 'Bakame\\Http\\StructuredFields\\SyntaxError' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/SyntaxError.php',
+ 'Bakame\\Http\\StructuredFields\\Token' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Token.php',
+ 'Bakame\\Http\\StructuredFields\\Type' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Type.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\ErrorCode' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Validation/ErrorCode.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\ItemValidator' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Validation/ItemValidator.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\ParametersValidator' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Validation/ParametersValidator.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\Result' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Validation/Result.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\ValidatedItem' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Validation/ValidatedItem.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\ValidatedParameters' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Validation/ValidatedParameters.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\Violation' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Validation/Violation.php',
+ 'Bakame\\Http\\StructuredFields\\Validation\\ViolationList' => __DIR__ . '/..' . '/bakame/http-structured-fields/src/Validation/ViolationList.php',
'Brick\\Math\\BigDecimal' => __DIR__ . '/..' . '/brick/math/src/BigDecimal.php',
'Brick\\Math\\BigInteger' => __DIR__ . '/..' . '/brick/math/src/BigInteger.php',
'Brick\\Math\\BigNumber' => __DIR__ . '/..' . '/brick/math/src/BigNumber.php',
@@ -268,7 +357,6 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Brick\\Math\\Internal\\Calculator\\GmpCalculator' => __DIR__ . '/..' . '/brick/math/src/Internal/Calculator/GmpCalculator.php',
'Brick\\Math\\Internal\\Calculator\\NativeCalculator' => __DIR__ . '/..' . '/brick/math/src/Internal/Calculator/NativeCalculator.php',
'Brick\\Math\\RoundingMode' => __DIR__ . '/..' . '/brick/math/src/RoundingMode.php',
- 'CURLStringFile' => __DIR__ . '/..' . '/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php',
'CommerceGuys\\Intl\\Calculator' => __DIR__ . '/..' . '/commerceguys/intl/src/Calculator.php',
'CommerceGuys\\Intl\\Currency\\Currency' => __DIR__ . '/..' . '/commerceguys/intl/src/Currency/Currency.php',
'CommerceGuys\\Intl\\Currency\\CurrencyRepository' => __DIR__ . '/..' . '/commerceguys/intl/src/Currency/CurrencyRepository.php',
@@ -292,6 +380,37 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'CommerceGuys\\Intl\\NumberFormat\\NumberFormatRepository' => __DIR__ . '/..' . '/commerceguys/intl/src/NumberFormat/NumberFormatRepository.php',
'CommerceGuys\\Intl\\NumberFormat\\NumberFormatRepositoryInterface' => __DIR__ . '/..' . '/commerceguys/intl/src/NumberFormat/NumberFormatRepositoryInterface.php',
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
+ 'GuzzleHttp\\Psr7\\AppendStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/AppendStream.php',
+ 'GuzzleHttp\\Psr7\\BufferStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/BufferStream.php',
+ 'GuzzleHttp\\Psr7\\CachingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/CachingStream.php',
+ 'GuzzleHttp\\Psr7\\DroppingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/DroppingStream.php',
+ 'GuzzleHttp\\Psr7\\Exception\\MalformedUriException' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Exception/MalformedUriException.php',
+ 'GuzzleHttp\\Psr7\\FnStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/FnStream.php',
+ 'GuzzleHttp\\Psr7\\Header' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Header.php',
+ 'GuzzleHttp\\Psr7\\HttpFactory' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/HttpFactory.php',
+ 'GuzzleHttp\\Psr7\\InflateStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/InflateStream.php',
+ 'GuzzleHttp\\Psr7\\LazyOpenStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LazyOpenStream.php',
+ 'GuzzleHttp\\Psr7\\LimitStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LimitStream.php',
+ 'GuzzleHttp\\Psr7\\Message' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Message.php',
+ 'GuzzleHttp\\Psr7\\MessageTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MessageTrait.php',
+ 'GuzzleHttp\\Psr7\\MimeType' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MimeType.php',
+ 'GuzzleHttp\\Psr7\\MultipartStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MultipartStream.php',
+ 'GuzzleHttp\\Psr7\\NoSeekStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/NoSeekStream.php',
+ 'GuzzleHttp\\Psr7\\PumpStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/PumpStream.php',
+ 'GuzzleHttp\\Psr7\\Query' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Query.php',
+ 'GuzzleHttp\\Psr7\\Request' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Request.php',
+ 'GuzzleHttp\\Psr7\\Response' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Response.php',
+ 'GuzzleHttp\\Psr7\\Rfc7230' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Rfc7230.php',
+ 'GuzzleHttp\\Psr7\\ServerRequest' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/ServerRequest.php',
+ 'GuzzleHttp\\Psr7\\Stream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Stream.php',
+ 'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
+ 'GuzzleHttp\\Psr7\\StreamWrapper' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamWrapper.php',
+ 'GuzzleHttp\\Psr7\\UploadedFile' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UploadedFile.php',
+ 'GuzzleHttp\\Psr7\\Uri' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Uri.php',
+ 'GuzzleHttp\\Psr7\\UriComparator' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriComparator.php',
+ 'GuzzleHttp\\Psr7\\UriNormalizer' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriNormalizer.php',
+ 'GuzzleHttp\\Psr7\\UriResolver' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriResolver.php',
+ 'GuzzleHttp\\Psr7\\Utils' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Utils.php',
'HTMLPurifier' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier.php',
'HTMLPurifier_Arborize' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Arborize.php',
'HTMLPurifier_AttrCollections' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrCollections.php',
@@ -314,6 +433,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'HTMLPurifier_AttrDef_CSS_Multiple' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php',
'HTMLPurifier_AttrDef_CSS_Number' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php',
'HTMLPurifier_AttrDef_CSS_Percentage' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php',
+ 'HTMLPurifier_AttrDef_CSS_Ratio' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ratio.php',
'HTMLPurifier_AttrDef_CSS_TextDecoration' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php',
'HTMLPurifier_AttrDef_CSS_URI' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php',
'HTMLPurifier_AttrDef_Clone' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php',
@@ -523,6 +643,8 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'HTMLPurifier_VarParser_Flexible' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php',
'HTMLPurifier_VarParser_Native' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php',
'HTMLPurifier_Zipper' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Zipper.php',
+ 'HttpSignature\\HttpMessageSigner' => __DIR__ . '/..' . '/macgirvin/http-message-signer/src/HttpMessageSigner.php',
+ 'HttpSignature\\StructuredFieldTypes' => __DIR__ . '/..' . '/macgirvin/http-message-signer/src/StructuredFieldTypes.php',
'ID3Parser\\ID3Parser' => __DIR__ . '/..' . '/lukasreschke/id3parser/src/ID3Parser.php',
'ID3Parser\\getID3\\Tags\\getid3_id3v1' => __DIR__ . '/..' . '/lukasreschke/id3parser/src/getID3/Tags/getid3_id3v1.php',
'ID3Parser\\getID3\\Tags\\getid3_id3v2' => __DIR__ . '/..' . '/lukasreschke/id3parser/src/getID3/Tags/getid3_id3v2.php',
@@ -563,6 +685,53 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'League\\HTMLToMarkdown\\HtmlConverter' => __DIR__ . '/..' . '/league/html-to-markdown/src/HtmlConverter.php',
'League\\HTMLToMarkdown\\HtmlConverterInterface' => __DIR__ . '/..' . '/league/html-to-markdown/src/HtmlConverterInterface.php',
'League\\HTMLToMarkdown\\PreConverterInterface' => __DIR__ . '/..' . '/league/html-to-markdown/src/PreConverterInterface.php',
+ 'League\\Uri\\BaseUri' => __DIR__ . '/..' . '/league/uri/BaseUri.php',
+ 'League\\Uri\\Contracts\\AuthorityInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/AuthorityInterface.php',
+ 'League\\Uri\\Contracts\\DataPathInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/DataPathInterface.php',
+ 'League\\Uri\\Contracts\\DomainHostInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/DomainHostInterface.php',
+ 'League\\Uri\\Contracts\\FragmentInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/FragmentInterface.php',
+ 'League\\Uri\\Contracts\\HostInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/HostInterface.php',
+ 'League\\Uri\\Contracts\\IpHostInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/IpHostInterface.php',
+ 'League\\Uri\\Contracts\\PathInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/PathInterface.php',
+ 'League\\Uri\\Contracts\\PortInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/PortInterface.php',
+ 'League\\Uri\\Contracts\\QueryInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/QueryInterface.php',
+ 'League\\Uri\\Contracts\\SegmentedPathInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/SegmentedPathInterface.php',
+ 'League\\Uri\\Contracts\\UriAccess' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/UriAccess.php',
+ 'League\\Uri\\Contracts\\UriComponentInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/UriComponentInterface.php',
+ 'League\\Uri\\Contracts\\UriException' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/UriException.php',
+ 'League\\Uri\\Contracts\\UriInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/UriInterface.php',
+ 'League\\Uri\\Contracts\\UserInfoInterface' => __DIR__ . '/..' . '/league/uri-interfaces/Contracts/UserInfoInterface.php',
+ 'League\\Uri\\Encoder' => __DIR__ . '/..' . '/league/uri-interfaces/Encoder.php',
+ 'League\\Uri\\Exceptions\\ConversionFailed' => __DIR__ . '/..' . '/league/uri-interfaces/Exceptions/ConversionFailed.php',
+ 'League\\Uri\\Exceptions\\MissingFeature' => __DIR__ . '/..' . '/league/uri-interfaces/Exceptions/MissingFeature.php',
+ 'League\\Uri\\Exceptions\\OffsetOutOfBounds' => __DIR__ . '/..' . '/league/uri-interfaces/Exceptions/OffsetOutOfBounds.php',
+ 'League\\Uri\\Exceptions\\SyntaxError' => __DIR__ . '/..' . '/league/uri-interfaces/Exceptions/SyntaxError.php',
+ 'League\\Uri\\FeatureDetection' => __DIR__ . '/..' . '/league/uri-interfaces/FeatureDetection.php',
+ 'League\\Uri\\Http' => __DIR__ . '/..' . '/league/uri/Http.php',
+ 'League\\Uri\\HttpFactory' => __DIR__ . '/..' . '/league/uri/HttpFactory.php',
+ 'League\\Uri\\IPv4\\BCMathCalculator' => __DIR__ . '/..' . '/league/uri-interfaces/IPv4/BCMathCalculator.php',
+ 'League\\Uri\\IPv4\\Calculator' => __DIR__ . '/..' . '/league/uri-interfaces/IPv4/Calculator.php',
+ 'League\\Uri\\IPv4\\Converter' => __DIR__ . '/..' . '/league/uri-interfaces/IPv4/Converter.php',
+ 'League\\Uri\\IPv4\\GMPCalculator' => __DIR__ . '/..' . '/league/uri-interfaces/IPv4/GMPCalculator.php',
+ 'League\\Uri\\IPv4\\NativeCalculator' => __DIR__ . '/..' . '/league/uri-interfaces/IPv4/NativeCalculator.php',
+ 'League\\Uri\\IPv6\\Converter' => __DIR__ . '/..' . '/league/uri-interfaces/IPv6/Converter.php',
+ 'League\\Uri\\Idna\\Converter' => __DIR__ . '/..' . '/league/uri-interfaces/Idna/Converter.php',
+ 'League\\Uri\\Idna\\Error' => __DIR__ . '/..' . '/league/uri-interfaces/Idna/Error.php',
+ 'League\\Uri\\Idna\\Option' => __DIR__ . '/..' . '/league/uri-interfaces/Idna/Option.php',
+ 'League\\Uri\\Idna\\Result' => __DIR__ . '/..' . '/league/uri-interfaces/Idna/Result.php',
+ 'League\\Uri\\KeyValuePair\\Converter' => __DIR__ . '/..' . '/league/uri-interfaces/KeyValuePair/Converter.php',
+ 'League\\Uri\\QueryString' => __DIR__ . '/..' . '/league/uri-interfaces/QueryString.php',
+ 'League\\Uri\\Uri' => __DIR__ . '/..' . '/league/uri/Uri.php',
+ 'League\\Uri\\UriInfo' => __DIR__ . '/..' . '/league/uri/UriInfo.php',
+ 'League\\Uri\\UriResolver' => __DIR__ . '/..' . '/league/uri/UriResolver.php',
+ 'League\\Uri\\UriString' => __DIR__ . '/..' . '/league/uri-interfaces/UriString.php',
+ 'League\\Uri\\UriTemplate' => __DIR__ . '/..' . '/league/uri/UriTemplate.php',
+ 'League\\Uri\\UriTemplate\\Expression' => __DIR__ . '/..' . '/league/uri/UriTemplate/Expression.php',
+ 'League\\Uri\\UriTemplate\\Operator' => __DIR__ . '/..' . '/league/uri/UriTemplate/Operator.php',
+ 'League\\Uri\\UriTemplate\\Template' => __DIR__ . '/..' . '/league/uri/UriTemplate/Template.php',
+ 'League\\Uri\\UriTemplate\\TemplateCanNotBeExpanded' => __DIR__ . '/..' . '/league/uri/UriTemplate/TemplateCanNotBeExpanded.php',
+ 'League\\Uri\\UriTemplate\\VarSpecifier' => __DIR__ . '/..' . '/league/uri/UriTemplate/VarSpecifier.php',
+ 'League\\Uri\\UriTemplate\\VariableBag' => __DIR__ . '/..' . '/league/uri/UriTemplate/VariableBag.php',
'Michelf\\Markdown' => __DIR__ . '/..' . '/michelf/php-markdown/Michelf/Markdown.php',
'Michelf\\MarkdownExtra' => __DIR__ . '/..' . '/michelf/php-markdown/Michelf/MarkdownExtra.php',
'Michelf\\MarkdownInterface' => __DIR__ . '/..' . '/michelf/php-markdown/Michelf/MarkdownInterface.php',
@@ -642,6 +811,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'OTPHP\\FactoryInterface' => __DIR__ . '/..' . '/spomky-labs/otphp/src/FactoryInterface.php',
'OTPHP\\HOTP' => __DIR__ . '/..' . '/spomky-labs/otphp/src/HOTP.php',
'OTPHP\\HOTPInterface' => __DIR__ . '/..' . '/spomky-labs/otphp/src/HOTPInterface.php',
+ 'OTPHP\\InternalClock' => __DIR__ . '/..' . '/spomky-labs/otphp/src/InternalClock.php',
'OTPHP\\OTP' => __DIR__ . '/..' . '/spomky-labs/otphp/src/OTP.php',
'OTPHP\\OTPInterface' => __DIR__ . '/..' . '/spomky-labs/otphp/src/OTPInterface.php',
'OTPHP\\ParameterTrait' => __DIR__ . '/..' . '/spomky-labs/otphp/src/ParameterTrait.php',
@@ -659,6 +829,20 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'ParagonIE\\ConstantTime\\Encoding' => __DIR__ . '/..' . '/paragonie/constant_time_encoding/src/Encoding.php',
'ParagonIE\\ConstantTime\\Hex' => __DIR__ . '/..' . '/paragonie/constant_time_encoding/src/Hex.php',
'ParagonIE\\ConstantTime\\RFC4648' => __DIR__ . '/..' . '/paragonie/constant_time_encoding/src/RFC4648.php',
+ 'Psr\\Clock\\ClockInterface' => __DIR__ . '/..' . '/psr/clock/src/ClockInterface.php',
+ 'Psr\\Http\\Message\\MessageInterface' => __DIR__ . '/..' . '/psr/http-message/src/MessageInterface.php',
+ 'Psr\\Http\\Message\\RequestFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/RequestFactoryInterface.php',
+ 'Psr\\Http\\Message\\RequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/RequestInterface.php',
+ 'Psr\\Http\\Message\\ResponseFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/ResponseFactoryInterface.php',
+ 'Psr\\Http\\Message\\ResponseInterface' => __DIR__ . '/..' . '/psr/http-message/src/ResponseInterface.php',
+ 'Psr\\Http\\Message\\ServerRequestFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/ServerRequestFactoryInterface.php',
+ 'Psr\\Http\\Message\\ServerRequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/ServerRequestInterface.php',
+ 'Psr\\Http\\Message\\StreamFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/StreamFactoryInterface.php',
+ 'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php',
+ 'Psr\\Http\\Message\\UploadedFileFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/UploadedFileFactoryInterface.php',
+ 'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php',
+ 'Psr\\Http\\Message\\UriFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/UriFactoryInterface.php',
+ 'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php',
'Psr\\Log\\AbstractLogger' => __DIR__ . '/..' . '/psr/log/src/AbstractLogger.php',
'Psr\\Log\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/log/src/InvalidArgumentException.php',
'Psr\\Log\\LogLevel' => __DIR__ . '/..' . '/psr/log/src/LogLevel.php',
@@ -675,13 +859,13 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Ramsey\\Collection\\CollectionInterface' => __DIR__ . '/..' . '/ramsey/collection/src/CollectionInterface.php',
'Ramsey\\Collection\\DoubleEndedQueue' => __DIR__ . '/..' . '/ramsey/collection/src/DoubleEndedQueue.php',
'Ramsey\\Collection\\DoubleEndedQueueInterface' => __DIR__ . '/..' . '/ramsey/collection/src/DoubleEndedQueueInterface.php',
+ 'Ramsey\\Collection\\Exception\\CollectionException' => __DIR__ . '/..' . '/ramsey/collection/src/Exception/CollectionException.php',
'Ramsey\\Collection\\Exception\\CollectionMismatchException' => __DIR__ . '/..' . '/ramsey/collection/src/Exception/CollectionMismatchException.php',
'Ramsey\\Collection\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/ramsey/collection/src/Exception/InvalidArgumentException.php',
- 'Ramsey\\Collection\\Exception\\InvalidSortOrderException' => __DIR__ . '/..' . '/ramsey/collection/src/Exception/InvalidSortOrderException.php',
+ 'Ramsey\\Collection\\Exception\\InvalidPropertyOrMethod' => __DIR__ . '/..' . '/ramsey/collection/src/Exception/InvalidPropertyOrMethod.php',
'Ramsey\\Collection\\Exception\\NoSuchElementException' => __DIR__ . '/..' . '/ramsey/collection/src/Exception/NoSuchElementException.php',
'Ramsey\\Collection\\Exception\\OutOfBoundsException' => __DIR__ . '/..' . '/ramsey/collection/src/Exception/OutOfBoundsException.php',
'Ramsey\\Collection\\Exception\\UnsupportedOperationException' => __DIR__ . '/..' . '/ramsey/collection/src/Exception/UnsupportedOperationException.php',
- 'Ramsey\\Collection\\Exception\\ValueExtractionException' => __DIR__ . '/..' . '/ramsey/collection/src/Exception/ValueExtractionException.php',
'Ramsey\\Collection\\GenericArray' => __DIR__ . '/..' . '/ramsey/collection/src/GenericArray.php',
'Ramsey\\Collection\\Map\\AbstractMap' => __DIR__ . '/..' . '/ramsey/collection/src/Map/AbstractMap.php',
'Ramsey\\Collection\\Map\\AbstractTypedMap' => __DIR__ . '/..' . '/ramsey/collection/src/Map/AbstractTypedMap.php',
@@ -693,6 +877,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Ramsey\\Collection\\Queue' => __DIR__ . '/..' . '/ramsey/collection/src/Queue.php',
'Ramsey\\Collection\\QueueInterface' => __DIR__ . '/..' . '/ramsey/collection/src/QueueInterface.php',
'Ramsey\\Collection\\Set' => __DIR__ . '/..' . '/ramsey/collection/src/Set.php',
+ 'Ramsey\\Collection\\Sort' => __DIR__ . '/..' . '/ramsey/collection/src/Sort.php',
'Ramsey\\Collection\\Tool\\TypeTrait' => __DIR__ . '/..' . '/ramsey/collection/src/Tool/TypeTrait.php',
'Ramsey\\Collection\\Tool\\ValueExtractorTrait' => __DIR__ . '/..' . '/ramsey/collection/src/Tool/ValueExtractorTrait.php',
'Ramsey\\Collection\\Tool\\ValueToStringTrait' => __DIR__ . '/..' . '/ramsey/collection/src/Tool/ValueToStringTrait.php',
@@ -808,7 +993,6 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Ramsey\\Uuid\\UuidInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/UuidInterface.php',
'Ramsey\\Uuid\\Validator\\GenericValidator' => __DIR__ . '/..' . '/ramsey/uuid/src/Validator/GenericValidator.php',
'Ramsey\\Uuid\\Validator\\ValidatorInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Validator/ValidatorInterface.php',
- 'ReturnTypeWillChange' => __DIR__ . '/..' . '/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php',
'Sabre\\CalDAV\\Backend\\AbstractBackend' => __DIR__ . '/..' . '/sabre/dav/lib/CalDAV/Backend/AbstractBackend.php',
'Sabre\\CalDAV\\Backend\\BackendInterface' => __DIR__ . '/..' . '/sabre/dav/lib/CalDAV/Backend/BackendInterface.php',
'Sabre\\CalDAV\\Backend\\NotificationSupport' => __DIR__ . '/..' . '/sabre/dav/lib/CalDAV/Backend/NotificationSupport.php',
@@ -1161,55 +1345,282 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Sabre\\Xml\\Writer' => __DIR__ . '/..' . '/sabre/xml/lib/Writer.php',
'Sabre\\Xml\\XmlDeserializable' => __DIR__ . '/..' . '/sabre/xml/lib/XmlDeserializable.php',
'Sabre\\Xml\\XmlSerializable' => __DIR__ . '/..' . '/sabre/xml/lib/XmlSerializable.php',
- 'ScssPhp\\ScssPhp\\Base\\Range' => __DIR__ . '/..' . '/scssphp/scssphp/src/Base/Range.php',
- 'ScssPhp\\ScssPhp\\Block' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block.php',
- 'ScssPhp\\ScssPhp\\Block\\AtRootBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block/AtRootBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\CallableBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block/CallableBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\ContentBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block/ContentBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\DirectiveBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block/DirectiveBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\EachBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block/EachBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\ElseBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block/ElseBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\ElseifBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block/ElseifBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\ForBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block/ForBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\IfBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block/IfBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\MediaBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block/MediaBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\NestedPropertyBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block/NestedPropertyBlock.php',
- 'ScssPhp\\ScssPhp\\Block\\WhileBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block/WhileBlock.php',
- 'ScssPhp\\ScssPhp\\Cache' => __DIR__ . '/..' . '/scssphp/scssphp/src/Cache.php',
+ 'ScssPhp\\ScssPhp\\Ast\\AstNode' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/AstNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssAtRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssAtRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssComment' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssComment.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssDeclaration' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssImport' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssImport.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssKeyframeBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssKeyframeBlock.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssMediaQuery' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssMediaQuery.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssMediaRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssMediaRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssNode' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssParentNode' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssParentNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssStyleRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssStyleRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssStylesheet' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssStylesheet.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssSupportsRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssSupportsRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\CssValue' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/CssValue.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\IsInvisibleVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/IsInvisibleVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\MediaQueryMergeResult' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/MediaQueryMergeResult.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\MediaQuerySingletonMergeResult' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/MediaQuerySingletonMergeResult.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssAtRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/ModifiableCssAtRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssComment' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/ModifiableCssComment.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssDeclaration' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/ModifiableCssDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssImport' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/ModifiableCssImport.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssKeyframeBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/ModifiableCssKeyframeBlock.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssMediaRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/ModifiableCssMediaRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssNode' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/ModifiableCssNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssParentNode' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/ModifiableCssParentNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssStyleRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/ModifiableCssStyleRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssStylesheet' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/ModifiableCssStylesheet.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Css\\ModifiableCssSupportsRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Css/ModifiableCssSupportsRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\FakeAstNode' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/FakeAstNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Argument' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Argument.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\ArgumentDeclaration' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/ArgumentDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\ArgumentInvocation' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/ArgumentInvocation.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\AtRootQuery' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/AtRootQuery.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\CallableInvocation' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/CallableInvocation.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\ConfiguredVariable' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/ConfiguredVariable.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\BinaryOperationExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/BinaryOperationExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\BinaryOperator' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/BinaryOperator.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\BooleanExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/BooleanExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\ColorExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/ColorExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\FunctionExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/FunctionExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\IfExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/IfExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\InterpolatedFunctionExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/InterpolatedFunctionExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\IsCalculationSafeVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/IsCalculationSafeVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\ListExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/ListExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\MapExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/MapExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\NullExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/NullExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\NumberExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/NumberExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\ParenthesizedExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/ParenthesizedExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\SelectorExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/SelectorExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\StringExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/StringExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\SupportsExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/SupportsExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\UnaryOperationExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/UnaryOperationExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\UnaryOperator' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/UnaryOperator.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\ValueExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/ValueExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Expression\\VariableExpression' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Expression/VariableExpression.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Import' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Import.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Import\\DynamicImport' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Import/DynamicImport.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Import\\StaticImport' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Import/StaticImport.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Interpolation' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Interpolation.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SassDeclaration' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/SassDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SassNode' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/SassNode.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SassReference' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/SassReference.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\AtRootRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/AtRootRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\AtRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/AtRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\CallableDeclaration' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/CallableDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ContentBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/ContentBlock.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ContentRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/ContentRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\DebugRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/DebugRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\Declaration' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/Declaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\EachRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/EachRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ElseClause' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/ElseClause.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ErrorRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/ErrorRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ExtendRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/ExtendRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ForRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/ForRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\FunctionRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/FunctionRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\HasContentVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/HasContentVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\IfClause' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/IfClause.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\IfRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/IfRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\IfRuleClause' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/IfRuleClause.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ImportRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/ImportRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\IncludeRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/IncludeRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\LoudComment' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/LoudComment.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\MediaRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/MediaRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\MixinRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/MixinRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ParentStatement' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/ParentStatement.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\ReturnRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/ReturnRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\SilentComment' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/SilentComment.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\StyleRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/StyleRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\Stylesheet' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/Stylesheet.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\SupportsRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/SupportsRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\VariableDeclaration' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/VariableDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\WarnRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/WarnRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\Statement\\WhileRule' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/Statement/WhileRule.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition\\SupportsAnything' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsAnything.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition\\SupportsDeclaration' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsDeclaration.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition\\SupportsFunction' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsFunction.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition\\SupportsInterpolation' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsInterpolation.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition\\SupportsNegation' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsNegation.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Sass\\SupportsCondition\\SupportsOperation' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Sass/SupportsCondition/SupportsOperation.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\AttributeOperator' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/AttributeOperator.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\AttributeSelector' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/AttributeSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\ClassSelector' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/ClassSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\Combinator' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/Combinator.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\ComplexSelector' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/ComplexSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\ComplexSelectorComponent' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/ComplexSelectorComponent.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\CompoundSelector' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/CompoundSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\IDSelector' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/IDSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\IsBogusVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/IsBogusVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\IsInvisibleVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/IsInvisibleVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\IsUselessVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/IsUselessVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\ParentSelector' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/ParentSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\ParentSelectorVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/ParentSelectorVisitor.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\PlaceholderSelector' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/PlaceholderSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\PseudoSelector' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/PseudoSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\QualifiedName' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/QualifiedName.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\Selector' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/Selector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\SelectorList' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/SelectorList.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\SimpleSelector' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/SimpleSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\TypeSelector' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/TypeSelector.php',
+ 'ScssPhp\\ScssPhp\\Ast\\Selector\\UniversalSelector' => __DIR__ . '/..' . '/scssphp/scssphp/src/Ast/Selector/UniversalSelector.php',
+ 'ScssPhp\\ScssPhp\\Collection\\Map' => __DIR__ . '/..' . '/scssphp/scssphp/src/Collection/Map.php',
'ScssPhp\\ScssPhp\\Colors' => __DIR__ . '/..' . '/scssphp/scssphp/src/Colors.php',
'ScssPhp\\ScssPhp\\CompilationResult' => __DIR__ . '/..' . '/scssphp/scssphp/src/CompilationResult.php',
'ScssPhp\\ScssPhp\\Compiler' => __DIR__ . '/..' . '/scssphp/scssphp/src/Compiler.php',
- 'ScssPhp\\ScssPhp\\Compiler\\CachedResult' => __DIR__ . '/..' . '/scssphp/scssphp/src/Compiler/CachedResult.php',
- 'ScssPhp\\ScssPhp\\Compiler\\Environment' => __DIR__ . '/..' . '/scssphp/scssphp/src/Compiler/Environment.php',
- 'ScssPhp\\ScssPhp\\Exception\\CompilerException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/CompilerException.php',
- 'ScssPhp\\ScssPhp\\Exception\\ParserException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/ParserException.php',
- 'ScssPhp\\ScssPhp\\Exception\\RangeException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/RangeException.php',
+ 'ScssPhp\\ScssPhp\\Compiler\\LegacyValueVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Compiler/LegacyValueVisitor.php',
+ 'ScssPhp\\ScssPhp\\Deprecation' => __DIR__ . '/..' . '/scssphp/scssphp/src/Deprecation.php',
+ 'ScssPhp\\ScssPhp\\DeprecationStatus' => __DIR__ . '/..' . '/scssphp/scssphp/src/DeprecationStatus.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\ArgumentResults' => __DIR__ . '/..' . '/scssphp/scssphp/src/Evaluation/ArgumentResults.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\Environment' => __DIR__ . '/..' . '/scssphp/scssphp/src/Evaluation/Environment.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\EvaluateResult' => __DIR__ . '/..' . '/scssphp/scssphp/src/Evaluation/EvaluateResult.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\EvaluateVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Evaluation/EvaluateVisitor.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\EvaluationContext' => __DIR__ . '/..' . '/scssphp/scssphp/src/Evaluation/EvaluationContext.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\LoadedStylesheet' => __DIR__ . '/..' . '/scssphp/scssphp/src/Evaluation/LoadedStylesheet.php',
+ 'ScssPhp\\ScssPhp\\Evaluation\\VisitorEvaluationContext' => __DIR__ . '/..' . '/scssphp/scssphp/src/Evaluation/VisitorEvaluationContext.php',
+ 'ScssPhp\\ScssPhp\\Exception\\MultiSpanSassException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/MultiSpanSassException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\MultiSpanSassFormatException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/MultiSpanSassFormatException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\MultiSpanSassRuntimeException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/MultiSpanSassRuntimeException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\MultiSpanSassScriptException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/MultiSpanSassScriptException.php',
'ScssPhp\\ScssPhp\\Exception\\SassException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/SassException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\SassFormatException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/SassFormatException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\SassRuntimeException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/SassRuntimeException.php',
'ScssPhp\\ScssPhp\\Exception\\SassScriptException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/SassScriptException.php',
- 'ScssPhp\\ScssPhp\\Exception\\ServerException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/ServerException.php',
- 'ScssPhp\\ScssPhp\\Formatter' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter.php',
- 'ScssPhp\\ScssPhp\\Formatter\\Compact' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/Compact.php',
- 'ScssPhp\\ScssPhp\\Formatter\\Compressed' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/Compressed.php',
- 'ScssPhp\\ScssPhp\\Formatter\\Crunched' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/Crunched.php',
- 'ScssPhp\\ScssPhp\\Formatter\\Debug' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/Debug.php',
- 'ScssPhp\\ScssPhp\\Formatter\\Expanded' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/Expanded.php',
- 'ScssPhp\\ScssPhp\\Formatter\\Nested' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/Nested.php',
- 'ScssPhp\\ScssPhp\\Formatter\\OutputBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/OutputBlock.php',
+ 'ScssPhp\\ScssPhp\\Exception\\SimpleSassException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/SimpleSassException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\SimpleSassFormatException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/SimpleSassFormatException.php',
+ 'ScssPhp\\ScssPhp\\Exception\\SimpleSassRuntimeException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/SimpleSassRuntimeException.php',
+ 'ScssPhp\\ScssPhp\\Extend\\ComplexSelectorMap' => __DIR__ . '/..' . '/scssphp/scssphp/src/Extend/ComplexSelectorMap.php',
+ 'ScssPhp\\ScssPhp\\Extend\\ConcreteExtensionStore' => __DIR__ . '/..' . '/scssphp/scssphp/src/Extend/ConcreteExtensionStore.php',
+ 'ScssPhp\\ScssPhp\\Extend\\EmptyExtensionStore' => __DIR__ . '/..' . '/scssphp/scssphp/src/Extend/EmptyExtensionStore.php',
+ 'ScssPhp\\ScssPhp\\Extend\\ExtendMode' => __DIR__ . '/..' . '/scssphp/scssphp/src/Extend/ExtendMode.php',
+ 'ScssPhp\\ScssPhp\\Extend\\ExtendUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Extend/ExtendUtil.php',
+ 'ScssPhp\\ScssPhp\\Extend\\Extender' => __DIR__ . '/..' . '/scssphp/scssphp/src/Extend/Extender.php',
+ 'ScssPhp\\ScssPhp\\Extend\\Extension' => __DIR__ . '/..' . '/scssphp/scssphp/src/Extend/Extension.php',
+ 'ScssPhp\\ScssPhp\\Extend\\ExtensionStore' => __DIR__ . '/..' . '/scssphp/scssphp/src/Extend/ExtensionStore.php',
+ 'ScssPhp\\ScssPhp\\Extend\\MergedExtension' => __DIR__ . '/..' . '/scssphp/scssphp/src/Extend/MergedExtension.php',
+ 'ScssPhp\\ScssPhp\\Extend\\ObjectSet' => __DIR__ . '/..' . '/scssphp/scssphp/src/Extend/ObjectSet.php',
+ 'ScssPhp\\ScssPhp\\Extend\\SimpleSelectorMap' => __DIR__ . '/..' . '/scssphp/scssphp/src/Extend/SimpleSelectorMap.php',
+ 'ScssPhp\\ScssPhp\\Function\\ColorFunctions' => __DIR__ . '/..' . '/scssphp/scssphp/src/Function/ColorFunctions.php',
+ 'ScssPhp\\ScssPhp\\Function\\FunctionRegistry' => __DIR__ . '/..' . '/scssphp/scssphp/src/Function/FunctionRegistry.php',
+ 'ScssPhp\\ScssPhp\\Function\\ListFunctions' => __DIR__ . '/..' . '/scssphp/scssphp/src/Function/ListFunctions.php',
+ 'ScssPhp\\ScssPhp\\Function\\MapFunctions' => __DIR__ . '/..' . '/scssphp/scssphp/src/Function/MapFunctions.php',
+ 'ScssPhp\\ScssPhp\\Function\\MathFunctions' => __DIR__ . '/..' . '/scssphp/scssphp/src/Function/MathFunctions.php',
+ 'ScssPhp\\ScssPhp\\Function\\MetaFunctions' => __DIR__ . '/..' . '/scssphp/scssphp/src/Function/MetaFunctions.php',
+ 'ScssPhp\\ScssPhp\\Function\\SelectorFunctions' => __DIR__ . '/..' . '/scssphp/scssphp/src/Function/SelectorFunctions.php',
+ 'ScssPhp\\ScssPhp\\Function\\StringFunctions' => __DIR__ . '/..' . '/scssphp/scssphp/src/Function/StringFunctions.php',
+ 'ScssPhp\\ScssPhp\\Importer\\CanonicalizeContext' => __DIR__ . '/..' . '/scssphp/scssphp/src/Importer/CanonicalizeContext.php',
+ 'ScssPhp\\ScssPhp\\Importer\\CanonicalizeResult' => __DIR__ . '/..' . '/scssphp/scssphp/src/Importer/CanonicalizeResult.php',
+ 'ScssPhp\\ScssPhp\\Importer\\FilesystemImporter' => __DIR__ . '/..' . '/scssphp/scssphp/src/Importer/FilesystemImporter.php',
+ 'ScssPhp\\ScssPhp\\Importer\\ImportCache' => __DIR__ . '/..' . '/scssphp/scssphp/src/Importer/ImportCache.php',
+ 'ScssPhp\\ScssPhp\\Importer\\ImportContext' => __DIR__ . '/..' . '/scssphp/scssphp/src/Importer/ImportContext.php',
+ 'ScssPhp\\ScssPhp\\Importer\\ImportUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Importer/ImportUtil.php',
+ 'ScssPhp\\ScssPhp\\Importer\\Importer' => __DIR__ . '/..' . '/scssphp/scssphp/src/Importer/Importer.php',
+ 'ScssPhp\\ScssPhp\\Importer\\ImporterResult' => __DIR__ . '/..' . '/scssphp/scssphp/src/Importer/ImporterResult.php',
+ 'ScssPhp\\ScssPhp\\Importer\\LegacyCallbackImporter' => __DIR__ . '/..' . '/scssphp/scssphp/src/Importer/LegacyCallbackImporter.php',
+ 'ScssPhp\\ScssPhp\\Importer\\NoOpImporter' => __DIR__ . '/..' . '/scssphp/scssphp/src/Importer/NoOpImporter.php',
+ 'ScssPhp\\ScssPhp\\Importer\\SpecialCacheValue' => __DIR__ . '/..' . '/scssphp/scssphp/src/Importer/SpecialCacheValue.php',
+ 'ScssPhp\\ScssPhp\\Logger\\DeprecationProcessingLogger' => __DIR__ . '/..' . '/scssphp/scssphp/src/Logger/DeprecationProcessingLogger.php',
'ScssPhp\\ScssPhp\\Logger\\LoggerInterface' => __DIR__ . '/..' . '/scssphp/scssphp/src/Logger/LoggerInterface.php',
'ScssPhp\\ScssPhp\\Logger\\QuietLogger' => __DIR__ . '/..' . '/scssphp/scssphp/src/Logger/QuietLogger.php',
'ScssPhp\\ScssPhp\\Logger\\StreamLogger' => __DIR__ . '/..' . '/scssphp/scssphp/src/Logger/StreamLogger.php',
'ScssPhp\\ScssPhp\\Node' => __DIR__ . '/..' . '/scssphp/scssphp/src/Node.php',
'ScssPhp\\ScssPhp\\Node\\Number' => __DIR__ . '/..' . '/scssphp/scssphp/src/Node/Number.php',
'ScssPhp\\ScssPhp\\OutputStyle' => __DIR__ . '/..' . '/scssphp/scssphp/src/OutputStyle.php',
- 'ScssPhp\\ScssPhp\\Parser' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\AtRootQueryParser' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/AtRootQueryParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\CssParser' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/CssParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\FormatException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/FormatException.php',
+ 'ScssPhp\\ScssPhp\\Parser\\InterpolationBuffer' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/InterpolationBuffer.php',
+ 'ScssPhp\\ScssPhp\\Parser\\InterpolationMap' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/InterpolationMap.php',
+ 'ScssPhp\\ScssPhp\\Parser\\KeyframeSelectorParser' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/KeyframeSelectorParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\LineScanner' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/LineScanner.php',
+ 'ScssPhp\\ScssPhp\\Parser\\MediaQueryParser' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/MediaQueryParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\MultiSourceFormatException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/MultiSourceFormatException.php',
+ 'ScssPhp\\ScssPhp\\Parser\\Parser' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/Parser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\SassParser' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/SassParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\ScssParser' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/ScssParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\SelectorParser' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/SelectorParser.php',
+ 'ScssPhp\\ScssPhp\\Parser\\StringScanner' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/StringScanner.php',
+ 'ScssPhp\\ScssPhp\\Parser\\StylesheetParser' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser/StylesheetParser.php',
+ 'ScssPhp\\ScssPhp\\SassCallable\\BuiltInCallable' => __DIR__ . '/..' . '/scssphp/scssphp/src/SassCallable/BuiltInCallable.php',
+ 'ScssPhp\\ScssPhp\\SassCallable\\PlainCssCallable' => __DIR__ . '/..' . '/scssphp/scssphp/src/SassCallable/PlainCssCallable.php',
+ 'ScssPhp\\ScssPhp\\SassCallable\\SassCallable' => __DIR__ . '/..' . '/scssphp/scssphp/src/SassCallable/SassCallable.php',
+ 'ScssPhp\\ScssPhp\\SassCallable\\UserDefinedCallable' => __DIR__ . '/..' . '/scssphp/scssphp/src/SassCallable/UserDefinedCallable.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\SerializeResult' => __DIR__ . '/..' . '/scssphp/scssphp/src/Serializer/SerializeResult.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\SerializeVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Serializer/SerializeVisitor.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\Serializer' => __DIR__ . '/..' . '/scssphp/scssphp/src/Serializer/Serializer.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\SimpleStringBuffer' => __DIR__ . '/..' . '/scssphp/scssphp/src/Serializer/SimpleStringBuffer.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\SourceMapBuffer' => __DIR__ . '/..' . '/scssphp/scssphp/src/Serializer/SourceMapBuffer.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\StringBuffer' => __DIR__ . '/..' . '/scssphp/scssphp/src/Serializer/StringBuffer.php',
+ 'ScssPhp\\ScssPhp\\Serializer\\TrackingSourceMapBuffer' => __DIR__ . '/..' . '/scssphp/scssphp/src/Serializer/TrackingSourceMapBuffer.php',
'ScssPhp\\ScssPhp\\SourceMap\\Base64' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceMap/Base64.php',
'ScssPhp\\ScssPhp\\SourceMap\\Base64VLQ' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceMap/Base64VLQ.php',
- 'ScssPhp\\ScssPhp\\SourceMap\\SourceMapGenerator' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceMap/SourceMapGenerator.php',
+ 'ScssPhp\\ScssPhp\\SourceMap\\Builder\\Entry' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceMap/Builder/Entry.php',
+ 'ScssPhp\\ScssPhp\\SourceMap\\SingleMapping' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceMap/SingleMapping.php',
+ 'ScssPhp\\ScssPhp\\SourceMap\\TargetEntry' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceMap/TargetEntry.php',
+ 'ScssPhp\\ScssPhp\\SourceMap\\TargetLineEntry' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceMap/TargetLineEntry.php',
+ 'ScssPhp\\ScssPhp\\SourceSpan\\LazyFileSpan' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceSpan/LazyFileSpan.php',
+ 'ScssPhp\\ScssPhp\\SourceSpan\\MultiSpan' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceSpan/MultiSpan.php',
+ 'ScssPhp\\ScssPhp\\StackTrace\\Frame' => __DIR__ . '/..' . '/scssphp/scssphp/src/StackTrace/Frame.php',
+ 'ScssPhp\\ScssPhp\\StackTrace\\Trace' => __DIR__ . '/..' . '/scssphp/scssphp/src/StackTrace/Trace.php',
+ 'ScssPhp\\ScssPhp\\Syntax' => __DIR__ . '/..' . '/scssphp/scssphp/src/Syntax.php',
'ScssPhp\\ScssPhp\\Type' => __DIR__ . '/..' . '/scssphp/scssphp/src/Type.php',
'ScssPhp\\ScssPhp\\Util' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util.php',
+ 'ScssPhp\\ScssPhp\\Util\\ArrayUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/ArrayUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\AstUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/AstUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\Box' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/Box.php',
+ 'ScssPhp\\ScssPhp\\Util\\Character' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/Character.php',
+ 'ScssPhp\\ScssPhp\\Util\\Equatable' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/Equatable.php',
+ 'ScssPhp\\ScssPhp\\Util\\EquatableUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/EquatableUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\ErrorUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/ErrorUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\IterableUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/IterableUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\ListUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/ListUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\LoggerUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/LoggerUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\MakeExpressionCalculationSafe' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/MakeExpressionCalculationSafe.php',
+ 'ScssPhp\\ScssPhp\\Util\\ModifiableBox' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/ModifiableBox.php',
+ 'ScssPhp\\ScssPhp\\Util\\NumberUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/NumberUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\ParserUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/ParserUtil.php',
'ScssPhp\\ScssPhp\\Util\\Path' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/Path.php',
+ 'ScssPhp\\ScssPhp\\Util\\SpanUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/SpanUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\StringUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/StringUtil.php',
+ 'ScssPhp\\ScssPhp\\Util\\UriUtil' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util/UriUtil.php',
'ScssPhp\\ScssPhp\\ValueConverter' => __DIR__ . '/..' . '/scssphp/scssphp/src/ValueConverter.php',
+ 'ScssPhp\\ScssPhp\\Value\\CalculationOperation' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/CalculationOperation.php',
+ 'ScssPhp\\ScssPhp\\Value\\CalculationOperator' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/CalculationOperator.php',
+ 'ScssPhp\\ScssPhp\\Value\\ColorFormat' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/ColorFormat.php',
+ 'ScssPhp\\ScssPhp\\Value\\ColorFormatEnum' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/ColorFormatEnum.php',
+ 'ScssPhp\\ScssPhp\\Value\\ComplexSassNumber' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/ComplexSassNumber.php',
+ 'ScssPhp\\ScssPhp\\Value\\ListSeparator' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/ListSeparator.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassArgumentList' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SassArgumentList.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassBoolean' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SassBoolean.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassCalculation' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SassCalculation.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassColor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SassColor.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassFunction' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SassFunction.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassList' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SassList.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassMap' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SassMap.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassMixin' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SassMixin.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassNull' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SassNull.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassNumber' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SassNumber.php',
+ 'ScssPhp\\ScssPhp\\Value\\SassString' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SassString.php',
+ 'ScssPhp\\ScssPhp\\Value\\SingleUnitSassNumber' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SingleUnitSassNumber.php',
+ 'ScssPhp\\ScssPhp\\Value\\SpanColorFormat' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/SpanColorFormat.php',
+ 'ScssPhp\\ScssPhp\\Value\\UnitlessSassNumber' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/UnitlessSassNumber.php',
+ 'ScssPhp\\ScssPhp\\Value\\Value' => __DIR__ . '/..' . '/scssphp/scssphp/src/Value/Value.php',
'ScssPhp\\ScssPhp\\Version' => __DIR__ . '/..' . '/scssphp/scssphp/src/Version.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\AnySelectorVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Visitor/AnySelectorVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\CssVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Visitor/CssVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\EveryCssVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Visitor/EveryCssVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\ExpressionVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Visitor/ExpressionVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\ModifiableCssVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Visitor/ModifiableCssVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\ReplaceExpressionVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Visitor/ReplaceExpressionVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\SelectorSearchVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Visitor/SelectorSearchVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\SelectorVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Visitor/SelectorVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\StatementSearchVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Visitor/StatementSearchVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\StatementVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Visitor/StatementVisitor.php',
+ 'ScssPhp\\ScssPhp\\Visitor\\ValueVisitor' => __DIR__ . '/..' . '/scssphp/scssphp/src/Visitor/ValueVisitor.php',
'ScssPhp\\ScssPhp\\Warn' => __DIR__ . '/..' . '/scssphp/scssphp/src/Warn.php',
'SimplePie' => __DIR__ . '/..' . '/simplepie/simplepie/library/SimplePie.php',
'SimplePie\\Author' => __DIR__ . '/..' . '/simplepie/simplepie/src/Author.php',
@@ -1285,173 +1696,185 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'SimplePie_Source' => __DIR__ . '/..' . '/simplepie/simplepie/library/SimplePie/Source.php',
'SimplePie_XML_Declaration_Parser' => __DIR__ . '/..' . '/simplepie/simplepie/library/SimplePie/XML/Declaration/Parser.php',
'SimplePie_gzdecode' => __DIR__ . '/..' . '/simplepie/simplepie/library/SimplePie/gzdecode.php',
- 'Smarty' => __DIR__ . '/..' . '/smarty/smarty/libs/Smarty.class.php',
- 'SmartyCompilerException' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smartycompilerexception.php',
- 'SmartyException' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smartyexception.php',
- 'Smarty_Autoloader' => __DIR__ . '/..' . '/smarty/smarty/libs/Autoloader.php',
- 'Smarty_CacheResource' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_cacheresource.php',
- 'Smarty_CacheResource_Custom' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_cacheresource_custom.php',
- 'Smarty_CacheResource_KeyValueStore' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_cacheresource_keyvaluestore.php',
- 'Smarty_Data' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_data.php',
- 'Smarty_Internal_Block' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_block.php',
- 'Smarty_Internal_CacheResource_File' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_cacheresource_file.php',
- 'Smarty_Internal_CompileBase' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compilebase.php',
- 'Smarty_Internal_Compile_Append' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_append.php',
- 'Smarty_Internal_Compile_Assign' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_assign.php',
- 'Smarty_Internal_Compile_Block' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_block.php',
- 'Smarty_Internal_Compile_Block_Child' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_block_child.php',
- 'Smarty_Internal_Compile_Block_Parent' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_block_parent.php',
- 'Smarty_Internal_Compile_Blockclose' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_block.php',
- 'Smarty_Internal_Compile_Break' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_break.php',
- 'Smarty_Internal_Compile_Call' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_call.php',
- 'Smarty_Internal_Compile_Capture' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_capture.php',
- 'Smarty_Internal_Compile_CaptureClose' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_capture.php',
- 'Smarty_Internal_Compile_Child' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_child.php',
- 'Smarty_Internal_Compile_Config_Load' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_config_load.php',
- 'Smarty_Internal_Compile_Continue' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_continue.php',
- 'Smarty_Internal_Compile_Debug' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_debug.php',
- 'Smarty_Internal_Compile_Else' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_if.php',
- 'Smarty_Internal_Compile_Elseif' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_if.php',
- 'Smarty_Internal_Compile_Eval' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_eval.php',
- 'Smarty_Internal_Compile_Extends' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_extends.php',
- 'Smarty_Internal_Compile_For' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_for.php',
- 'Smarty_Internal_Compile_Forclose' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_for.php',
- 'Smarty_Internal_Compile_Foreach' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_foreach.php',
- 'Smarty_Internal_Compile_Foreachclose' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_foreach.php',
- 'Smarty_Internal_Compile_Foreachelse' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_foreach.php',
- 'Smarty_Internal_Compile_Forelse' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_for.php',
- 'Smarty_Internal_Compile_Function' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_function.php',
- 'Smarty_Internal_Compile_Functionclose' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_function.php',
- 'Smarty_Internal_Compile_If' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_if.php',
- 'Smarty_Internal_Compile_Ifclose' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_if.php',
- 'Smarty_Internal_Compile_Include' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_include.php',
- 'Smarty_Internal_Compile_Insert' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_insert.php',
- 'Smarty_Internal_Compile_Ldelim' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_ldelim.php',
- 'Smarty_Internal_Compile_Make_Nocache' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_make_nocache.php',
- 'Smarty_Internal_Compile_Nocache' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_nocache.php',
- 'Smarty_Internal_Compile_Nocacheclose' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_nocache.php',
- 'Smarty_Internal_Compile_Parent' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_parent.php',
- 'Smarty_Internal_Compile_Private_Block_Plugin' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_block_plugin.php',
- 'Smarty_Internal_Compile_Private_ForeachSection' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_foreachsection.php',
- 'Smarty_Internal_Compile_Private_Function_Plugin' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_function_plugin.php',
- 'Smarty_Internal_Compile_Private_Modifier' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_modifier.php',
- 'Smarty_Internal_Compile_Private_Object_Block_Function' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_object_block_function.php',
- 'Smarty_Internal_Compile_Private_Object_Function' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_object_function.php',
- 'Smarty_Internal_Compile_Private_Print_Expression' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_print_expression.php',
- 'Smarty_Internal_Compile_Private_Registered_Block' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_registered_block.php',
- 'Smarty_Internal_Compile_Private_Registered_Function' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_registered_function.php',
- 'Smarty_Internal_Compile_Private_Special_Variable' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_private_special_variable.php',
- 'Smarty_Internal_Compile_Rdelim' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_rdelim.php',
- 'Smarty_Internal_Compile_Section' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_section.php',
- 'Smarty_Internal_Compile_Sectionclose' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_section.php',
- 'Smarty_Internal_Compile_Sectionelse' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_section.php',
- 'Smarty_Internal_Compile_Setfilter' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_setfilter.php',
- 'Smarty_Internal_Compile_Setfilterclose' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_setfilter.php',
- 'Smarty_Internal_Compile_Shared_Inheritance' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_shared_inheritance.php',
- 'Smarty_Internal_Compile_While' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_while.php',
- 'Smarty_Internal_Compile_Whileclose' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_compile_while.php',
- 'Smarty_Internal_Config_File_Compiler' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_config_file_compiler.php',
- 'Smarty_Internal_Configfilelexer' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_configfilelexer.php',
- 'Smarty_Internal_Configfileparser' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_configfileparser.php',
- 'Smarty_Internal_Data' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_data.php',
- 'Smarty_Internal_Debug' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_debug.php',
- 'Smarty_Internal_ErrorHandler' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_errorhandler.php',
- 'Smarty_Internal_Extension_Handler' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_extension_handler.php',
- 'Smarty_Internal_Method_AddAutoloadFilters' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_addautoloadfilters.php',
- 'Smarty_Internal_Method_AddDefaultModifiers' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_adddefaultmodifiers.php',
- 'Smarty_Internal_Method_Append' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_append.php',
- 'Smarty_Internal_Method_AppendByRef' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_appendbyref.php',
- 'Smarty_Internal_Method_AssignByRef' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_assignbyref.php',
- 'Smarty_Internal_Method_AssignGlobal' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_assignglobal.php',
- 'Smarty_Internal_Method_ClearAllAssign' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_clearallassign.php',
- 'Smarty_Internal_Method_ClearAllCache' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_clearallcache.php',
- 'Smarty_Internal_Method_ClearAssign' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_clearassign.php',
- 'Smarty_Internal_Method_ClearCache' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_clearcache.php',
- 'Smarty_Internal_Method_ClearCompiledTemplate' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_clearcompiledtemplate.php',
- 'Smarty_Internal_Method_ClearConfig' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_clearconfig.php',
- 'Smarty_Internal_Method_CompileAllConfig' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_compileallconfig.php',
- 'Smarty_Internal_Method_CompileAllTemplates' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_compilealltemplates.php',
- 'Smarty_Internal_Method_ConfigLoad' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_configload.php',
- 'Smarty_Internal_Method_CreateData' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_createdata.php',
- 'Smarty_Internal_Method_GetAutoloadFilters' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getautoloadfilters.php',
- 'Smarty_Internal_Method_GetConfigVariable' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getconfigvariable.php',
- 'Smarty_Internal_Method_GetConfigVars' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getconfigvars.php',
- 'Smarty_Internal_Method_GetDebugTemplate' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getdebugtemplate.php',
- 'Smarty_Internal_Method_GetDefaultModifiers' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getdefaultmodifiers.php',
- 'Smarty_Internal_Method_GetGlobal' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getglobal.php',
- 'Smarty_Internal_Method_GetRegisteredObject' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getregisteredobject.php',
- 'Smarty_Internal_Method_GetStreamVariable' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_getstreamvariable.php',
- 'Smarty_Internal_Method_GetTags' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_gettags.php',
- 'Smarty_Internal_Method_GetTemplateVars' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_gettemplatevars.php',
- 'Smarty_Internal_Method_Literals' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_literals.php',
- 'Smarty_Internal_Method_LoadFilter' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_loadfilter.php',
- 'Smarty_Internal_Method_LoadPlugin' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_loadplugin.php',
- 'Smarty_Internal_Method_MustCompile' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_mustcompile.php',
- 'Smarty_Internal_Method_RegisterCacheResource' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registercacheresource.php',
- 'Smarty_Internal_Method_RegisterClass' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerclass.php',
- 'Smarty_Internal_Method_RegisterDefaultConfigHandler' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerdefaultconfighandler.php',
- 'Smarty_Internal_Method_RegisterDefaultPluginHandler' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php',
- 'Smarty_Internal_Method_RegisterDefaultTemplateHandler' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerdefaulttemplatehandler.php',
- 'Smarty_Internal_Method_RegisterFilter' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerfilter.php',
- 'Smarty_Internal_Method_RegisterObject' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerobject.php',
- 'Smarty_Internal_Method_RegisterPlugin' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerplugin.php',
- 'Smarty_Internal_Method_RegisterResource' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_registerresource.php',
- 'Smarty_Internal_Method_SetAutoloadFilters' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_setautoloadfilters.php',
- 'Smarty_Internal_Method_SetDebugTemplate' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_setdebugtemplate.php',
- 'Smarty_Internal_Method_SetDefaultModifiers' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_setdefaultmodifiers.php',
- 'Smarty_Internal_Method_UnloadFilter' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_unloadfilter.php',
- 'Smarty_Internal_Method_UnregisterCacheResource' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_unregistercacheresource.php',
- 'Smarty_Internal_Method_UnregisterFilter' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_unregisterfilter.php',
- 'Smarty_Internal_Method_UnregisterObject' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_unregisterobject.php',
- 'Smarty_Internal_Method_UnregisterPlugin' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_unregisterplugin.php',
- 'Smarty_Internal_Method_UnregisterResource' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_method_unregisterresource.php',
- 'Smarty_Internal_Nocache_Insert' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_nocache_insert.php',
- 'Smarty_Internal_ParseTree' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree.php',
- 'Smarty_Internal_ParseTree_Code' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_code.php',
- 'Smarty_Internal_ParseTree_Dq' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_dq.php',
- 'Smarty_Internal_ParseTree_DqContent' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_dqcontent.php',
- 'Smarty_Internal_ParseTree_Tag' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_tag.php',
- 'Smarty_Internal_ParseTree_Template' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_template.php',
- 'Smarty_Internal_ParseTree_Text' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_text.php',
- 'Smarty_Internal_Resource_Eval' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_resource_eval.php',
- 'Smarty_Internal_Resource_Extends' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_resource_extends.php',
- 'Smarty_Internal_Resource_File' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_resource_file.php',
- 'Smarty_Internal_Resource_Php' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_resource_php.php',
- 'Smarty_Internal_Resource_Stream' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_resource_stream.php',
- 'Smarty_Internal_Resource_String' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_resource_string.php',
- 'Smarty_Internal_Runtime_CacheModify' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_cachemodify.php',
- 'Smarty_Internal_Runtime_CacheResourceFile' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_cacheresourcefile.php',
- 'Smarty_Internal_Runtime_Capture' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_capture.php',
- 'Smarty_Internal_Runtime_CodeFrame' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_codeframe.php',
- 'Smarty_Internal_Runtime_FilterHandler' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_filterhandler.php',
- 'Smarty_Internal_Runtime_Foreach' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_foreach.php',
- 'Smarty_Internal_Runtime_GetIncludePath' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_getincludepath.php',
- 'Smarty_Internal_Runtime_Inheritance' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php',
- 'Smarty_Internal_Runtime_Make_Nocache' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_make_nocache.php',
- 'Smarty_Internal_Runtime_TplFunction' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_tplfunction.php',
- 'Smarty_Internal_Runtime_UpdateCache' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php',
- 'Smarty_Internal_Runtime_UpdateScope' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatescope.php',
- 'Smarty_Internal_Runtime_WriteFile' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_runtime_writefile.php',
- 'Smarty_Internal_SmartyTemplateCompiler' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_smartytemplatecompiler.php',
- 'Smarty_Internal_Template' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_template.php',
- 'Smarty_Internal_TemplateBase' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php',
- 'Smarty_Internal_TemplateCompilerBase' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php',
- 'Smarty_Internal_Templatelexer' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_templatelexer.php',
- 'Smarty_Internal_Templateparser' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_templateparser.php',
- 'Smarty_Internal_TestInstall' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_testinstall.php',
- 'Smarty_Internal_Undefined' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_undefined.php',
- 'Smarty_Resource' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_resource.php',
- 'Smarty_Resource_Custom' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_resource_custom.php',
- 'Smarty_Resource_Recompiled' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_resource_recompiled.php',
- 'Smarty_Resource_Uncompiled' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_resource_uncompiled.php',
- 'Smarty_Security' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_security.php',
- 'Smarty_Template_Cached' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_template_cached.php',
- 'Smarty_Template_Compiled' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_template_compiled.php',
- 'Smarty_Template_Config' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_template_config.php',
- 'Smarty_Template_Resource_Base' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php',
- 'Smarty_Template_Source' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_template_source.php',
- 'Smarty_Undefined_Variable' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_undefined_variable.php',
- 'Smarty_Variable' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_variable.php',
+ 'Smarty\\BlockHandler\\Base' => __DIR__ . '/..' . '/smarty/smarty/src/BlockHandler/Base.php',
+ 'Smarty\\BlockHandler\\BlockHandlerInterface' => __DIR__ . '/..' . '/smarty/smarty/src/BlockHandler/BlockHandlerInterface.php',
+ 'Smarty\\BlockHandler\\BlockPluginWrapper' => __DIR__ . '/..' . '/smarty/smarty/src/BlockHandler/BlockPluginWrapper.php',
+ 'Smarty\\BlockHandler\\TextFormat' => __DIR__ . '/..' . '/smarty/smarty/src/BlockHandler/TextFormat.php',
+ 'Smarty\\Cacheresource\\Base' => __DIR__ . '/..' . '/smarty/smarty/src/Cacheresource/Base.php',
+ 'Smarty\\Cacheresource\\Custom' => __DIR__ . '/..' . '/smarty/smarty/src/Cacheresource/Custom.php',
+ 'Smarty\\Cacheresource\\File' => __DIR__ . '/..' . '/smarty/smarty/src/Cacheresource/File.php',
+ 'Smarty\\Cacheresource\\KeyValueStore' => __DIR__ . '/..' . '/smarty/smarty/src/Cacheresource/KeyValueStore.php',
+ 'Smarty\\Compile\\Base' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Base.php',
+ 'Smarty\\Compile\\BlockCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/BlockCompiler.php',
+ 'Smarty\\Compile\\CompilerInterface' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/CompilerInterface.php',
+ 'Smarty\\Compile\\DefaultHandlerBlockCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/DefaultHandlerBlockCompiler.php',
+ 'Smarty\\Compile\\DefaultHandlerFunctionCallCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/DefaultHandlerFunctionCallCompiler.php',
+ 'Smarty\\Compile\\FunctionCallCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/FunctionCallCompiler.php',
+ 'Smarty\\Compile\\ModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/ModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\BCPluginWrapper' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/BCPluginWrapper.php',
+ 'Smarty\\Compile\\Modifier\\Base' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/Base.php',
+ 'Smarty\\Compile\\Modifier\\CatModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/CatModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\CountCharactersModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/CountCharactersModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\CountParagraphsModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/CountParagraphsModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\CountSentencesModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/CountSentencesModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\CountWordsModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/CountWordsModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\DefaultModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/DefaultModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\EmptyModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/EmptyModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\EscapeModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/EscapeModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\FromCharsetModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/FromCharsetModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\IndentModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/IndentModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\IsArrayModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/IsArrayModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\IssetModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/IssetModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\JsonEncodeModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/JsonEncodeModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\LowerModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/LowerModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\ModifierCompilerInterface' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/ModifierCompilerInterface.php',
+ 'Smarty\\Compile\\Modifier\\Nl2brModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/Nl2brModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\NoPrintModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/NoPrintModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\RawModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/RawModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\RoundModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/RoundModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\StrRepeatModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/StrRepeatModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\StringFormatModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/StringFormatModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\StripModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/StripModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\StripTagsModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/StripTagsModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\StrlenModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/StrlenModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\SubstrModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/SubstrModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\ToCharsetModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/ToCharsetModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\UnescapeModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/UnescapeModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\UpperModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/UpperModifierCompiler.php',
+ 'Smarty\\Compile\\Modifier\\WordWrapModifierCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Modifier/WordWrapModifierCompiler.php',
+ 'Smarty\\Compile\\ObjectMethodBlockCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/ObjectMethodBlockCompiler.php',
+ 'Smarty\\Compile\\ObjectMethodCallCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/ObjectMethodCallCompiler.php',
+ 'Smarty\\Compile\\PrintExpressionCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/PrintExpressionCompiler.php',
+ 'Smarty\\Compile\\SpecialVariableCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/SpecialVariableCompiler.php',
+ 'Smarty\\Compile\\Tag\\Append' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/Append.php',
+ 'Smarty\\Compile\\Tag\\Assign' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/Assign.php',
+ 'Smarty\\Compile\\Tag\\BCPluginWrapper' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/BCPluginWrapper.php',
+ 'Smarty\\Compile\\Tag\\Block' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/Block.php',
+ 'Smarty\\Compile\\Tag\\BlockClose' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/BlockClose.php',
+ 'Smarty\\Compile\\Tag\\BreakTag' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/BreakTag.php',
+ 'Smarty\\Compile\\Tag\\Call' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/Call.php',
+ 'Smarty\\Compile\\Tag\\Capture' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/Capture.php',
+ 'Smarty\\Compile\\Tag\\CaptureClose' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/CaptureClose.php',
+ 'Smarty\\Compile\\Tag\\ConfigLoad' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/ConfigLoad.php',
+ 'Smarty\\Compile\\Tag\\ContinueTag' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/ContinueTag.php',
+ 'Smarty\\Compile\\Tag\\Debug' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/Debug.php',
+ 'Smarty\\Compile\\Tag\\ElseIfTag' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/ElseIfTag.php',
+ 'Smarty\\Compile\\Tag\\ElseTag' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/ElseTag.php',
+ 'Smarty\\Compile\\Tag\\EvalTag' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/EvalTag.php',
+ 'Smarty\\Compile\\Tag\\ExtendsTag' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/ExtendsTag.php',
+ 'Smarty\\Compile\\Tag\\ForClose' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/ForClose.php',
+ 'Smarty\\Compile\\Tag\\ForElse' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/ForElse.php',
+ 'Smarty\\Compile\\Tag\\ForTag' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/ForTag.php',
+ 'Smarty\\Compile\\Tag\\ForeachClose' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/ForeachClose.php',
+ 'Smarty\\Compile\\Tag\\ForeachElse' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/ForeachElse.php',
+ 'Smarty\\Compile\\Tag\\ForeachSection' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/ForeachSection.php',
+ 'Smarty\\Compile\\Tag\\ForeachTag' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/ForeachTag.php',
+ 'Smarty\\Compile\\Tag\\FunctionClose' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/FunctionClose.php',
+ 'Smarty\\Compile\\Tag\\FunctionTag' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/FunctionTag.php',
+ 'Smarty\\Compile\\Tag\\IfClose' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/IfClose.php',
+ 'Smarty\\Compile\\Tag\\IfTag' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/IfTag.php',
+ 'Smarty\\Compile\\Tag\\IncludeTag' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/IncludeTag.php',
+ 'Smarty\\Compile\\Tag\\Inheritance' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/Inheritance.php',
+ 'Smarty\\Compile\\Tag\\Ldelim' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/Ldelim.php',
+ 'Smarty\\Compile\\Tag\\Nocache' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/Nocache.php',
+ 'Smarty\\Compile\\Tag\\NocacheClose' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/NocacheClose.php',
+ 'Smarty\\Compile\\Tag\\Rdelim' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/Rdelim.php',
+ 'Smarty\\Compile\\Tag\\Section' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/Section.php',
+ 'Smarty\\Compile\\Tag\\SectionClose' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/SectionClose.php',
+ 'Smarty\\Compile\\Tag\\SectionElse' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/SectionElse.php',
+ 'Smarty\\Compile\\Tag\\Setfilter' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/Setfilter.php',
+ 'Smarty\\Compile\\Tag\\SetfilterClose' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/SetfilterClose.php',
+ 'Smarty\\Compile\\Tag\\WhileClose' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/WhileClose.php',
+ 'Smarty\\Compile\\Tag\\WhileTag' => __DIR__ . '/..' . '/smarty/smarty/src/Compile/Tag/WhileTag.php',
+ 'Smarty\\CompilerException' => __DIR__ . '/..' . '/smarty/smarty/src/CompilerException.php',
+ 'Smarty\\Compiler\\BaseCompiler' => __DIR__ . '/..' . '/smarty/smarty/src/Compiler/BaseCompiler.php',
+ 'Smarty\\Compiler\\CodeFrame' => __DIR__ . '/..' . '/smarty/smarty/src/Compiler/CodeFrame.php',
+ 'Smarty\\Compiler\\Configfile' => __DIR__ . '/..' . '/smarty/smarty/src/Compiler/Configfile.php',
+ 'Smarty\\Compiler\\Template' => __DIR__ . '/..' . '/smarty/smarty/src/Compiler/Template.php',
+ 'Smarty\\Data' => __DIR__ . '/..' . '/smarty/smarty/src/Data.php',
+ 'Smarty\\Debug' => __DIR__ . '/..' . '/smarty/smarty/src/Debug.php',
+ 'Smarty\\ErrorHandler' => __DIR__ . '/..' . '/smarty/smarty/src/ErrorHandler.php',
+ 'Smarty\\Exception' => __DIR__ . '/..' . '/smarty/smarty/src/Exception.php',
+ 'Smarty\\Extension\\BCPluginsAdapter' => __DIR__ . '/..' . '/smarty/smarty/src/Extension/BCPluginsAdapter.php',
+ 'Smarty\\Extension\\Base' => __DIR__ . '/..' . '/smarty/smarty/src/Extension/Base.php',
+ 'Smarty\\Extension\\CallbackWrapper' => __DIR__ . '/..' . '/smarty/smarty/src/Extension/CallbackWrapper.php',
+ 'Smarty\\Extension\\CoreExtension' => __DIR__ . '/..' . '/smarty/smarty/src/Extension/CoreExtension.php',
+ 'Smarty\\Extension\\DefaultExtension' => __DIR__ . '/..' . '/smarty/smarty/src/Extension/DefaultExtension.php',
+ 'Smarty\\Extension\\ExtensionInterface' => __DIR__ . '/..' . '/smarty/smarty/src/Extension/ExtensionInterface.php',
+ 'Smarty\\Filter\\FilterInterface' => __DIR__ . '/..' . '/smarty/smarty/src/Filter/FilterInterface.php',
+ 'Smarty\\Filter\\FilterPluginWrapper' => __DIR__ . '/..' . '/smarty/smarty/src/Filter/FilterPluginWrapper.php',
+ 'Smarty\\Filter\\Output\\TrimWhitespace' => __DIR__ . '/..' . '/smarty/smarty/src/Filter/Output/TrimWhitespace.php',
+ 'Smarty\\FunctionHandler\\BCPluginWrapper' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/BCPluginWrapper.php',
+ 'Smarty\\FunctionHandler\\Base' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/Base.php',
+ 'Smarty\\FunctionHandler\\Count' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/Count.php',
+ 'Smarty\\FunctionHandler\\Counter' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/Counter.php',
+ 'Smarty\\FunctionHandler\\Cycle' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/Cycle.php',
+ 'Smarty\\FunctionHandler\\Fetch' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/Fetch.php',
+ 'Smarty\\FunctionHandler\\FunctionHandlerInterface' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/FunctionHandlerInterface.php',
+ 'Smarty\\FunctionHandler\\HtmlBase' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/HtmlBase.php',
+ 'Smarty\\FunctionHandler\\HtmlCheckboxes' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/HtmlCheckboxes.php',
+ 'Smarty\\FunctionHandler\\HtmlImage' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/HtmlImage.php',
+ 'Smarty\\FunctionHandler\\HtmlOptions' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/HtmlOptions.php',
+ 'Smarty\\FunctionHandler\\HtmlRadios' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/HtmlRadios.php',
+ 'Smarty\\FunctionHandler\\HtmlSelectDate' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/HtmlSelectDate.php',
+ 'Smarty\\FunctionHandler\\HtmlSelectTime' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/HtmlSelectTime.php',
+ 'Smarty\\FunctionHandler\\HtmlTable' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/HtmlTable.php',
+ 'Smarty\\FunctionHandler\\Mailto' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/Mailto.php',
+ 'Smarty\\FunctionHandler\\Math' => __DIR__ . '/..' . '/smarty/smarty/src/FunctionHandler/Math.php',
+ 'Smarty\\Lexer\\ConfigfileLexer' => __DIR__ . '/..' . '/smarty/smarty/src/Lexer/ConfigfileLexer.php',
+ 'Smarty\\Lexer\\TemplateLexer' => __DIR__ . '/..' . '/smarty/smarty/src/Lexer/TemplateLexer.php',
+ 'Smarty\\ParseTree\\Base' => __DIR__ . '/..' . '/smarty/smarty/src/ParseTree/Base.php',
+ 'Smarty\\ParseTree\\Code' => __DIR__ . '/..' . '/smarty/smarty/src/ParseTree/Code.php',
+ 'Smarty\\ParseTree\\Dq' => __DIR__ . '/..' . '/smarty/smarty/src/ParseTree/Dq.php',
+ 'Smarty\\ParseTree\\DqContent' => __DIR__ . '/..' . '/smarty/smarty/src/ParseTree/DqContent.php',
+ 'Smarty\\ParseTree\\Tag' => __DIR__ . '/..' . '/smarty/smarty/src/ParseTree/Tag.php',
+ 'Smarty\\ParseTree\\Template' => __DIR__ . '/..' . '/smarty/smarty/src/ParseTree/Template.php',
+ 'Smarty\\ParseTree\\Text' => __DIR__ . '/..' . '/smarty/smarty/src/ParseTree/Text.php',
+ 'Smarty\\Parser\\ConfigfileParser' => __DIR__ . '/..' . '/smarty/smarty/src/Parser/ConfigfileParser.php',
+ 'Smarty\\Parser\\TemplateParser' => __DIR__ . '/..' . '/smarty/smarty/src/Parser/TemplateParser.php',
+ 'Smarty\\Resource\\BasePlugin' => __DIR__ . '/..' . '/smarty/smarty/src/Resource/BasePlugin.php',
+ 'Smarty\\Resource\\CustomPlugin' => __DIR__ . '/..' . '/smarty/smarty/src/Resource/CustomPlugin.php',
+ 'Smarty\\Resource\\ExtendsPlugin' => __DIR__ . '/..' . '/smarty/smarty/src/Resource/ExtendsPlugin.php',
+ 'Smarty\\Resource\\FilePlugin' => __DIR__ . '/..' . '/smarty/smarty/src/Resource/FilePlugin.php',
+ 'Smarty\\Resource\\RecompiledPlugin' => __DIR__ . '/..' . '/smarty/smarty/src/Resource/RecompiledPlugin.php',
+ 'Smarty\\Resource\\StreamPlugin' => __DIR__ . '/..' . '/smarty/smarty/src/Resource/StreamPlugin.php',
+ 'Smarty\\Resource\\StringEval' => __DIR__ . '/..' . '/smarty/smarty/src/Resource/StringEval.php',
+ 'Smarty\\Resource\\StringPlugin' => __DIR__ . '/..' . '/smarty/smarty/src/Resource/StringPlugin.php',
+ 'Smarty\\Runtime\\Block' => __DIR__ . '/..' . '/smarty/smarty/src/Runtime/Block.php',
+ 'Smarty\\Runtime\\CaptureRuntime' => __DIR__ . '/..' . '/smarty/smarty/src/Runtime/CaptureRuntime.php',
+ 'Smarty\\Runtime\\DefaultPluginHandlerRuntime' => __DIR__ . '/..' . '/smarty/smarty/src/Runtime/DefaultPluginHandlerRuntime.php',
+ 'Smarty\\Runtime\\ForeachRuntime' => __DIR__ . '/..' . '/smarty/smarty/src/Runtime/ForeachRuntime.php',
+ 'Smarty\\Runtime\\InheritanceRuntime' => __DIR__ . '/..' . '/smarty/smarty/src/Runtime/InheritanceRuntime.php',
+ 'Smarty\\Runtime\\TplFunctionRuntime' => __DIR__ . '/..' . '/smarty/smarty/src/Runtime/TplFunctionRuntime.php',
+ 'Smarty\\Security' => __DIR__ . '/..' . '/smarty/smarty/src/Security.php',
+ 'Smarty\\Smarty' => __DIR__ . '/..' . '/smarty/smarty/src/Smarty.php',
+ 'Smarty\\Template' => __DIR__ . '/..' . '/smarty/smarty/src/Template.php',
+ 'Smarty\\TemplateBase' => __DIR__ . '/..' . '/smarty/smarty/src/TemplateBase.php',
+ 'Smarty\\Template\\Cached' => __DIR__ . '/..' . '/smarty/smarty/src/Template/Cached.php',
+ 'Smarty\\Template\\Compiled' => __DIR__ . '/..' . '/smarty/smarty/src/Template/Compiled.php',
+ 'Smarty\\Template\\Config' => __DIR__ . '/..' . '/smarty/smarty/src/Template/Config.php',
+ 'Smarty\\Template\\GeneratedPhpFile' => __DIR__ . '/..' . '/smarty/smarty/src/Template/GeneratedPhpFile.php',
+ 'Smarty\\Template\\Source' => __DIR__ . '/..' . '/smarty/smarty/src/Template/Source.php',
+ 'Smarty\\TestInstall' => __DIR__ . '/..' . '/smarty/smarty/src/TestInstall.php',
+ 'Smarty\\UndefinedVariable' => __DIR__ . '/..' . '/smarty/smarty/src/UndefinedVariable.php',
+ 'Smarty\\Variable' => __DIR__ . '/..' . '/smarty/smarty/src/Variable.php',
+ 'SourceSpan\\ConcreteFileSpan' => __DIR__ . '/..' . '/scssphp/source-span/src/ConcreteFileSpan.php',
+ 'SourceSpan\\FileLocation' => __DIR__ . '/..' . '/scssphp/source-span/src/FileLocation.php',
+ 'SourceSpan\\FileSpan' => __DIR__ . '/..' . '/scssphp/source-span/src/FileSpan.php',
+ 'SourceSpan\\Highlighter\\AsciiGlyph' => __DIR__ . '/..' . '/scssphp/source-span/src/Highlighter/AsciiGlyph.php',
+ 'SourceSpan\\Highlighter\\Highlight' => __DIR__ . '/..' . '/scssphp/source-span/src/Highlighter/Highlight.php',
+ 'SourceSpan\\Highlighter\\Highlighter' => __DIR__ . '/..' . '/scssphp/source-span/src/Highlighter/Highlighter.php',
+ 'SourceSpan\\Highlighter\\Line' => __DIR__ . '/..' . '/scssphp/source-span/src/Highlighter/Line.php',
+ 'SourceSpan\\SimpleSourceLocation' => __DIR__ . '/..' . '/scssphp/source-span/src/SimpleSourceLocation.php',
+ 'SourceSpan\\SimpleSourceSpan' => __DIR__ . '/..' . '/scssphp/source-span/src/SimpleSourceSpan.php',
+ 'SourceSpan\\SimpleSourceSpanWithContext' => __DIR__ . '/..' . '/scssphp/source-span/src/SimpleSourceSpanWithContext.php',
+ 'SourceSpan\\SourceFile' => __DIR__ . '/..' . '/scssphp/source-span/src/SourceFile.php',
+ 'SourceSpan\\SourceLocation' => __DIR__ . '/..' . '/scssphp/source-span/src/SourceLocation.php',
+ 'SourceSpan\\SourceLocationMixin' => __DIR__ . '/..' . '/scssphp/source-span/src/SourceLocationMixin.php',
+ 'SourceSpan\\SourceSpan' => __DIR__ . '/..' . '/scssphp/source-span/src/SourceSpan.php',
+ 'SourceSpan\\SourceSpanMixin' => __DIR__ . '/..' . '/scssphp/source-span/src/SourceSpanMixin.php',
+ 'SourceSpan\\SourceSpanWithContext' => __DIR__ . '/..' . '/scssphp/source-span/src/SourceSpanWithContext.php',
+ 'SourceSpan\\Util' => __DIR__ . '/..' . '/scssphp/source-span/src/Util.php',
'StephenHill\\BCMathService' => __DIR__ . '/..' . '/stephenhill/base58/src/BCMathService.php',
'StephenHill\\Base58' => __DIR__ . '/..' . '/stephenhill/base58/src/Base58.php',
'StephenHill\\Benchmarks\\Base16Event' => __DIR__ . '/..' . '/stephenhill/base58/benchmarks/Base16Event.php',
@@ -1460,9 +1883,16 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'StephenHill\\Benchmarks\\Base64Event' => __DIR__ . '/..' . '/stephenhill/base58/benchmarks/Base64Event.php',
'StephenHill\\GMPService' => __DIR__ . '/..' . '/stephenhill/base58/src/GMPService.php',
'StephenHill\\ServiceInterface' => __DIR__ . '/..' . '/stephenhill/base58/src/ServiceInterface.php',
- 'Symfony\\Polyfill\\Php81\\Php81' => __DIR__ . '/..' . '/symfony/polyfill-php81/Php81.php',
- 'TPC_yyStackEntry' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_configfileparser.php',
- 'TP_yyStackEntry' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_internal_templateparser.php',
+ 'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/ExceptionInterface.php',
+ 'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/FileNotFoundException.php',
+ 'Symfony\\Component\\Filesystem\\Exception\\IOException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOException.php',
+ 'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOExceptionInterface.php',
+ 'Symfony\\Component\\Filesystem\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/InvalidArgumentException.php',
+ 'Symfony\\Component\\Filesystem\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/RuntimeException.php',
+ 'Symfony\\Component\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/symfony/filesystem/Filesystem.php',
+ 'Symfony\\Component\\Filesystem\\Path' => __DIR__ . '/..' . '/symfony/filesystem/Path.php',
+ 'Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__ . '/..' . '/symfony/polyfill-ctype/Ctype.php',
+ 'Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/Mbstring.php',
'Text_LanguageDetect' => __DIR__ . '/..' . '/pear/text_languagedetect/Text/LanguageDetect.php',
'Text_LanguageDetect_Exception' => __DIR__ . '/..' . '/pear/text_languagedetect/Text/LanguageDetect/Exception.php',
'Text_LanguageDetect_ISO639' => __DIR__ . '/..' . '/pear/text_languagedetect/Text/LanguageDetect/ISO639.php',
@@ -1473,6 +1903,24 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Zotlabs\\Access\\PermissionLimits' => __DIR__ . '/../..' . '/Zotlabs/Access/PermissionLimits.php',
'Zotlabs\\Access\\PermissionRoles' => __DIR__ . '/../..' . '/Zotlabs/Access/PermissionRoles.php',
'Zotlabs\\Access\\Permissions' => __DIR__ . '/../..' . '/Zotlabs/Access/Permissions.php',
+ 'Zotlabs\\ActivityStreams\\ASObject' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/ASObject.php',
+ 'Zotlabs\\ActivityStreams\\Activity' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/Activity.php',
+ 'Zotlabs\\ActivityStreams\\Actor' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/Actor.php',
+ 'Zotlabs\\ActivityStreams\\AssertionMethod' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/AssertionMethod.php',
+ 'Zotlabs\\ActivityStreams\\Collection' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/Collection.php',
+ 'Zotlabs\\ActivityStreams\\CollectionPage' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/CollectionPage.php',
+ 'Zotlabs\\ActivityStreams\\IntransitiveActivity' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/IntransitiveActivity.php',
+ 'Zotlabs\\ActivityStreams\\Link' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/Link.php',
+ 'Zotlabs\\ActivityStreams\\OrderedCollection' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/OrderedCollection.php',
+ 'Zotlabs\\ActivityStreams\\OrderedCollectionPage' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/OrderedCollectionPage.php',
+ 'Zotlabs\\ActivityStreams\\Place' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/Place.php',
+ 'Zotlabs\\ActivityStreams\\Profile' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/Profile.php',
+ 'Zotlabs\\ActivityStreams\\PublicKey' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/PublicKey.php',
+ 'Zotlabs\\ActivityStreams\\Question' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/Question.php',
+ 'Zotlabs\\ActivityStreams\\Relationship' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/Relationship.php',
+ 'Zotlabs\\ActivityStreams\\Signature' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/Signature.php',
+ 'Zotlabs\\ActivityStreams\\Tombstone' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/Tombstone.php',
+ 'Zotlabs\\ActivityStreams\\UnhandledElementException' => __DIR__ . '/../..' . '/Zotlabs/ActivityStreams/UnhandledElementException.php',
'Zotlabs\\Daemon\\Addon' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Addon.php',
'Zotlabs\\Daemon\\Cache_embeds' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Cache_embeds.php',
'Zotlabs\\Daemon\\Cache_query' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Cache_query.php',
@@ -1506,6 +1954,9 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Zotlabs\\Daemon\\Thumbnail' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Thumbnail.php',
'Zotlabs\\Daemon\\Xchan_photo' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Xchan_photo.php',
'Zotlabs\\Daemon\\Zotconvo' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Zotconvo.php',
+ 'Zotlabs\\Entity\\Account' => __DIR__ . '/../..' . '/Zotlabs/Entity/Account.php',
+ 'Zotlabs\\Entity\\Channel' => __DIR__ . '/../..' . '/Zotlabs/Entity/Channel.php',
+ 'Zotlabs\\Entity\\Item' => __DIR__ . '/../..' . '/Zotlabs/Entity/Item.php',
'Zotlabs\\Extend\\Hook' => __DIR__ . '/../..' . '/Zotlabs/Extend/Hook.php',
'Zotlabs\\Extend\\Route' => __DIR__ . '/../..' . '/Zotlabs/Extend/Route.php',
'Zotlabs\\Extend\\Widget' => __DIR__ . '/../..' . '/Zotlabs/Extend/Widget.php',
@@ -1522,6 +1973,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Zotlabs\\Lib\\ActivityStreams' => __DIR__ . '/../..' . '/Zotlabs/Lib/ActivityStreams.php',
'Zotlabs\\Lib\\Api_router' => __DIR__ . '/../..' . '/Zotlabs/Lib/Api_router.php',
'Zotlabs\\Lib\\Apps' => __DIR__ . '/../..' . '/Zotlabs/Lib/Apps.php',
+ 'Zotlabs\\Lib\\BaseObject' => __DIR__ . '/../..' . '/Zotlabs/Lib/BaseObject.php',
'Zotlabs\\Lib\\Cache' => __DIR__ . '/../..' . '/Zotlabs/Lib/Cache.php',
'Zotlabs\\Lib\\Chatroom' => __DIR__ . '/../..' . '/Zotlabs/Lib/Chatroom.php',
'Zotlabs\\Lib\\Config' => __DIR__ . '/../..' . '/Zotlabs/Lib/Config.php',
@@ -1536,11 +1988,13 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Zotlabs\\Lib\\Img_filesize' => __DIR__ . '/../..' . '/Zotlabs/Lib/Img_filesize.php',
'Zotlabs\\Lib\\JSalmon' => __DIR__ . '/../..' . '/Zotlabs/Lib/JSalmon.php',
'Zotlabs\\Lib\\JcsEddsa2022' => __DIR__ . '/../..' . '/Zotlabs/Lib/JcsEddsa2022.php',
+ 'Zotlabs\\Lib\\JcsEddsa2022SignException' => __DIR__ . '/../..' . '/Zotlabs/Lib/JcsEddsa2022SignException.php',
'Zotlabs\\Lib\\Keyutils' => __DIR__ . '/../..' . '/Zotlabs/Lib/Keyutils.php',
'Zotlabs\\Lib\\LDSignatures' => __DIR__ . '/../..' . '/Zotlabs/Lib/LDSignatures.php',
'Zotlabs\\Lib\\Libsync' => __DIR__ . '/../..' . '/Zotlabs/Lib/Libsync.php',
'Zotlabs\\Lib\\Libzot' => __DIR__ . '/../..' . '/Zotlabs/Lib/Libzot.php',
'Zotlabs\\Lib\\Libzotdir' => __DIR__ . '/../..' . '/Zotlabs/Lib/Libzotdir.php',
+ 'Zotlabs\\Lib\\Mailer' => __DIR__ . '/../..' . '/Zotlabs/Lib/Mailer.php',
'Zotlabs\\Lib\\MarkdownSoap' => __DIR__ . '/../..' . '/Zotlabs/Lib/MarkdownSoap.php',
'Zotlabs\\Lib\\MessageFilter' => __DIR__ . '/../..' . '/Zotlabs/Lib/MessageFilter.php',
'Zotlabs\\Lib\\Multibase' => __DIR__ . '/../..' . '/Zotlabs/Lib/Multibase.php',
@@ -1551,7 +2005,6 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Zotlabs\\Lib\\QueueWorker' => __DIR__ . '/../..' . '/Zotlabs/Lib/QueueWorker.php',
'Zotlabs\\Lib\\SConfig' => __DIR__ . '/../..' . '/Zotlabs/Lib/SConfig.php',
'Zotlabs\\Lib\\Share' => __DIR__ . '/../..' . '/Zotlabs/Lib/Share.php',
- 'Zotlabs\\Lib\\SuperCurl' => __DIR__ . '/../..' . '/Zotlabs/Lib/SuperCurl.php',
'Zotlabs\\Lib\\SvgSanitizer' => __DIR__ . '/../..' . '/Zotlabs/Lib/SvgSanitizer.php',
'Zotlabs\\Lib\\System' => __DIR__ . '/../..' . '/Zotlabs/Lib/System.php',
'Zotlabs\\Lib\\Techlevels' => __DIR__ . '/../..' . '/Zotlabs/Lib/Techlevels.php',
@@ -1717,6 +2170,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Zotlabs\\Module\\Regver' => __DIR__ . '/../..' . '/Zotlabs/Module/Regver.php',
'Zotlabs\\Module\\Removeaccount' => __DIR__ . '/../..' . '/Zotlabs/Module/Removeaccount.php',
'Zotlabs\\Module\\Removeme' => __DIR__ . '/../..' . '/Zotlabs/Module/Removeme.php',
+ 'Zotlabs\\Module\\Request' => __DIR__ . '/../..' . '/Zotlabs/Module/Request.php',
'Zotlabs\\Module\\Rmagic' => __DIR__ . '/../..' . '/Zotlabs/Module/Rmagic.php',
'Zotlabs\\Module\\Rpost' => __DIR__ . '/../..' . '/Zotlabs/Module/Rpost.php',
'Zotlabs\\Module\\Search' => __DIR__ . '/../..' . '/Zotlabs/Module/Search.php',
@@ -1779,7 +2233,6 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Zotlabs\\Module\\Xchan' => __DIR__ . '/../..' . '/Zotlabs/Module/Xchan.php',
'Zotlabs\\Module\\Xpoco' => __DIR__ . '/../..' . '/Zotlabs/Module/Xpoco.php',
'Zotlabs\\Module\\Xrd' => __DIR__ . '/../..' . '/Zotlabs/Module/Xrd.php',
- 'Zotlabs\\Module\\Xref' => __DIR__ . '/../..' . '/Zotlabs/Module/Xref.php',
'Zotlabs\\Module\\Z6trans' => __DIR__ . '/../..' . '/Zotlabs/Module/Z6trans.php',
'Zotlabs\\Module\\Zot' => __DIR__ . '/../..' . '/Zotlabs/Module/Zot.php',
'Zotlabs\\Module\\Zot_probe' => __DIR__ . '/../..' . '/Zotlabs/Module/Zot_probe.php',
@@ -1798,7 +2251,6 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Zotlabs\\Storage\\CalDAVClient' => __DIR__ . '/../..' . '/Zotlabs/Storage/CalDAVClient.php',
'Zotlabs\\Storage\\Directory' => __DIR__ . '/../..' . '/Zotlabs/Storage/Directory.php',
'Zotlabs\\Storage\\File' => __DIR__ . '/../..' . '/Zotlabs/Storage/File.php',
- 'Zotlabs\\Storage\\GitRepo' => __DIR__ . '/../..' . '/Zotlabs/Storage/GitRepo.php',
'Zotlabs\\Storage\\ZotOauth2Pdo' => __DIR__ . '/../..' . '/Zotlabs/Storage/ZotOauth2Pdo.php',
'Zotlabs\\Text\\Tagadelic' => __DIR__ . '/../..' . '/Zotlabs/Text/Tagadelic.php',
'Zotlabs\\Thumbs\\Epubthumb' => __DIR__ . '/../..' . '/Zotlabs/Thumbs/Epubthumb.php',
@@ -2143,25 +2595,64 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d
'Zotlabs\\Zot6\\IHandler' => __DIR__ . '/../..' . '/Zotlabs/Zot6/IHandler.php',
'Zotlabs\\Zot6\\Receiver' => __DIR__ . '/../..' . '/Zotlabs/Zot6/Receiver.php',
'Zotlabs\\Zot6\\Zot6Handler' => __DIR__ . '/../..' . '/Zotlabs/Zot6/Zot6Handler.php',
+ 'chillerlan\\QRCode\\Common\\BitBuffer' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Common/BitBuffer.php',
+ 'chillerlan\\QRCode\\Common\\ECICharset' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Common/ECICharset.php',
+ 'chillerlan\\QRCode\\Common\\EccLevel' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Common/EccLevel.php',
+ 'chillerlan\\QRCode\\Common\\GDLuminanceSource' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Common/GDLuminanceSource.php',
+ 'chillerlan\\QRCode\\Common\\GF256' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Common/GF256.php',
+ 'chillerlan\\QRCode\\Common\\GenericGFPoly' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Common/GenericGFPoly.php',
+ 'chillerlan\\QRCode\\Common\\IMagickLuminanceSource' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Common/IMagickLuminanceSource.php',
+ 'chillerlan\\QRCode\\Common\\LuminanceSourceAbstract' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Common/LuminanceSourceAbstract.php',
+ 'chillerlan\\QRCode\\Common\\LuminanceSourceInterface' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Common/LuminanceSourceInterface.php',
+ 'chillerlan\\QRCode\\Common\\MaskPattern' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Common/MaskPattern.php',
+ 'chillerlan\\QRCode\\Common\\Mode' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Common/Mode.php',
+ 'chillerlan\\QRCode\\Common\\Version' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Common/Version.php',
'chillerlan\\QRCode\\Data\\AlphaNum' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/AlphaNum.php',
'chillerlan\\QRCode\\Data\\Byte' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/Byte.php',
+ 'chillerlan\\QRCode\\Data\\ECI' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/ECI.php',
+ 'chillerlan\\QRCode\\Data\\Hanzi' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/Hanzi.php',
'chillerlan\\QRCode\\Data\\Kanji' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/Kanji.php',
- 'chillerlan\\QRCode\\Data\\MaskPatternTester' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/MaskPatternTester.php',
'chillerlan\\QRCode\\Data\\Number' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/Number.php',
'chillerlan\\QRCode\\Data\\QRCodeDataException' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/QRCodeDataException.php',
- 'chillerlan\\QRCode\\Data\\QRDataAbstract' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/QRDataAbstract.php',
- 'chillerlan\\QRCode\\Data\\QRDataInterface' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/QRDataInterface.php',
+ 'chillerlan\\QRCode\\Data\\QRData' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/QRData.php',
+ 'chillerlan\\QRCode\\Data\\QRDataModeAbstract' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/QRDataModeAbstract.php',
+ 'chillerlan\\QRCode\\Data\\QRDataModeInterface' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/QRDataModeInterface.php',
'chillerlan\\QRCode\\Data\\QRMatrix' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/QRMatrix.php',
- 'chillerlan\\QRCode\\Helpers\\BitBuffer' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Helpers/BitBuffer.php',
- 'chillerlan\\QRCode\\Helpers\\Polynomial' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Helpers/Polynomial.php',
+ 'chillerlan\\QRCode\\Data\\ReedSolomonEncoder' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Data/ReedSolomonEncoder.php',
+ 'chillerlan\\QRCode\\Decoder\\Binarizer' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Decoder/Binarizer.php',
+ 'chillerlan\\QRCode\\Decoder\\BitMatrix' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Decoder/BitMatrix.php',
+ 'chillerlan\\QRCode\\Decoder\\Decoder' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Decoder/Decoder.php',
+ 'chillerlan\\QRCode\\Decoder\\DecoderResult' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Decoder/DecoderResult.php',
+ 'chillerlan\\QRCode\\Decoder\\QRCodeDecoderException' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Decoder/QRCodeDecoderException.php',
+ 'chillerlan\\QRCode\\Decoder\\ReedSolomonDecoder' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Decoder/ReedSolomonDecoder.php',
+ 'chillerlan\\QRCode\\Detector\\AlignmentPattern' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Detector/AlignmentPattern.php',
+ 'chillerlan\\QRCode\\Detector\\AlignmentPatternFinder' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Detector/AlignmentPatternFinder.php',
+ 'chillerlan\\QRCode\\Detector\\Detector' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Detector/Detector.php',
+ 'chillerlan\\QRCode\\Detector\\FinderPattern' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Detector/FinderPattern.php',
+ 'chillerlan\\QRCode\\Detector\\FinderPatternFinder' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Detector/FinderPatternFinder.php',
+ 'chillerlan\\QRCode\\Detector\\GridSampler' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Detector/GridSampler.php',
+ 'chillerlan\\QRCode\\Detector\\PerspectiveTransform' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Detector/PerspectiveTransform.php',
+ 'chillerlan\\QRCode\\Detector\\QRCodeDetectorException' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Detector/QRCodeDetectorException.php',
+ 'chillerlan\\QRCode\\Detector\\ResultPoint' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Detector/ResultPoint.php',
'chillerlan\\QRCode\\Output\\QRCodeOutputException' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRCodeOutputException.php',
+ 'chillerlan\\QRCode\\Output\\QREps' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QREps.php',
'chillerlan\\QRCode\\Output\\QRFpdf' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRFpdf.php',
+ 'chillerlan\\QRCode\\Output\\QRGdImage' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRGdImage.php',
+ 'chillerlan\\QRCode\\Output\\QRGdImageBMP' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRGdImageBMP.php',
+ 'chillerlan\\QRCode\\Output\\QRGdImageGIF' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRGdImageGIF.php',
+ 'chillerlan\\QRCode\\Output\\QRGdImageJPEG' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRGdImageJPEG.php',
+ 'chillerlan\\QRCode\\Output\\QRGdImagePNG' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRGdImagePNG.php',
+ 'chillerlan\\QRCode\\Output\\QRGdImageWEBP' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRGdImageWEBP.php',
'chillerlan\\QRCode\\Output\\QRImage' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRImage.php',
'chillerlan\\QRCode\\Output\\QRImagick' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRImagick.php',
'chillerlan\\QRCode\\Output\\QRMarkup' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRMarkup.php',
+ 'chillerlan\\QRCode\\Output\\QRMarkupHTML' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRMarkupHTML.php',
+ 'chillerlan\\QRCode\\Output\\QRMarkupSVG' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRMarkupSVG.php',
'chillerlan\\QRCode\\Output\\QROutputAbstract' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QROutputAbstract.php',
'chillerlan\\QRCode\\Output\\QROutputInterface' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QROutputInterface.php',
'chillerlan\\QRCode\\Output\\QRString' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRString.php',
+ 'chillerlan\\QRCode\\Output\\QRStringJSON' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRStringJSON.php',
+ 'chillerlan\\QRCode\\Output\\QRStringText' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/Output/QRStringText.php',
'chillerlan\\QRCode\\QRCode' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/QRCode.php',
'chillerlan\\QRCode\\QRCodeException' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/QRCodeException.php',
'chillerlan\\QRCode\\QROptions' => __DIR__ . '/..' . '/chillerlan/php-qrcode/src/QROptions.php',
diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
index 75e597215..ce20a711c 100644
--- a/vendor/composer/installed.json
+++ b/vendor/composer/installed.json
@@ -1,6 +1,91 @@
{
"packages": [
{
+ "name": "bakame/http-structured-fields",
+ "version": "2.0.0",
+ "version_normalized": "2.0.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/bakame-php/http-structured-fields.git",
+ "reference": "d0fc193e5b173a4e90f2fa589d5b97b2b653b323"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/bakame-php/http-structured-fields/zipball/d0fc193e5b173a4e90f2fa589d5b97b2b653b323",
+ "reference": "d0fc193e5b173a4e90f2fa589d5b97b2b653b323",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "bakame/aide-base32": "dev-main",
+ "friendsofphp/php-cs-fixer": "^3.65.0",
+ "httpwg/structured-field-tests": "*@dev",
+ "phpbench/phpbench": "^1.3.1",
+ "phpstan/phpstan": "^2.0.3",
+ "phpstan/phpstan-deprecation-rules": "^2.0.1",
+ "phpstan/phpstan-phpunit": "^2.0.1",
+ "phpstan/phpstan-strict-rules": "^2.0",
+ "phpunit/phpunit": "^10.5.38 || ^11.5.0",
+ "symfony/var-dumper": "^6.4.15 || ^v7.2.0"
+ },
+ "time": "2024-12-12T08:25:42+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-develop": "1.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Bakame\\Http\\StructuredFields\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ignace Nyamagana Butera",
+ "email": "nyamsprod@gmail.com",
+ "homepage": "https://github.com/nyamsprod/",
+ "role": "Developer"
+ }
+ ],
+ "description": "A PHP library that parses, validates and serializes HTTP structured fields according to RFC9561 and RFC8941",
+ "keywords": [
+ "headers",
+ "http",
+ "http headers",
+ "http trailers",
+ "parser",
+ "rfc8941",
+ "rfc9651",
+ "serializer",
+ "structured fields",
+ "structured headers",
+ "structured trailers",
+ "structured values",
+ "trailers",
+ "validation"
+ ],
+ "support": {
+ "docs": "https://github.com/bakame-php/http-structured-fields",
+ "issues": "https://github.com/bakame-php/http-structured-fields/issues",
+ "source": "https://github.com/bakame-php/http-structured-fields"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/nyamsprod",
+ "type": "github"
+ }
+ ],
+ "install-path": "../bakame/http-structured-fields"
+ },
+ {
"name": "blueimp/jquery-file-upload",
"version": "v10.32.0",
"version_normalized": "10.32.0.0",
@@ -70,28 +155,28 @@
},
{
"name": "brick/math",
- "version": "0.11.0",
- "version_normalized": "0.11.0.0",
+ "version": "0.12.3",
+ "version_normalized": "0.12.3.0",
"source": {
"type": "git",
"url": "https://github.com/brick/math.git",
- "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
+ "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
- "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
+ "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
+ "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
"shasum": ""
},
"require": {
- "php": "^8.0"
+ "php": "^8.1"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.2",
- "phpunit/phpunit": "^9.0",
- "vimeo/psalm": "5.0.0"
+ "phpunit/phpunit": "^10.1",
+ "vimeo/psalm": "6.8.8"
},
- "time": "2023-01-15T23:15:59+00:00",
+ "time": "2025-02-28T13:11:00+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -111,12 +196,17 @@
"arithmetic",
"bigdecimal",
"bignum",
+ "bignumber",
"brick",
- "math"
+ "decimal",
+ "integer",
+ "math",
+ "mathematics",
+ "rational"
],
"support": {
"issues": "https://github.com/brick/math/issues",
- "source": "https://github.com/brick/math/tree/0.11.0"
+ "source": "https://github.com/brick/math/tree/0.12.3"
},
"funding": [
{
@@ -128,17 +218,17 @@
},
{
"name": "bshaffer/oauth2-server-php",
- "version": "v1.14.1",
- "version_normalized": "1.14.1.0",
+ "version": "v1.14.2",
+ "version_normalized": "1.14.2.0",
"source": {
"type": "git",
"url": "https://github.com/bshaffer/oauth2-server-php.git",
- "reference": "096db2c86a7d67a2ba45e72be7d208c342694542"
+ "reference": "1c715c2d2f71254d1c683b8c89a0f16b61ccd0d6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bshaffer/oauth2-server-php/zipball/096db2c86a7d67a2ba45e72be7d208c342694542",
- "reference": "096db2c86a7d67a2ba45e72be7d208c342694542",
+ "url": "https://api.github.com/repos/bshaffer/oauth2-server-php/zipball/1c715c2d2f71254d1c683b8c89a0f16b61ccd0d6",
+ "reference": "1c715c2d2f71254d1c683b8c89a0f16b61ccd0d6",
"shasum": ""
},
"require": {
@@ -159,7 +249,7 @@
"predis/predis": "Required to use Redis storage",
"thobbs/phpcassa": "Required to use Cassandra storage"
},
- "time": "2023-07-07T17:53:54+00:00",
+ "time": "2025-03-28T21:13:45+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -187,55 +277,71 @@
],
"support": {
"issues": "https://github.com/bshaffer/oauth2-server-php/issues",
- "source": "https://github.com/bshaffer/oauth2-server-php/tree/v1.14.1"
+ "source": "https://github.com/bshaffer/oauth2-server-php/tree/v1.14.2"
},
"install-path": "../bshaffer/oauth2-server-php"
},
{
"name": "chillerlan/php-qrcode",
- "version": "4.3.4",
- "version_normalized": "4.3.4.0",
+ "version": "5.0.3",
+ "version_normalized": "5.0.3.0",
"source": {
"type": "git",
"url": "https://github.com/chillerlan/php-qrcode.git",
- "reference": "2ca4bf5ae048af1981d1023ee42a0a2a9d51e51d"
+ "reference": "42e215640e9ebdd857570c9e4e52245d1ee51de2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/chillerlan/php-qrcode/zipball/2ca4bf5ae048af1981d1023ee42a0a2a9d51e51d",
- "reference": "2ca4bf5ae048af1981d1023ee42a0a2a9d51e51d",
+ "url": "https://api.github.com/repos/chillerlan/php-qrcode/zipball/42e215640e9ebdd857570c9e4e52245d1ee51de2",
+ "reference": "42e215640e9ebdd857570c9e4e52245d1ee51de2",
"shasum": ""
},
"require": {
- "chillerlan/php-settings-container": "^2.1.4",
+ "chillerlan/php-settings-container": "^2.1.6 || ^3.2.1",
"ext-mbstring": "*",
"php": "^7.4 || ^8.0"
},
"require-dev": {
- "phan/phan": "^5.3",
- "phpunit/phpunit": "^9.5",
- "setasign/fpdf": "^1.8.2"
+ "chillerlan/php-authenticator": "^4.3.1 || ^5.2.1",
+ "ext-fileinfo": "*",
+ "phan/phan": "^5.4.5",
+ "phpcompatibility/php-compatibility": "10.x-dev",
+ "phpmd/phpmd": "^2.15",
+ "phpunit/phpunit": "^9.6",
+ "setasign/fpdf": "^1.8.2",
+ "slevomat/coding-standard": "^8.15",
+ "squizlabs/php_codesniffer": "^3.11"
},
"suggest": {
"chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.",
- "setasign/fpdf": "Required to use the QR FPDF output."
+ "setasign/fpdf": "Required to use the QR FPDF output.",
+ "simple-icons/simple-icons": "SVG icons that you can use to embed as logos in the QR Code"
},
- "time": "2022-07-25T09:12:45+00:00",
+ "time": "2024-11-21T16:12:34+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
- "chillerlan\\QRCode\\": "src/"
+ "chillerlan\\QRCode\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "MIT",
+ "Apache-2.0"
],
"authors": [
{
"name": "Kazuhiko Arase",
- "homepage": "https://github.com/kazuhikoarase"
+ "homepage": "https://github.com/kazuhikoarase/qrcode-generator"
+ },
+ {
+ "name": "ZXing Authors",
+ "homepage": "https://github.com/zxing/zxing"
+ },
+ {
+ "name": "Ashot Khanamiryan",
+ "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder"
},
{
"name": "Smiley",
@@ -247,60 +353,62 @@
"homepage": "https://github.com/chillerlan/php-qrcode/graphs/contributors"
}
],
- "description": "A QR code generator. PHP 7.4+",
+ "description": "A QR Code generator and reader with a user-friendly API. PHP 7.4+",
"homepage": "https://github.com/chillerlan/php-qrcode",
"keywords": [
"phpqrcode",
"qr",
"qr code",
+ "qr-reader",
"qrcode",
- "qrcode-generator"
+ "qrcode-generator",
+ "qrcode-reader"
],
"support": {
+ "docs": "https://php-qrcode.readthedocs.io",
"issues": "https://github.com/chillerlan/php-qrcode/issues",
- "source": "https://github.com/chillerlan/php-qrcode/tree/4.3.4"
+ "source": "https://github.com/chillerlan/php-qrcode"
},
"funding": [
{
- "url": "https://www.paypal.com/donate?hosted_button_id=WLYUNAT9ZTJZ4",
- "type": "custom"
- },
- {
"url": "https://ko-fi.com/codemasher",
- "type": "ko_fi"
+ "type": "Ko-Fi"
}
],
"install-path": "../chillerlan/php-qrcode"
},
{
"name": "chillerlan/php-settings-container",
- "version": "2.1.4",
- "version_normalized": "2.1.4.0",
+ "version": "3.2.1",
+ "version_normalized": "3.2.1.0",
"source": {
"type": "git",
"url": "https://github.com/chillerlan/php-settings-container.git",
- "reference": "1beb7df3c14346d4344b0b2e12f6f9a74feabd4a"
+ "reference": "95ed3e9676a1d47cab2e3174d19b43f5dbf52681"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/chillerlan/php-settings-container/zipball/1beb7df3c14346d4344b0b2e12f6f9a74feabd4a",
- "reference": "1beb7df3c14346d4344b0b2e12f6f9a74feabd4a",
+ "url": "https://api.github.com/repos/chillerlan/php-settings-container/zipball/95ed3e9676a1d47cab2e3174d19b43f5dbf52681",
+ "reference": "95ed3e9676a1d47cab2e3174d19b43f5dbf52681",
"shasum": ""
},
"require": {
"ext-json": "*",
- "php": "^7.4 || ^8.0"
+ "php": "^8.1"
},
"require-dev": {
- "phan/phan": "^5.3",
- "phpunit/phpunit": "^9.5"
+ "phpmd/phpmd": "^2.15",
+ "phpstan/phpstan": "^1.11",
+ "phpstan/phpstan-deprecation-rules": "^1.2",
+ "phpunit/phpunit": "^10.5",
+ "squizlabs/php_codesniffer": "^3.10"
},
- "time": "2022-07-05T22:32:14+00:00",
+ "time": "2024-07-16T11:13:48+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
- "chillerlan\\Settings\\": "src/"
+ "chillerlan\\Settings\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -314,10 +422,9 @@
"homepage": "https://github.com/codemasher"
}
],
- "description": "A container class for immutable settings objects. Not a DI container. PHP 7.4+",
+ "description": "A container class for immutable settings objects. Not a DI container.",
"homepage": "https://github.com/chillerlan/php-settings-container",
"keywords": [
- "PHP7",
"Settings",
"configuration",
"container",
@@ -341,31 +448,31 @@
},
{
"name": "commerceguys/intl",
- "version": "v1.1.2",
- "version_normalized": "1.1.2.0",
+ "version": "v2.0.6",
+ "version_normalized": "2.0.6.0",
"source": {
"type": "git",
"url": "https://github.com/commerceguys/intl.git",
- "reference": "f6200ca01f8c095f2a2602782b353770f738db87"
+ "reference": "53d10f3f2f7375fa20ad83314c3eb5a272ce246d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/commerceguys/intl/zipball/f6200ca01f8c095f2a2602782b353770f738db87",
- "reference": "f6200ca01f8c095f2a2602782b353770f738db87",
+ "url": "https://api.github.com/repos/commerceguys/intl/zipball/53d10f3f2f7375fa20ad83314c3eb5a272ce246d",
+ "reference": "53d10f3f2f7375fa20ad83314c3eb5a272ce246d",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "php": ">=8.0"
},
"require-dev": {
"mikey179/vfsstream": "1.*",
- "phpunit/phpunit": "^9.5"
+ "phpunit/phpunit": "^10"
},
- "time": "2023-02-20T09:57:58+00:00",
+ "time": "2024-07-12T07:51:53+00:00",
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.x-dev"
+ "dev-master": "2.x-dev"
}
},
"installation-source": "dist",
@@ -389,7 +496,7 @@
"description": "Internationalization library powered by CLDR data.",
"support": {
"issues": "https://github.com/commerceguys/intl/issues",
- "source": "https://github.com/commerceguys/intl/tree/v1.1.2"
+ "source": "https://github.com/commerceguys/intl/tree/v2.0.6"
},
"install-path": "../commerceguys/intl"
},
@@ -437,21 +544,21 @@
},
{
"name": "ezyang/htmlpurifier",
- "version": "v4.17.0",
- "version_normalized": "4.17.0.0",
+ "version": "v4.18.0",
+ "version_normalized": "4.18.0.0",
"source": {
"type": "git",
"url": "https://github.com/ezyang/htmlpurifier.git",
- "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
+ "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
- "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
+ "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
+ "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
"shasum": ""
},
"require": {
- "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
+ "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
},
"require-dev": {
"cerdic/css-tidy": "^1.7 || ^2.0",
@@ -463,7 +570,7 @@
"ext-iconv": "Converts text to and from non-UTF-8 encodings",
"ext-tidy": "Used for pretty-printing HTML"
},
- "time": "2023-11-17T15:01:25+00:00",
+ "time": "2024-11-01T03:51:45+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -495,23 +602,142 @@
],
"support": {
"issues": "https://github.com/ezyang/htmlpurifier/issues",
- "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
+ "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
},
"install-path": "../ezyang/htmlpurifier"
},
{
+ "name": "guzzlehttp/psr7",
+ "version": "2.7.1",
+ "version_normalized": "2.7.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/psr7.git",
+ "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
+ "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0",
+ "psr/http-factory": "^1.0",
+ "psr/http-message": "^1.1 || ^2.0",
+ "ralouphie/getallheaders": "^3.0"
+ },
+ "provide": {
+ "psr/http-factory-implementation": "1.0",
+ "psr/http-message-implementation": "1.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "http-interop/http-factory-tests": "0.9.0",
+ "phpunit/phpunit": "^8.5.39 || ^9.6.20"
+ },
+ "suggest": {
+ "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
+ },
+ "time": "2025-03-27T12:30:47+00:00",
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "GuzzleHttp\\Psr7\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
+ {
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
+ },
+ {
+ "name": "George Mponos",
+ "email": "gmponos@gmail.com",
+ "homepage": "https://github.com/gmponos"
+ },
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
+ },
+ {
+ "name": "Márk Sági-Kazár",
+ "email": "mark.sagikazar@gmail.com",
+ "homepage": "https://github.com/sagikazarmark"
+ },
+ {
+ "name": "Tobias Schultze",
+ "email": "webmaster@tubo-world.de",
+ "homepage": "https://github.com/Tobion"
+ },
+ {
+ "name": "Márk Sági-Kazár",
+ "email": "mark.sagikazar@gmail.com",
+ "homepage": "https://sagikazarmark.hu"
+ }
+ ],
+ "description": "PSR-7 message implementation that also provides common utility methods",
+ "keywords": [
+ "http",
+ "message",
+ "psr-7",
+ "request",
+ "response",
+ "stream",
+ "uri",
+ "url"
+ ],
+ "support": {
+ "issues": "https://github.com/guzzle/psr7/issues",
+ "source": "https://github.com/guzzle/psr7/tree/2.7.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/Nyholm",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
+ "type": "tidelift"
+ }
+ ],
+ "install-path": "../guzzlehttp/psr7"
+ },
+ {
"name": "jbroadway/urlify",
- "version": "1.2.4-stable",
- "version_normalized": "1.2.4.0",
+ "version": "1.2.5-stable",
+ "version_normalized": "1.2.5.0",
"source": {
"type": "git",
"url": "https://github.com/jbroadway/urlify.git",
- "reference": "d0fafbaa1dc14e8039cdf5c72a932a8d1de1750e"
+ "reference": "62f75cfa5ec06935091b348cac52c6672a7ca1f4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/jbroadway/urlify/zipball/d0fafbaa1dc14e8039cdf5c72a932a8d1de1750e",
- "reference": "d0fafbaa1dc14e8039cdf5c72a932a8d1de1750e",
+ "url": "https://api.github.com/repos/jbroadway/urlify/zipball/62f75cfa5ec06935091b348cac52c6672a7ca1f4",
+ "reference": "62f75cfa5ec06935091b348cac52c6672a7ca1f4",
"shasum": ""
},
"require": {
@@ -522,7 +748,7 @@
"require-dev": {
"phpunit/phpunit": "^8.5"
},
- "time": "2022-06-15T16:46:46+00:00",
+ "time": "2025-04-01T21:08:37+00:00",
"type": "library",
"extra": {
"branch-alias": {
@@ -569,7 +795,7 @@
],
"support": {
"issues": "https://github.com/jbroadway/urlify/issues",
- "source": "https://github.com/jbroadway/urlify/tree/1.2.4-stable"
+ "source": "https://github.com/jbroadway/urlify/tree/1.2.5-stable"
},
"install-path": "../jbroadway/urlify"
},
@@ -666,6 +892,186 @@
"install-path": "../league/html-to-markdown"
},
{
+ "name": "league/uri",
+ "version": "7.5.1",
+ "version_normalized": "7.5.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/uri.git",
+ "reference": "81fb5145d2644324614cc532b28efd0215bda430"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
+ "reference": "81fb5145d2644324614cc532b28efd0215bda430",
+ "shasum": ""
+ },
+ "require": {
+ "league/uri-interfaces": "^7.5",
+ "php": "^8.1"
+ },
+ "conflict": {
+ "league/uri-schemes": "^1.0"
+ },
+ "suggest": {
+ "ext-bcmath": "to improve IPV4 host parsing",
+ "ext-fileinfo": "to create Data URI from file contennts",
+ "ext-gmp": "to improve IPV4 host parsing",
+ "ext-intl": "to handle IDN host with the best performance",
+ "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
+ "league/uri-components": "Needed to easily manipulate URI objects components",
+ "php-64bit": "to improve IPV4 host parsing",
+ "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
+ },
+ "time": "2024-12-08T08:40:02+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "7.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "League\\Uri\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ignace Nyamagana Butera",
+ "email": "nyamsprod@gmail.com",
+ "homepage": "https://nyamsprod.com"
+ }
+ ],
+ "description": "URI manipulation library",
+ "homepage": "https://uri.thephpleague.com",
+ "keywords": [
+ "data-uri",
+ "file-uri",
+ "ftp",
+ "hostname",
+ "http",
+ "https",
+ "middleware",
+ "parse_str",
+ "parse_url",
+ "psr-7",
+ "query-string",
+ "querystring",
+ "rfc3986",
+ "rfc3987",
+ "rfc6570",
+ "uri",
+ "uri-template",
+ "url",
+ "ws"
+ ],
+ "support": {
+ "docs": "https://uri.thephpleague.com",
+ "forum": "https://thephpleague.slack.com",
+ "issues": "https://github.com/thephpleague/uri-src/issues",
+ "source": "https://github.com/thephpleague/uri/tree/7.5.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/nyamsprod",
+ "type": "github"
+ }
+ ],
+ "install-path": "../league/uri"
+ },
+ {
+ "name": "league/uri-interfaces",
+ "version": "7.5.0",
+ "version_normalized": "7.5.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/uri-interfaces.git",
+ "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
+ "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
+ "shasum": ""
+ },
+ "require": {
+ "ext-filter": "*",
+ "php": "^8.1",
+ "psr/http-factory": "^1",
+ "psr/http-message": "^1.1 || ^2.0"
+ },
+ "suggest": {
+ "ext-bcmath": "to improve IPV4 host parsing",
+ "ext-gmp": "to improve IPV4 host parsing",
+ "ext-intl": "to handle IDN host with the best performance",
+ "php-64bit": "to improve IPV4 host parsing",
+ "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
+ },
+ "time": "2024-12-08T08:18:47+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "7.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "League\\Uri\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ignace Nyamagana Butera",
+ "email": "nyamsprod@gmail.com",
+ "homepage": "https://nyamsprod.com"
+ }
+ ],
+ "description": "Common interfaces and classes for URI representation and interaction",
+ "homepage": "https://uri.thephpleague.com",
+ "keywords": [
+ "data-uri",
+ "file-uri",
+ "ftp",
+ "hostname",
+ "http",
+ "https",
+ "parse_str",
+ "parse_url",
+ "psr-7",
+ "query-string",
+ "querystring",
+ "rfc3986",
+ "rfc3987",
+ "rfc6570",
+ "uri",
+ "url",
+ "ws"
+ ],
+ "support": {
+ "docs": "https://uri.thephpleague.com",
+ "forum": "https://thephpleague.slack.com",
+ "issues": "https://github.com/thephpleague/uri-src/issues",
+ "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/nyamsprod",
+ "type": "github"
+ }
+ ],
+ "install-path": "../league/uri-interfaces"
+ },
+ {
"name": "lukasreschke/id3parser",
"version": "v0.0.3",
"version_normalized": "0.0.3.0",
@@ -705,6 +1111,50 @@
"install-path": "../lukasreschke/id3parser"
},
{
+ "name": "macgirvin/http-message-signer",
+ "version": "v0.1.7",
+ "version_normalized": "0.1.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/macgirvin/HTTP-Message-Signer.git",
+ "reference": "44db674fb750b4e4909cf1aeb3a18a4c68d938ca"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/macgirvin/HTTP-Message-Signer/zipball/44db674fb750b4e4909cf1aeb3a18a4c68d938ca",
+ "reference": "44db674fb750b4e4909cf1aeb3a18a4c68d938ca",
+ "shasum": ""
+ },
+ "require": {
+ "bakame/http-structured-fields": "^2.0",
+ "ext-openssl": "*",
+ "guzzlehttp/psr7": "^2.0",
+ "php": "^8.1",
+ "psr/http-message": "^2.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^10.0"
+ },
+ "time": "2025-06-25T03:19:43+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "HttpSignature\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "description": "RFC 9421 HTTP Message Signer and Verifier for PSR-7 requests",
+ "support": {
+ "issues": "https://github.com/macgirvin/HTTP-Message-Signer/issues",
+ "source": "https://github.com/macgirvin/HTTP-Message-Signer/tree/v0.1.7"
+ },
+ "install-path": "../macgirvin/http-message-signer"
+ },
+ {
"name": "michelf/php-markdown",
"version": "2.0.0",
"version_normalized": "2.0.0.0",
@@ -826,27 +1276,27 @@
},
{
"name": "paragonie/constant_time_encoding",
- "version": "v2.6.3",
- "version_normalized": "2.6.3.0",
+ "version": "v3.0.0",
+ "version_normalized": "3.0.0.0",
"source": {
"type": "git",
"url": "https://github.com/paragonie/constant_time_encoding.git",
- "reference": "58c3f47f650c94ec05a151692652a868995d2938"
+ "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
- "reference": "58c3f47f650c94ec05a151692652a868995d2938",
+ "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
+ "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
"shasum": ""
},
"require": {
- "php": "^7|^8"
+ "php": "^8"
},
"require-dev": {
- "phpunit/phpunit": "^6|^7|^8|^9",
- "vimeo/psalm": "^1|^2|^3|^4"
+ "phpunit/phpunit": "^9",
+ "vimeo/psalm": "^4|^5"
},
- "time": "2022-06-14T06:56:20+00:00",
+ "time": "2024-05-08T12:36:18+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -896,17 +1346,17 @@
},
{
"name": "patrickschur/language-detection",
- "version": "v5.3.0",
- "version_normalized": "5.3.0.0",
+ "version": "v5.3.1",
+ "version_normalized": "5.3.1.0",
"source": {
"type": "git",
"url": "https://github.com/patrickschur/language-detection.git",
- "reference": "b8da335336c09fa6814fe0ca0d6d506c357cd7b9"
+ "reference": "df8d32021b2ef9fde52e6fcccb83e3806822c9c6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/patrickschur/language-detection/zipball/b8da335336c09fa6814fe0ca0d6d506c357cd7b9",
- "reference": "b8da335336c09fa6814fe0ca0d6d506c357cd7b9",
+ "url": "https://api.github.com/repos/patrickschur/language-detection/zipball/df8d32021b2ef9fde52e6fcccb83e3806822c9c6",
+ "reference": "df8d32021b2ef9fde52e6fcccb83e3806822c9c6",
"shasum": ""
},
"require": {
@@ -917,7 +1367,7 @@
"require-dev": {
"phpunit/phpunit": "^9.5.0"
},
- "time": "2023-08-18T22:46:39+00:00",
+ "time": "2025-03-25T22:47:08+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -944,7 +1394,7 @@
],
"support": {
"issues": "https://github.com/patrickschur/language-detection/issues",
- "source": "https://github.com/patrickschur/language-detection/tree/v5.3.0"
+ "source": "https://github.com/patrickschur/language-detection/tree/v5.3.1"
},
"install-path": "../patrickschur/language-detection"
},
@@ -1001,17 +1451,17 @@
},
{
"name": "phpseclib/phpseclib",
- "version": "2.0.47",
- "version_normalized": "2.0.47.0",
+ "version": "2.0.48",
+ "version_normalized": "2.0.48.0",
"source": {
"type": "git",
"url": "https://github.com/phpseclib/phpseclib.git",
- "reference": "b7d7d90ee7df7f33a664b4aea32d50a305d35adb"
+ "reference": "eaa7be704b8b93a6913b69eb7f645a59d7731b61"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/b7d7d90ee7df7f33a664b4aea32d50a305d35adb",
- "reference": "b7d7d90ee7df7f33a664b4aea32d50a305d35adb",
+ "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/eaa7be704b8b93a6913b69eb7f645a59d7731b61",
+ "reference": "eaa7be704b8b93a6913b69eb7f645a59d7731b61",
"shasum": ""
},
"require": {
@@ -1029,7 +1479,7 @@
"ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
"ext-xml": "Install the XML extension to load XML formatted public keys."
},
- "time": "2024-02-26T04:55:38+00:00",
+ "time": "2024-12-14T21:03:54+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -1094,7 +1544,7 @@
],
"support": {
"issues": "https://github.com/phpseclib/phpseclib/issues",
- "source": "https://github.com/phpseclib/phpseclib/tree/2.0.47"
+ "source": "https://github.com/phpseclib/phpseclib/tree/2.0.48"
},
"funding": [
{
@@ -1113,28 +1563,193 @@
"install-path": "../phpseclib/phpseclib"
},
{
- "name": "psr/log",
- "version": "2.0.0",
+ "name": "psr/clock",
+ "version": "1.0.0",
+ "version_normalized": "1.0.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/clock.git",
+ "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+ "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0 || ^8.0"
+ },
+ "time": "2022-11-25T14:36:26+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Clock\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for reading the clock.",
+ "homepage": "https://github.com/php-fig/clock",
+ "keywords": [
+ "clock",
+ "now",
+ "psr",
+ "psr-20",
+ "time"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/clock/issues",
+ "source": "https://github.com/php-fig/clock/tree/1.0.0"
+ },
+ "install-path": "../psr/clock"
+ },
+ {
+ "name": "psr/http-factory",
+ "version": "1.1.0",
+ "version_normalized": "1.1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-factory.git",
+ "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
+ "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1",
+ "psr/http-message": "^1.0 || ^2.0"
+ },
+ "time": "2024-04-15T12:06:14+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Message\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
+ "keywords": [
+ "factory",
+ "http",
+ "message",
+ "psr",
+ "psr-17",
+ "psr-7",
+ "request",
+ "response"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-factory"
+ },
+ "install-path": "../psr/http-factory"
+ },
+ {
+ "name": "psr/http-message",
+ "version": "2.0",
"version_normalized": "2.0.0.0",
"source": {
"type": "git",
+ "url": "https://github.com/php-fig/http-message.git",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "time": "2023-04-04T09:54:51+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Message\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for HTTP messages",
+ "homepage": "https://github.com/php-fig/http-message",
+ "keywords": [
+ "http",
+ "http-message",
+ "psr",
+ "psr-7",
+ "request",
+ "response"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-message/tree/2.0"
+ },
+ "install-path": "../psr/http-message"
+ },
+ {
+ "name": "psr/log",
+ "version": "3.0.2",
+ "version_normalized": "3.0.2.0",
+ "source": {
+ "type": "git",
"url": "https://github.com/php-fig/log.git",
- "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
+ "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
- "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
+ "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
"shasum": ""
},
"require": {
"php": ">=8.0.0"
},
- "time": "2021-07-14T16:41:46+00:00",
+ "time": "2024-09-11T13:17:53+00:00",
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0.x-dev"
+ "dev-master": "3.x-dev"
}
},
"installation-source": "dist",
@@ -1161,50 +1776,104 @@
"psr-3"
],
"support": {
- "source": "https://github.com/php-fig/log/tree/2.0.0"
+ "source": "https://github.com/php-fig/log/tree/3.0.2"
},
"install-path": "../psr/log"
},
{
+ "name": "ralouphie/getallheaders",
+ "version": "3.0.3",
+ "version_normalized": "3.0.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ralouphie/getallheaders.git",
+ "reference": "120b605dfeb996808c31b6477290a714d356e822"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
+ "reference": "120b605dfeb996808c31b6477290a714d356e822",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.6"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.1",
+ "phpunit/phpunit": "^5 || ^6.5"
+ },
+ "time": "2019-03-08T08:55:37+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "files": [
+ "src/getallheaders.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ralph Khattar",
+ "email": "ralph.khattar@gmail.com"
+ }
+ ],
+ "description": "A polyfill for getallheaders.",
+ "support": {
+ "issues": "https://github.com/ralouphie/getallheaders/issues",
+ "source": "https://github.com/ralouphie/getallheaders/tree/develop"
+ },
+ "install-path": "../ralouphie/getallheaders"
+ },
+ {
"name": "ramsey/collection",
- "version": "1.2.2",
- "version_normalized": "1.2.2.0",
+ "version": "2.1.1",
+ "version_normalized": "2.1.1.0",
"source": {
"type": "git",
"url": "https://github.com/ramsey/collection.git",
- "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
+ "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
- "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
+ "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
+ "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
"shasum": ""
},
"require": {
- "php": "^7.3 || ^8",
- "symfony/polyfill-php81": "^1.23"
+ "php": "^8.1"
},
"require-dev": {
- "captainhook/captainhook": "^5.3",
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
- "ergebnis/composer-normalize": "^2.6",
- "fakerphp/faker": "^1.5",
- "hamcrest/hamcrest-php": "^2",
- "jangregor/phpstan-prophecy": "^0.8",
- "mockery/mockery": "^1.3",
- "phpspec/prophecy-phpunit": "^2.0",
- "phpstan/extension-installer": "^1",
- "phpstan/phpstan": "^0.12.32",
- "phpstan/phpstan-mockery": "^0.12.5",
- "phpstan/phpstan-phpunit": "^0.12.11",
- "phpunit/phpunit": "^8.5 || ^9",
- "psy/psysh": "^0.10.4",
- "slevomat/coding-standard": "^6.3",
- "squizlabs/php_codesniffer": "^3.5",
- "vimeo/psalm": "^4.4"
- },
- "time": "2021-10-10T03:01:02+00:00",
+ "captainhook/plugin-composer": "^5.3",
+ "ergebnis/composer-normalize": "^2.45",
+ "fakerphp/faker": "^1.24",
+ "hamcrest/hamcrest-php": "^2.0",
+ "jangregor/phpstan-prophecy": "^2.1",
+ "mockery/mockery": "^1.6",
+ "php-parallel-lint/php-console-highlighter": "^1.0",
+ "php-parallel-lint/php-parallel-lint": "^1.4",
+ "phpspec/prophecy-phpunit": "^2.3",
+ "phpstan/extension-installer": "^1.4",
+ "phpstan/phpstan": "^2.1",
+ "phpstan/phpstan-mockery": "^2.0",
+ "phpstan/phpstan-phpunit": "^2.0",
+ "phpunit/phpunit": "^10.5",
+ "ramsey/coding-standard": "^2.3",
+ "ramsey/conventional-commits": "^1.6",
+ "roave/security-advisories": "dev-latest"
+ },
+ "time": "2025-03-22T05:38:12+00:00",
"type": "library",
+ "extra": {
+ "captainhook": {
+ "force-install": true
+ },
+ "ramsey/conventional-commits": {
+ "configFile": "conventional-commits.json"
+ }
+ },
"installation-source": "dist",
"autoload": {
"psr-4": {
@@ -1233,37 +1902,27 @@
],
"support": {
"issues": "https://github.com/ramsey/collection/issues",
- "source": "https://github.com/ramsey/collection/tree/1.2.2"
+ "source": "https://github.com/ramsey/collection/tree/2.1.1"
},
- "funding": [
- {
- "url": "https://github.com/ramsey",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
- "type": "tidelift"
- }
- ],
"install-path": "../ramsey/collection"
},
{
"name": "ramsey/uuid",
- "version": "4.7.5",
- "version_normalized": "4.7.5.0",
+ "version": "4.7.6",
+ "version_normalized": "4.7.6.0",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
- "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
+ "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
- "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
+ "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
"shasum": ""
},
"require": {
- "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
+ "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
"ext-json": "*",
"php": "^8.0",
"ramsey/collection": "^1.2 || ^2.0"
@@ -1300,7 +1959,7 @@
"paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
"ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
},
- "time": "2023-11-08T05:53:05+00:00",
+ "time": "2024-04-27T21:32:50+00:00",
"type": "library",
"extra": {
"captainhook": {
@@ -1328,7 +1987,7 @@
],
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
- "source": "https://github.com/ramsey/uuid/tree/4.7.5"
+ "source": "https://github.com/ramsey/uuid/tree/4.7.6"
},
"funding": [
{
@@ -1344,17 +2003,17 @@
},
{
"name": "sabre/dav",
- "version": "4.6.0",
- "version_normalized": "4.6.0.0",
+ "version": "4.7.0",
+ "version_normalized": "4.7.0.0",
"source": {
"type": "git",
"url": "https://github.com/sabre-io/dav.git",
- "reference": "554145304b4a026477d130928d16e626939b0b2a"
+ "reference": "074373bcd689a30bcf5aaa6bbb20a3395964ce7a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sabre-io/dav/zipball/554145304b4a026477d130928d16e626939b0b2a",
- "reference": "554145304b4a026477d130928d16e626939b0b2a",
+ "url": "https://api.github.com/repos/sabre-io/dav/zipball/074373bcd689a30bcf5aaa6bbb20a3395964ce7a",
+ "reference": "074373bcd689a30bcf5aaa6bbb20a3395964ce7a",
"shasum": ""
},
"require": {
@@ -1388,7 +2047,7 @@
"ext-imap": "*",
"ext-pdo": "*"
},
- "time": "2023-12-11T13:01:23+00:00",
+ "time": "2024-10-29T11:46:02+00:00",
"bin": [
"bin/sabredav",
"bin/naturalselection"
@@ -1430,28 +2089,28 @@
},
{
"name": "sabre/event",
- "version": "5.1.4",
- "version_normalized": "5.1.4.0",
+ "version": "5.1.7",
+ "version_normalized": "5.1.7.0",
"source": {
"type": "git",
"url": "https://github.com/sabre-io/event.git",
- "reference": "d7da22897125d34d7eddf7977758191c06a74497"
+ "reference": "86d57e305c272898ba3c28e9bd3d65d5464587c2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sabre-io/event/zipball/d7da22897125d34d7eddf7977758191c06a74497",
- "reference": "d7da22897125d34d7eddf7977758191c06a74497",
+ "url": "https://api.github.com/repos/sabre-io/event/zipball/86d57e305c272898ba3c28e9bd3d65d5464587c2",
+ "reference": "86d57e305c272898ba3c28e9bd3d65d5464587c2",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "~2.17.1",
+ "friendsofphp/php-cs-fixer": "~2.17.1||^3.63",
"phpstan/phpstan": "^0.12",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.0"
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6"
},
- "time": "2021-11-04T06:51:17+00:00",
+ "time": "2024-08-27T11:23:05+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -1499,17 +2158,17 @@
},
{
"name": "sabre/http",
- "version": "5.1.6",
- "version_normalized": "5.1.6.0",
+ "version": "5.1.12",
+ "version_normalized": "5.1.12.0",
"source": {
"type": "git",
"url": "https://github.com/sabre-io/http.git",
- "reference": "9976ac34ced206bd6579b7b37b401de9fac98dae"
+ "reference": "dedff73f3995578bc942fa4c8484190cac14f139"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sabre-io/http/zipball/9976ac34ced206bd6579b7b37b401de9fac98dae",
- "reference": "9976ac34ced206bd6579b7b37b401de9fac98dae",
+ "url": "https://api.github.com/repos/sabre-io/http/zipball/dedff73f3995578bc942fa4c8484190cac14f139",
+ "reference": "dedff73f3995578bc942fa4c8484190cac14f139",
"shasum": ""
},
"require": {
@@ -1521,14 +2180,14 @@
"sabre/uri": "^2.0"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "~2.17.1",
+ "friendsofphp/php-cs-fixer": "~2.17.1||^3.63",
"phpstan/phpstan": "^0.12",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.0"
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6"
},
"suggest": {
"ext-curl": " to make http requests with the Client class"
},
- "time": "2022-07-15T14:51:14+00:00",
+ "time": "2024-08-27T16:07:41+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -1565,28 +2224,31 @@
},
{
"name": "sabre/uri",
- "version": "2.3.2",
- "version_normalized": "2.3.2.0",
+ "version": "2.3.4",
+ "version_normalized": "2.3.4.0",
"source": {
"type": "git",
"url": "https://github.com/sabre-io/uri.git",
- "reference": "eceb4a1b8b680b45e215574222d6ca00be541970"
+ "reference": "b76524c22de90d80ca73143680a8e77b1266c291"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sabre-io/uri/zipball/eceb4a1b8b680b45e215574222d6ca00be541970",
- "reference": "eceb4a1b8b680b45e215574222d6ca00be541970",
+ "url": "https://api.github.com/repos/sabre-io/uri/zipball/b76524c22de90d80ca73143680a8e77b1266c291",
+ "reference": "b76524c22de90d80ca73143680a8e77b1266c291",
"shasum": ""
},
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "^3.9",
- "phpstan/phpstan": "^1.8",
- "phpunit/phpunit": "^9.0"
- },
- "time": "2022-09-19T11:58:52+00:00",
+ "friendsofphp/php-cs-fixer": "^3.63",
+ "phpstan/extension-installer": "^1.4",
+ "phpstan/phpstan": "^1.12",
+ "phpstan/phpstan-phpunit": "^1.4",
+ "phpstan/phpstan-strict-rules": "^1.6",
+ "phpunit/phpunit": "^9.6"
+ },
+ "time": "2024-08-27T12:18:16+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -1625,17 +2287,17 @@
},
{
"name": "sabre/vobject",
- "version": "4.5.4",
- "version_normalized": "4.5.4.0",
+ "version": "4.5.6",
+ "version_normalized": "4.5.6.0",
"source": {
"type": "git",
"url": "https://github.com/sabre-io/vobject.git",
- "reference": "a6d53a3e5bec85ed3dd78868b7de0f5b4e12f772"
+ "reference": "900266bb3bd448a9f7f41f82344ad0aba237cb27"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sabre-io/vobject/zipball/a6d53a3e5bec85ed3dd78868b7de0f5b4e12f772",
- "reference": "a6d53a3e5bec85ed3dd78868b7de0f5b4e12f772",
+ "url": "https://api.github.com/repos/sabre-io/vobject/zipball/900266bb3bd448a9f7f41f82344ad0aba237cb27",
+ "reference": "900266bb3bd448a9f7f41f82344ad0aba237cb27",
"shasum": ""
},
"require": {
@@ -1645,14 +2307,14 @@
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.17.1",
- "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan": "^0.12 || ^1.11",
"phpunit/php-invoker": "^2.0 || ^3.1",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.0"
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6"
},
"suggest": {
"hoa/bench": "If you would like to run the benchmark scripts"
},
- "time": "2023-11-09T12:54:37+00:00",
+ "time": "2024-10-14T11:53:54+00:00",
"bin": [
"bin/vobject",
"bin/generate_vcards"
@@ -1732,17 +2394,17 @@
},
{
"name": "sabre/xml",
- "version": "2.2.5",
- "version_normalized": "2.2.5.0",
+ "version": "2.2.11",
+ "version_normalized": "2.2.11.0",
"source": {
"type": "git",
"url": "https://github.com/sabre-io/xml.git",
- "reference": "a6af111850e7536d200d9637c34885cd3c77a86c"
+ "reference": "01a7927842abf3e10df3d9c2d9b0cc9d813a3fcc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sabre-io/xml/zipball/a6af111850e7536d200d9637c34885cd3c77a86c",
- "reference": "a6af111850e7536d200d9637c34885cd3c77a86c",
+ "url": "https://api.github.com/repos/sabre-io/xml/zipball/01a7927842abf3e10df3d9c2d9b0cc9d813a3fcc",
+ "reference": "01a7927842abf3e10df3d9c2d9b0cc9d813a3fcc",
"shasum": ""
},
"require": {
@@ -1754,11 +2416,11 @@
"sabre/uri": ">=1.0,<3.0.0"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "~2.17.1",
+ "friendsofphp/php-cs-fixer": "~2.17.1||3.63.2",
"phpstan/phpstan": "^0.12",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.0"
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6"
},
- "time": "2021-11-04T06:37:27+00:00",
+ "time": "2024-09-06T07:37:46+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -1804,48 +2466,50 @@
},
{
"name": "scssphp/scssphp",
- "version": "v1.12.1",
- "version_normalized": "1.12.1.0",
+ "version": "v2.0.1",
+ "version_normalized": "2.0.1.0",
"source": {
"type": "git",
"url": "https://github.com/scssphp/scssphp.git",
- "reference": "394ed1e960138710a60d035c1a85d43d0bf0faeb"
+ "reference": "024f92cd9782e3033b41c2d1c66ab1c0e5c12c0f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/scssphp/scssphp/zipball/394ed1e960138710a60d035c1a85d43d0bf0faeb",
- "reference": "394ed1e960138710a60d035c1a85d43d0bf0faeb",
+ "url": "https://api.github.com/repos/scssphp/scssphp/zipball/024f92cd9782e3033b41c2d1c66ab1c0e5c12c0f",
+ "reference": "024f92cd9782e3033b41c2d1c66ab1c0e5c12c0f",
"shasum": ""
},
"require": {
"ext-ctype": "*",
"ext-json": "*",
- "php": ">=5.6.0"
+ "league/uri": "^7.4",
+ "league/uri-interfaces": "^7.4",
+ "php": ">=8.1",
+ "scssphp/source-span": "^1.0",
+ "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
+ "symfony/polyfill-mbstring": "^1.30"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.3 || ^9.4",
+ "phpunit/phpunit": "^9.5.6",
"sass/sass-spec": "*",
"squizlabs/php_codesniffer": "~3.5",
"symfony/phpunit-bridge": "^5.1",
+ "symfony/var-dumper": "^6.3",
"thoughtbot/bourbon": "^7.0",
"twbs/bootstrap": "~5.0",
"twbs/bootstrap4": "4.6.1",
"zurb/foundation": "~6.7.0"
},
"suggest": {
- "ext-iconv": "Can be used as fallback when ext-mbstring is not available",
- "ext-mbstring": "For best performance, mbstring should be installed as it is faster than ext-iconv"
+ "ext-mbstring": "For best performance, mbstring should be installed as it is faster than the polyfill"
},
- "time": "2024-01-13T12:36:40+00:00",
- "bin": [
- "bin/pscss"
- ],
+ "time": "2025-01-31T12:28:20+00:00",
"type": "library",
"extra": {
"bamarni-bin": {
- "forward-command": false,
- "bin-links": false
+ "bin-links": false,
+ "forward-command": false
}
},
"installation-source": "dist",
@@ -1881,23 +2545,84 @@
],
"support": {
"issues": "https://github.com/scssphp/scssphp/issues",
- "source": "https://github.com/scssphp/scssphp/tree/v1.12.1"
+ "source": "https://github.com/scssphp/scssphp/tree/v2.0.1"
},
"install-path": "../scssphp/scssphp"
},
{
+ "name": "scssphp/source-span",
+ "version": "v1.0.0",
+ "version_normalized": "1.0.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/scssphp/source-span.git",
+ "reference": "f08fc78765e6fb6fa8ca0573fc61b3f8860f0114"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/scssphp/source-span/zipball/f08fc78765e6fb6fa8ca0573fc61b3f8860f0114",
+ "reference": "f08fc78765e6fb6fa8ca0573fc61b3f8860f0114",
+ "shasum": ""
+ },
+ "require": {
+ "league/uri": "^7.4",
+ "league/uri-interfaces": "^7.4",
+ "php": ">=8.1"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^2.0",
+ "phpstan/phpstan-deprecation-rules": "^2.0",
+ "phpunit/phpunit": "^9.5.6",
+ "squizlabs/php_codesniffer": "~3.5",
+ "symfony/phpunit-bridge": "^5.1",
+ "symfony/var-dumper": "^6.3"
+ },
+ "time": "2024-12-09T23:08:15+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "SourceSpan\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Christophe Coevoet",
+ "homepage": "https://github.com/stof"
+ }
+ ],
+ "description": "Provides a representation for source code locations and spans.",
+ "keywords": [
+ "parsing"
+ ],
+ "support": {
+ "issues": "https://github.com/scssphp/source-span/issues",
+ "source": "https://github.com/scssphp/source-span/tree/v1.0.0"
+ },
+ "install-path": "../scssphp/source-span"
+ },
+ {
"name": "simplepie/simplepie",
- "version": "1.8.0",
- "version_normalized": "1.8.0.0",
+ "version": "1.8.1",
+ "version_normalized": "1.8.1.0",
"source": {
"type": "git",
"url": "https://github.com/simplepie/simplepie.git",
- "reference": "65b095d87bc00898d8fa7737bdbcda93a3fbcc55"
+ "reference": "a567b8ab9b6145a23e6a9ec2b6b74f56d52f7ad1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/simplepie/simplepie/zipball/65b095d87bc00898d8fa7737bdbcda93a3fbcc55",
- "reference": "65b095d87bc00898d8fa7737bdbcda93a3fbcc55",
+ "url": "https://api.github.com/repos/simplepie/simplepie/zipball/a567b8ab9b6145a23e6a9ec2b6b74f56d52f7ad1",
+ "reference": "a567b8ab9b6145a23e6a9ec2b6b74f56d52f7ad1",
"shasum": ""
},
"require": {
@@ -1918,28 +2643,18 @@
"ext-mbstring": "",
"mf2/mf2": "Microformat module that allows for parsing HTML for microformats"
},
- "time": "2023-01-20T08:37:35+00:00",
+ "time": "2024-11-22T16:33:20+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
- "psr-4": {
- "SimplePie\\": "src"
- },
"psr-0": {
"SimplePie": "library"
- }
- },
- "autoload-dev": {
+ },
"psr-4": {
- "SimplePie\\Tests\\Fixtures\\": "tests/Fixtures",
- "SimplePie\\Tests\\Unit\\": "tests/Unit"
+ "SimplePie\\": "src"
}
},
- "scripts": {
- "test": [
- "phpunit"
- ]
- },
+ "notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
@@ -1969,45 +2684,49 @@
"rss"
],
"support": {
- "source": "https://github.com/simplepie/simplepie/tree/1.8.0",
- "issues": "https://github.com/simplepie/simplepie/issues"
+ "issues": "https://github.com/simplepie/simplepie/issues",
+ "source": "https://github.com/simplepie/simplepie/tree/1.8.1"
},
"install-path": "../simplepie/simplepie"
},
{
"name": "smarty/smarty",
- "version": "v4.4.1",
- "version_normalized": "4.4.1.0",
+ "version": "v5.4.3",
+ "version_normalized": "5.4.3.0",
"source": {
"type": "git",
"url": "https://github.com/smarty-php/smarty.git",
- "reference": "f4152e9b814ae2369b6e4935c05e1e0c3654318d"
+ "reference": "c6bff5795081ca5e60aabda59fb87daa511acd1e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/smarty-php/smarty/zipball/f4152e9b814ae2369b6e4935c05e1e0c3654318d",
- "reference": "f4152e9b814ae2369b6e4935c05e1e0c3654318d",
+ "url": "https://api.github.com/repos/smarty-php/smarty/zipball/c6bff5795081ca5e60aabda59fb87daa511acd1e",
+ "reference": "c6bff5795081ca5e60aabda59fb87daa511acd1e",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
+ "php": "^7.2 || ^8.0",
+ "symfony/polyfill-mbstring": "^1.27"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^7.5",
- "smarty/smarty-lexer": "^3.1"
+ "smarty/smarty-lexer": "^4.0.2"
},
- "time": "2024-02-26T13:58:37+00:00",
+ "time": "2024-12-23T00:38:44+00:00",
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0.x-dev"
+ "dev-master": "5.0.x-dev"
}
},
"installation-source": "dist",
"autoload": {
- "classmap": [
- "libs/"
- ]
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Smarty\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -2039,45 +2758,47 @@
"support": {
"forum": "https://github.com/smarty-php/smarty/discussions",
"issues": "https://github.com/smarty-php/smarty/issues",
- "source": "https://github.com/smarty-php/smarty/tree/v4.4.1"
+ "source": "https://github.com/smarty-php/smarty/tree/v5.4.3"
},
"install-path": "../smarty/smarty"
},
{
"name": "spomky-labs/otphp",
- "version": "11.2.0",
- "version_normalized": "11.2.0.0",
+ "version": "11.3.0",
+ "version_normalized": "11.3.0.0",
"source": {
"type": "git",
"url": "https://github.com/Spomky-Labs/otphp.git",
- "reference": "9a1569038bb1c8e98040b14b8bcbba54f25e7795"
+ "reference": "2d8ccb5fc992b9cc65ef321fa4f00fefdb3f4b33"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Spomky-Labs/otphp/zipball/9a1569038bb1c8e98040b14b8bcbba54f25e7795",
- "reference": "9a1569038bb1c8e98040b14b8bcbba54f25e7795",
+ "url": "https://api.github.com/repos/Spomky-Labs/otphp/zipball/2d8ccb5fc992b9cc65ef321fa4f00fefdb3f4b33",
+ "reference": "2d8ccb5fc992b9cc65ef321fa4f00fefdb3f4b33",
"shasum": ""
},
"require": {
"ext-mbstring": "*",
- "paragonie/constant_time_encoding": "^2.0",
- "php": "^8.1"
+ "paragonie/constant_time_encoding": "^2.0 || ^3.0",
+ "php": ">=8.1",
+ "psr/clock": "^1.0",
+ "symfony/deprecation-contracts": "^3.2"
},
"require-dev": {
"ekino/phpstan-banned-code": "^1.0",
- "infection/infection": "^0.26",
+ "infection/infection": "^0.26|^0.27|^0.28|^0.29",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
- "phpunit/phpunit": "^9.5.26",
+ "phpunit/phpunit": "^9.5.26|^10.0|^11.0",
"qossmic/deptrac-shim": "^1.0",
- "rector/rector": "^0.15",
- "symfony/phpunit-bridge": "^6.1",
- "symplify/easy-coding-standard": "^11.0"
+ "rector/rector": "^1.0",
+ "symfony/phpunit-bridge": "^6.1|^7.0",
+ "symplify/easy-coding-standard": "^12.0"
},
- "time": "2023-03-16T19:16:25+00:00",
+ "time": "2024-06-12T11:22:32+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -2112,7 +2833,7 @@
],
"support": {
"issues": "https://github.com/Spomky-Labs/otphp/issues",
- "source": "https://github.com/Spomky-Labs/otphp/tree/11.2.0"
+ "source": "https://github.com/Spomky-Labs/otphp/tree/11.3.0"
},
"funding": [
{
@@ -2172,29 +2893,174 @@
"install-path": "../stephenhill/base58"
},
{
- "name": "symfony/polyfill-php81",
- "version": "v1.29.0",
- "version_normalized": "1.29.0.0",
+ "name": "symfony/deprecation-contracts",
+ "version": "v3.5.1",
+ "version_normalized": "3.5.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
+ "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "time": "2024-09-25T14:20:29+00:00",
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
+ "branch-alias": {
+ "dev-main": "3.5-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "files": [
+ "function.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "A generic function and convention to trigger deprecation notices",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "install-path": "../symfony/deprecation-contracts"
+ },
+ {
+ "name": "symfony/filesystem",
+ "version": "v6.4.13",
+ "version_normalized": "6.4.13.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/filesystem.git",
+ "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
+ "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.8"
+ },
+ "require-dev": {
+ "symfony/process": "^5.4|^6.4|^7.0"
+ },
+ "time": "2024-10-25T15:07:50+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Filesystem\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides basic utilities for the filesystem",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "install-path": "../symfony/filesystem"
+ },
+ {
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.31.0",
+ "version_normalized": "1.31.0.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php81.git",
- "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
- "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
+ "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=7.2"
+ },
+ "provide": {
+ "ext-ctype": "*"
},
- "time": "2024-01-29T20:11:03+00:00",
+ "suggest": {
+ "ext-ctype": "For best performance"
+ },
+ "time": "2024-09-09T11:45:10+00:00",
"type": "library",
"extra": {
"thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
}
},
"installation-source": "dist",
@@ -2203,11 +3069,90 @@
"bootstrap.php"
],
"psr-4": {
- "Symfony\\Polyfill\\Php81\\": ""
+ "Symfony\\Polyfill\\Ctype\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
},
- "classmap": [
- "Resources/stubs"
- ]
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for ctype functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "ctype",
+ "polyfill",
+ "portable"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "install-path": "../symfony/polyfill-ctype"
+ },
+ {
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.31.0",
+ "version_normalized": "1.31.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
+ "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "provide": {
+ "ext-mbstring": "*"
+ },
+ "suggest": {
+ "ext-mbstring": "For best performance"
+ },
+ "time": "2024-09-09T11:45:10+00:00",
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Mbstring\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -2223,16 +3168,17 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
+ "description": "Symfony polyfill for the Mbstring extension",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
+ "mbstring",
"polyfill",
"portable",
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
},
"funding": [
{
@@ -2248,27 +3194,27 @@
"type": "tidelift"
}
],
- "install-path": "../symfony/polyfill-php81"
+ "install-path": "../symfony/polyfill-mbstring"
},
{
"name": "twbs/bootstrap",
- "version": "v5.3.3",
- "version_normalized": "5.3.3.0",
+ "version": "v5.3.5",
+ "version_normalized": "5.3.5.0",
"source": {
"type": "git",
"url": "https://github.com/twbs/bootstrap.git",
- "reference": "6e1f75f420f68e1d52733b8e407fc7c3766c9dba"
+ "reference": "85f23534bd2de8041354b297516cf21959091b31"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/twbs/bootstrap/zipball/6e1f75f420f68e1d52733b8e407fc7c3766c9dba",
- "reference": "6e1f75f420f68e1d52733b8e407fc7c3766c9dba",
+ "url": "https://api.github.com/repos/twbs/bootstrap/zipball/85f23534bd2de8041354b297516cf21959091b31",
+ "reference": "85f23534bd2de8041354b297516cf21959091b31",
"shasum": ""
},
"replace": {
"twitter/bootstrap": "self.version"
},
- "time": "2024-02-20T15:14:29+00:00",
+ "time": "2025-04-04T18:20:30+00:00",
"type": "library",
"installation-source": "dist",
"notification-url": "https://packagist.org/downloads/",
@@ -2299,7 +3245,7 @@
],
"support": {
"issues": "https://github.com/twbs/bootstrap/issues",
- "source": "https://github.com/twbs/bootstrap/tree/v5.3.3"
+ "source": "https://github.com/twbs/bootstrap/tree/v5.3.5"
},
"install-path": "../twbs/bootstrap"
},
@@ -2347,17 +3293,17 @@
},
{
"name": "voku/portable-ascii",
- "version": "2.0.1",
- "version_normalized": "2.0.1.0",
+ "version": "2.0.3",
+ "version_normalized": "2.0.3.0",
"source": {
"type": "git",
"url": "https://github.com/voku/portable-ascii.git",
- "reference": "b56450eed252f6801410d810c8e1727224ae0743"
+ "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
- "reference": "b56450eed252f6801410d810c8e1727224ae0743",
+ "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
+ "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
"shasum": ""
},
"require": {
@@ -2369,7 +3315,7 @@
"suggest": {
"ext-intl": "Use Intl for transliterator_transliterate() support"
},
- "time": "2022-03-08T17:03:00+00:00",
+ "time": "2024-11-21T01:49:47+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -2384,7 +3330,7 @@
"authors": [
{
"name": "Lars Moelleken",
- "homepage": "http://www.moelleken.org/"
+ "homepage": "https://www.moelleken.org/"
}
],
"description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
@@ -2396,7 +3342,7 @@
],
"support": {
"issues": "https://github.com/voku/portable-ascii/issues",
- "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
+ "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
},
"funding": [
{
diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php
index 595995bde..5104cac98 100644
--- a/vendor/composer/installed.php
+++ b/vendor/composer/installed.php
@@ -1,15 +1,24 @@
<?php return array(
'root' => array(
'name' => 'zotlabs/hubzilla',
- 'pretty_version' => 'dev-master',
- 'version' => 'dev-master',
- 'reference' => '39933052a9eb827afee3965509909ba314de5257',
+ 'pretty_version' => 'dev-10.4RC',
+ 'version' => 'dev-10.4RC',
+ 'reference' => '7782183ae356db31dbef2dcf785ddc79c00335c1',
'type' => 'application',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev' => false,
),
'versions' => array(
+ 'bakame/http-structured-fields' => array(
+ 'pretty_version' => '2.0.0',
+ 'version' => '2.0.0.0',
+ 'reference' => 'd0fc193e5b173a4e90f2fa589d5b97b2b653b323',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../bakame/http-structured-fields',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
'blueimp/jquery-file-upload' => array(
'pretty_version' => 'v10.32.0',
'version' => '10.32.0.0',
@@ -20,45 +29,45 @@
'dev_requirement' => false,
),
'brick/math' => array(
- 'pretty_version' => '0.11.0',
- 'version' => '0.11.0.0',
- 'reference' => '0ad82ce168c82ba30d1c01ec86116ab52f589478',
+ 'pretty_version' => '0.12.3',
+ 'version' => '0.12.3.0',
+ 'reference' => '866551da34e9a618e64a819ee1e01c20d8a588ba',
'type' => 'library',
'install_path' => __DIR__ . '/../brick/math',
'aliases' => array(),
'dev_requirement' => false,
),
'bshaffer/oauth2-server-php' => array(
- 'pretty_version' => 'v1.14.1',
- 'version' => '1.14.1.0',
- 'reference' => '096db2c86a7d67a2ba45e72be7d208c342694542',
+ 'pretty_version' => 'v1.14.2',
+ 'version' => '1.14.2.0',
+ 'reference' => '1c715c2d2f71254d1c683b8c89a0f16b61ccd0d6',
'type' => 'library',
'install_path' => __DIR__ . '/../bshaffer/oauth2-server-php',
'aliases' => array(),
'dev_requirement' => false,
),
'chillerlan/php-qrcode' => array(
- 'pretty_version' => '4.3.4',
- 'version' => '4.3.4.0',
- 'reference' => '2ca4bf5ae048af1981d1023ee42a0a2a9d51e51d',
+ 'pretty_version' => '5.0.3',
+ 'version' => '5.0.3.0',
+ 'reference' => '42e215640e9ebdd857570c9e4e52245d1ee51de2',
'type' => 'library',
'install_path' => __DIR__ . '/../chillerlan/php-qrcode',
'aliases' => array(),
'dev_requirement' => false,
),
'chillerlan/php-settings-container' => array(
- 'pretty_version' => '2.1.4',
- 'version' => '2.1.4.0',
- 'reference' => '1beb7df3c14346d4344b0b2e12f6f9a74feabd4a',
+ 'pretty_version' => '3.2.1',
+ 'version' => '3.2.1.0',
+ 'reference' => '95ed3e9676a1d47cab2e3174d19b43f5dbf52681',
'type' => 'library',
'install_path' => __DIR__ . '/../chillerlan/php-settings-container',
'aliases' => array(),
'dev_requirement' => false,
),
'commerceguys/intl' => array(
- 'pretty_version' => 'v1.1.2',
- 'version' => '1.1.2.0',
- 'reference' => 'f6200ca01f8c095f2a2602782b353770f738db87',
+ 'pretty_version' => 'v2.0.6',
+ 'version' => '2.0.6.0',
+ 'reference' => '53d10f3f2f7375fa20ad83314c3eb5a272ce246d',
'type' => 'library',
'install_path' => __DIR__ . '/../commerceguys/intl',
'aliases' => array(),
@@ -74,18 +83,27 @@
'dev_requirement' => false,
),
'ezyang/htmlpurifier' => array(
- 'pretty_version' => 'v4.17.0',
- 'version' => '4.17.0.0',
- 'reference' => 'bbc513d79acf6691fa9cf10f192c90dd2957f18c',
+ 'pretty_version' => 'v4.18.0',
+ 'version' => '4.18.0.0',
+ 'reference' => 'cb56001e54359df7ae76dc522d08845dc741621b',
'type' => 'library',
'install_path' => __DIR__ . '/../ezyang/htmlpurifier',
'aliases' => array(),
'dev_requirement' => false,
),
+ 'guzzlehttp/psr7' => array(
+ 'pretty_version' => '2.7.1',
+ 'version' => '2.7.1.0',
+ 'reference' => 'c2270caaabe631b3b44c85f99e5a04bbb8060d16',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../guzzlehttp/psr7',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
'jbroadway/urlify' => array(
- 'pretty_version' => '1.2.4-stable',
- 'version' => '1.2.4.0',
- 'reference' => 'd0fafbaa1dc14e8039cdf5c72a932a8d1de1750e',
+ 'pretty_version' => '1.2.5-stable',
+ 'version' => '1.2.5.0',
+ 'reference' => '62f75cfa5ec06935091b348cac52c6672a7ca1f4',
'type' => 'library',
'install_path' => __DIR__ . '/../jbroadway/urlify',
'aliases' => array(),
@@ -100,6 +118,24 @@
'aliases' => array(),
'dev_requirement' => false,
),
+ 'league/uri' => array(
+ 'pretty_version' => '7.5.1',
+ 'version' => '7.5.1.0',
+ 'reference' => '81fb5145d2644324614cc532b28efd0215bda430',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../league/uri',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'league/uri-interfaces' => array(
+ 'pretty_version' => '7.5.0',
+ 'version' => '7.5.0.0',
+ 'reference' => '08cfc6c4f3d811584fb09c37e2849e6a7f9b0742',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../league/uri-interfaces',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
'lukasreschke/id3parser' => array(
'pretty_version' => 'v0.0.3',
'version' => '0.0.3.0',
@@ -109,6 +145,15 @@
'aliases' => array(),
'dev_requirement' => false,
),
+ 'macgirvin/http-message-signer' => array(
+ 'pretty_version' => 'v0.1.7',
+ 'version' => '0.1.7.0',
+ 'reference' => '44db674fb750b4e4909cf1aeb3a18a4c68d938ca',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../macgirvin/http-message-signer',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
'michelf/php-markdown' => array(
'pretty_version' => '2.0.0',
'version' => '2.0.0.0',
@@ -128,18 +173,18 @@
'dev_requirement' => false,
),
'paragonie/constant_time_encoding' => array(
- 'pretty_version' => 'v2.6.3',
- 'version' => '2.6.3.0',
- 'reference' => '58c3f47f650c94ec05a151692652a868995d2938',
+ 'pretty_version' => 'v3.0.0',
+ 'version' => '3.0.0.0',
+ 'reference' => 'df1e7fde177501eee2037dd159cf04f5f301a512',
'type' => 'library',
'install_path' => __DIR__ . '/../paragonie/constant_time_encoding',
'aliases' => array(),
'dev_requirement' => false,
),
'patrickschur/language-detection' => array(
- 'pretty_version' => 'v5.3.0',
- 'version' => '5.3.0.0',
- 'reference' => 'b8da335336c09fa6814fe0ca0d6d506c357cd7b9',
+ 'pretty_version' => 'v5.3.1',
+ 'version' => '5.3.1.0',
+ 'reference' => 'df8d32021b2ef9fde52e6fcccb83e3806822c9c6',
'type' => 'library',
'install_path' => __DIR__ . '/../patrickschur/language-detection',
'aliases' => array(),
@@ -155,36 +200,84 @@
'dev_requirement' => false,
),
'phpseclib/phpseclib' => array(
- 'pretty_version' => '2.0.47',
- 'version' => '2.0.47.0',
- 'reference' => 'b7d7d90ee7df7f33a664b4aea32d50a305d35adb',
+ 'pretty_version' => '2.0.48',
+ 'version' => '2.0.48.0',
+ 'reference' => 'eaa7be704b8b93a6913b69eb7f645a59d7731b61',
'type' => 'library',
'install_path' => __DIR__ . '/../phpseclib/phpseclib',
'aliases' => array(),
'dev_requirement' => false,
),
- 'psr/log' => array(
- 'pretty_version' => '2.0.0',
+ 'psr/clock' => array(
+ 'pretty_version' => '1.0.0',
+ 'version' => '1.0.0.0',
+ 'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../psr/clock',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'psr/http-factory' => array(
+ 'pretty_version' => '1.1.0',
+ 'version' => '1.1.0.0',
+ 'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../psr/http-factory',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'psr/http-factory-implementation' => array(
+ 'dev_requirement' => false,
+ 'provided' => array(
+ 0 => '1.0',
+ ),
+ ),
+ 'psr/http-message' => array(
+ 'pretty_version' => '2.0',
'version' => '2.0.0.0',
- 'reference' => 'ef29f6d262798707a9edd554e2b82517ef3a9376',
+ 'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../psr/http-message',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'psr/http-message-implementation' => array(
+ 'dev_requirement' => false,
+ 'provided' => array(
+ 0 => '1.0',
+ ),
+ ),
+ 'psr/log' => array(
+ 'pretty_version' => '3.0.2',
+ 'version' => '3.0.2.0',
+ 'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3',
'type' => 'library',
'install_path' => __DIR__ . '/../psr/log',
'aliases' => array(),
'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(),
+ 'dev_requirement' => false,
+ ),
'ramsey/collection' => array(
- 'pretty_version' => '1.2.2',
- 'version' => '1.2.2.0',
- 'reference' => 'cccc74ee5e328031b15640b51056ee8d3bb66c0a',
+ 'pretty_version' => '2.1.1',
+ 'version' => '2.1.1.0',
+ 'reference' => '344572933ad0181accbf4ba763e85a0306a8c5e2',
'type' => 'library',
'install_path' => __DIR__ . '/../ramsey/collection',
'aliases' => array(),
'dev_requirement' => false,
),
'ramsey/uuid' => array(
- 'pretty_version' => '4.7.5',
- 'version' => '4.7.5.0',
- 'reference' => '5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e',
+ 'pretty_version' => '4.7.6',
+ 'version' => '4.7.6.0',
+ 'reference' => '91039bc1faa45ba123c4328958e620d382ec7088',
'type' => 'library',
'install_path' => __DIR__ . '/../ramsey/uuid',
'aliases' => array(),
@@ -193,94 +286,103 @@
'rhumsaa/uuid' => array(
'dev_requirement' => false,
'replaced' => array(
- 0 => '4.7.5',
+ 0 => '4.7.6',
),
),
'sabre/dav' => array(
- 'pretty_version' => '4.6.0',
- 'version' => '4.6.0.0',
- 'reference' => '554145304b4a026477d130928d16e626939b0b2a',
+ 'pretty_version' => '4.7.0',
+ 'version' => '4.7.0.0',
+ 'reference' => '074373bcd689a30bcf5aaa6bbb20a3395964ce7a',
'type' => 'library',
'install_path' => __DIR__ . '/../sabre/dav',
'aliases' => array(),
'dev_requirement' => false,
),
'sabre/event' => array(
- 'pretty_version' => '5.1.4',
- 'version' => '5.1.4.0',
- 'reference' => 'd7da22897125d34d7eddf7977758191c06a74497',
+ 'pretty_version' => '5.1.7',
+ 'version' => '5.1.7.0',
+ 'reference' => '86d57e305c272898ba3c28e9bd3d65d5464587c2',
'type' => 'library',
'install_path' => __DIR__ . '/../sabre/event',
'aliases' => array(),
'dev_requirement' => false,
),
'sabre/http' => array(
- 'pretty_version' => '5.1.6',
- 'version' => '5.1.6.0',
- 'reference' => '9976ac34ced206bd6579b7b37b401de9fac98dae',
+ 'pretty_version' => '5.1.12',
+ 'version' => '5.1.12.0',
+ 'reference' => 'dedff73f3995578bc942fa4c8484190cac14f139',
'type' => 'library',
'install_path' => __DIR__ . '/../sabre/http',
'aliases' => array(),
'dev_requirement' => false,
),
'sabre/uri' => array(
- 'pretty_version' => '2.3.2',
- 'version' => '2.3.2.0',
- 'reference' => 'eceb4a1b8b680b45e215574222d6ca00be541970',
+ 'pretty_version' => '2.3.4',
+ 'version' => '2.3.4.0',
+ 'reference' => 'b76524c22de90d80ca73143680a8e77b1266c291',
'type' => 'library',
'install_path' => __DIR__ . '/../sabre/uri',
'aliases' => array(),
'dev_requirement' => false,
),
'sabre/vobject' => array(
- 'pretty_version' => '4.5.4',
- 'version' => '4.5.4.0',
- 'reference' => 'a6d53a3e5bec85ed3dd78868b7de0f5b4e12f772',
+ 'pretty_version' => '4.5.6',
+ 'version' => '4.5.6.0',
+ 'reference' => '900266bb3bd448a9f7f41f82344ad0aba237cb27',
'type' => 'library',
'install_path' => __DIR__ . '/../sabre/vobject',
'aliases' => array(),
'dev_requirement' => false,
),
'sabre/xml' => array(
- 'pretty_version' => '2.2.5',
- 'version' => '2.2.5.0',
- 'reference' => 'a6af111850e7536d200d9637c34885cd3c77a86c',
+ 'pretty_version' => '2.2.11',
+ 'version' => '2.2.11.0',
+ 'reference' => '01a7927842abf3e10df3d9c2d9b0cc9d813a3fcc',
'type' => 'library',
'install_path' => __DIR__ . '/../sabre/xml',
'aliases' => array(),
'dev_requirement' => false,
),
'scssphp/scssphp' => array(
- 'pretty_version' => 'v1.12.1',
- 'version' => '1.12.1.0',
- 'reference' => '394ed1e960138710a60d035c1a85d43d0bf0faeb',
+ 'pretty_version' => 'v2.0.1',
+ 'version' => '2.0.1.0',
+ 'reference' => '024f92cd9782e3033b41c2d1c66ab1c0e5c12c0f',
'type' => 'library',
'install_path' => __DIR__ . '/../scssphp/scssphp',
'aliases' => array(),
'dev_requirement' => false,
),
+ 'scssphp/source-span' => array(
+ 'pretty_version' => 'v1.0.0',
+ 'version' => '1.0.0.0',
+ 'reference' => 'f08fc78765e6fb6fa8ca0573fc61b3f8860f0114',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../scssphp/source-span',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
'simplepie/simplepie' => array(
- 'pretty_version' => '1.8.0',
- 'version' => '1.8.0.0',
- 'reference' => '65b095d87bc00898d8fa7737bdbcda93a3fbcc55',
+ 'pretty_version' => '1.8.1',
+ 'version' => '1.8.1.0',
+ 'reference' => 'a567b8ab9b6145a23e6a9ec2b6b74f56d52f7ad1',
'type' => 'library',
'install_path' => __DIR__ . '/../simplepie/simplepie',
'aliases' => array(),
'dev_requirement' => false,
),
'smarty/smarty' => array(
- 'pretty_version' => 'v4.4.1',
- 'version' => '4.4.1.0',
- 'reference' => 'f4152e9b814ae2369b6e4935c05e1e0c3654318d',
+ 'pretty_version' => 'v5.4.3',
+ 'version' => '5.4.3.0',
+ 'reference' => 'c6bff5795081ca5e60aabda59fb87daa511acd1e',
'type' => 'library',
'install_path' => __DIR__ . '/../smarty/smarty',
'aliases' => array(),
'dev_requirement' => false,
),
'spomky-labs/otphp' => array(
- 'pretty_version' => '11.2.0',
- 'version' => '11.2.0.0',
- 'reference' => '9a1569038bb1c8e98040b14b8bcbba54f25e7795',
+ 'pretty_version' => '11.3.0',
+ 'version' => '11.3.0.0',
+ 'reference' => '2d8ccb5fc992b9cc65ef321fa4f00fefdb3f4b33',
'type' => 'library',
'install_path' => __DIR__ . '/../spomky-labs/otphp',
'aliases' => array(),
@@ -295,19 +397,46 @@
'aliases' => array(),
'dev_requirement' => false,
),
- 'symfony/polyfill-php81' => array(
- 'pretty_version' => 'v1.29.0',
- 'version' => '1.29.0.0',
- 'reference' => 'c565ad1e63f30e7477fc40738343c62b40bc672d',
+ 'symfony/deprecation-contracts' => array(
+ 'pretty_version' => 'v3.5.1',
+ 'version' => '3.5.1.0',
+ 'reference' => '74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6',
'type' => 'library',
- 'install_path' => __DIR__ . '/../symfony/polyfill-php81',
+ 'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'symfony/filesystem' => array(
+ 'pretty_version' => 'v6.4.13',
+ 'version' => '6.4.13.0',
+ 'reference' => '4856c9cf585d5a0313d8d35afd681a526f038dd3',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../symfony/filesystem',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'symfony/polyfill-ctype' => array(
+ 'pretty_version' => 'v1.31.0',
+ 'version' => '1.31.0.0',
+ 'reference' => 'a3cc8b044a6ea513310cbd48ef7333b384945638',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'symfony/polyfill-mbstring' => array(
+ 'pretty_version' => 'v1.31.0',
+ 'version' => '1.31.0.0',
+ 'reference' => '85181ba99b2345b0ef10ce42ecac37612d9fd341',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
'aliases' => array(),
'dev_requirement' => false,
),
'twbs/bootstrap' => array(
- 'pretty_version' => 'v5.3.3',
- 'version' => '5.3.3.0',
- 'reference' => '6e1f75f420f68e1d52733b8e407fc7c3766c9dba',
+ 'pretty_version' => 'v5.3.5',
+ 'version' => '5.3.5.0',
+ 'reference' => '85f23534bd2de8041354b297516cf21959091b31',
'type' => 'library',
'install_path' => __DIR__ . '/../twbs/bootstrap',
'aliases' => array(),
@@ -325,13 +454,13 @@
'twitter/bootstrap' => array(
'dev_requirement' => false,
'replaced' => array(
- 0 => 'v5.3.3',
+ 0 => 'v5.3.5',
),
),
'voku/portable-ascii' => array(
- 'pretty_version' => '2.0.1',
- 'version' => '2.0.1.0',
- 'reference' => 'b56450eed252f6801410d810c8e1727224ae0743',
+ 'pretty_version' => '2.0.3',
+ 'version' => '2.0.3.0',
+ 'reference' => 'b1d923f88091c6bf09699efcd7c8a1b1bfd7351d',
'type' => 'library',
'install_path' => __DIR__ . '/../voku/portable-ascii',
'aliases' => array(),
@@ -347,9 +476,9 @@
'dev_requirement' => false,
),
'zotlabs/hubzilla' => array(
- 'pretty_version' => 'dev-master',
- 'version' => 'dev-master',
- 'reference' => '39933052a9eb827afee3965509909ba314de5257',
+ 'pretty_version' => 'dev-10.4RC',
+ 'version' => 'dev-10.4RC',
+ 'reference' => '7782183ae356db31dbef2dcf785ddc79c00335c1',
'type' => 'application',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),