Subida del módulo y tema de PrestaShop

This commit is contained in:
Kaloyan
2026-04-09 18:31:51 +02:00
parent 12c253296f
commit 16b3ff9424
39262 changed files with 7418797 additions and 0 deletions

View File

@@ -0,0 +1,579 @@
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Autoload;
/**
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
*
* $loader = new \Composer\Autoload\ClassLoader();
*
* // register classes with namespaces
* $loader->add('Symfony\Component', __DIR__.'/component');
* $loader->add('Symfony', __DIR__.'/framework');
*
* // activate the autoloader
* $loader->register();
*
* // to enable searching the include path (eg. for PEAR packages)
* $loader->setUseIncludePath(true);
*
* In this example, if you try to use a class in the Symfony\Component
* namespace or one of its children (Symfony\Component\Console for instance),
* the autoloader will first look for the class under the component/
* directory, and it will then fallback to the framework/ directory if not
* found before giving up.
*
* This class is loosely based on the Symfony UniversalClassLoader.
*
* @author Fabien Potencier <fabien@symfony.com>
* @author Jordi Boggiano <j.boggiano@seld.be>
* @see https://www.php-fig.org/psr/psr-0/
* @see https://www.php-fig.org/psr/psr-4/
*/
class ClassLoader
{
/** @var \Closure(string):void */
private static $includeFile;
/** @var string|null */
private $vendorDir;
// PSR-4
/**
* @var array<string, array<string, int>>
*/
private $prefixLengthsPsr4 = array();
/**
* @var array<string, list<string>>
*/
private $prefixDirsPsr4 = array();
/**
* @var list<string>
*/
private $fallbackDirsPsr4 = array();
// PSR-0
/**
* List of PSR-0 prefixes
*
* Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
*
* @var array<string, array<string, list<string>>>
*/
private $prefixesPsr0 = array();
/**
* @var list<string>
*/
private $fallbackDirsPsr0 = array();
/** @var bool */
private $useIncludePath = false;
/**
* @var array<string, string>
*/
private $classMap = array();
/** @var bool */
private $classMapAuthoritative = false;
/**
* @var array<string, bool>
*/
private $missingClasses = array();
/** @var string|null */
private $apcuPrefix;
/**
* @var array<string, self>
*/
private static $registeredLoaders = array();
/**
* @param string|null $vendorDir
*/
public function __construct($vendorDir = null)
{
$this->vendorDir = $vendorDir;
self::initializeIncludeClosure();
}
/**
* @return array<string, list<string>>
*/
public function getPrefixes()
{
if (!empty($this->prefixesPsr0)) {
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
}
return array();
}
/**
* @return array<string, list<string>>
*/
public function getPrefixesPsr4()
{
return $this->prefixDirsPsr4;
}
/**
* @return list<string>
*/
public function getFallbackDirs()
{
return $this->fallbackDirsPsr0;
}
/**
* @return list<string>
*/
public function getFallbackDirsPsr4()
{
return $this->fallbackDirsPsr4;
}
/**
* @return array<string, string> Array of classname => path
*/
public function getClassMap()
{
return $this->classMap;
}
/**
* @param array<string, string> $classMap Class to filename map
*
* @return void
*/
public function addClassMap(array $classMap)
{
if ($this->classMap) {
$this->classMap = array_merge($this->classMap, $classMap);
} else {
$this->classMap = $classMap;
}
}
/**
* Registers a set of PSR-0 directories for a given prefix, either
* appending or prepending to the ones previously set for this prefix.
*
* @param string $prefix The prefix
* @param list<string>|string $paths The PSR-0 root directories
* @param bool $prepend Whether to prepend the directories
*
* @return void
*/
public function add($prefix, $paths, $prepend = false)
{
$paths = (array) $paths;
if (!$prefix) {
if ($prepend) {
$this->fallbackDirsPsr0 = array_merge(
$paths,
$this->fallbackDirsPsr0
);
} else {
$this->fallbackDirsPsr0 = array_merge(
$this->fallbackDirsPsr0,
$paths
);
}
return;
}
$first = $prefix[0];
if (!isset($this->prefixesPsr0[$first][$prefix])) {
$this->prefixesPsr0[$first][$prefix] = $paths;
return;
}
if ($prepend) {
$this->prefixesPsr0[$first][$prefix] = array_merge(
$paths,
$this->prefixesPsr0[$first][$prefix]
);
} else {
$this->prefixesPsr0[$first][$prefix] = array_merge(
$this->prefixesPsr0[$first][$prefix],
$paths
);
}
}
/**
* Registers a set of PSR-4 directories for a given namespace, either
* appending or prepending to the ones previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param list<string>|string $paths The PSR-4 base directories
* @param bool $prepend Whether to prepend the directories
*
* @throws \InvalidArgumentException
*
* @return void
*/
public function addPsr4($prefix, $paths, $prepend = false)
{
$paths = (array) $paths;
if (!$prefix) {
// Register directories for the root namespace.
if ($prepend) {
$this->fallbackDirsPsr4 = array_merge(
$paths,
$this->fallbackDirsPsr4
);
} else {
$this->fallbackDirsPsr4 = array_merge(
$this->fallbackDirsPsr4,
$paths
);
}
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
// Register directories for a new namespace.
$length = strlen($prefix);
if ('\\' !== $prefix[$length - 1]) {
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
}
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
$this->prefixDirsPsr4[$prefix] = $paths;
} elseif ($prepend) {
// Prepend directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
$paths,
$this->prefixDirsPsr4[$prefix]
);
} else {
// Append directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
$this->prefixDirsPsr4[$prefix],
$paths
);
}
}
/**
* Registers a set of PSR-0 directories for a given prefix,
* replacing any others previously set for this prefix.
*
* @param string $prefix The prefix
* @param list<string>|string $paths The PSR-0 base directories
*
* @return void
*/
public function set($prefix, $paths)
{
if (!$prefix) {
$this->fallbackDirsPsr0 = (array) $paths;
} else {
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
}
}
/**
* Registers a set of PSR-4 directories for a given namespace,
* replacing any others previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param list<string>|string $paths The PSR-4 base directories
*
* @throws \InvalidArgumentException
*
* @return void
*/
public function setPsr4($prefix, $paths)
{
if (!$prefix) {
$this->fallbackDirsPsr4 = (array) $paths;
} else {
$length = strlen($prefix);
if ('\\' !== $prefix[$length - 1]) {
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
}
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
$this->prefixDirsPsr4[$prefix] = (array) $paths;
}
}
/**
* Turns on searching the include path for class files.
*
* @param bool $useIncludePath
*
* @return void
*/
public function setUseIncludePath($useIncludePath)
{
$this->useIncludePath = $useIncludePath;
}
/**
* Can be used to check if the autoloader uses the include path to check
* for classes.
*
* @return bool
*/
public function getUseIncludePath()
{
return $this->useIncludePath;
}
/**
* Turns off searching the prefix and fallback directories for classes
* that have not been registered with the class map.
*
* @param bool $classMapAuthoritative
*
* @return void
*/
public function setClassMapAuthoritative($classMapAuthoritative)
{
$this->classMapAuthoritative = $classMapAuthoritative;
}
/**
* Should class lookup fail if not found in the current class map?
*
* @return bool
*/
public function isClassMapAuthoritative()
{
return $this->classMapAuthoritative;
}
/**
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
*
* @param string|null $apcuPrefix
*
* @return void
*/
public function setApcuPrefix($apcuPrefix)
{
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
}
/**
* The APCu prefix in use, or null if APCu caching is not enabled.
*
* @return string|null
*/
public function getApcuPrefix()
{
return $this->apcuPrefix;
}
/**
* Registers this instance as an autoloader.
*
* @param bool $prepend Whether to prepend the autoloader or not
*
* @return void
*/
public function register($prepend = false)
{
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
if (null === $this->vendorDir) {
return;
}
if ($prepend) {
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
} else {
unset(self::$registeredLoaders[$this->vendorDir]);
self::$registeredLoaders[$this->vendorDir] = $this;
}
}
/**
* Unregisters this instance as an autoloader.
*
* @return void
*/
public function unregister()
{
spl_autoload_unregister(array($this, 'loadClass'));
if (null !== $this->vendorDir) {
unset(self::$registeredLoaders[$this->vendorDir]);
}
}
/**
* Loads the given class or interface.
*
* @param string $class The name of the class
* @return true|null True if loaded, null otherwise
*/
public function loadClass($class)
{
if ($file = $this->findFile($class)) {
$includeFile = self::$includeFile;
$includeFile($file);
return true;
}
return null;
}
/**
* Finds the path to the file where the class is defined.
*
* @param string $class The name of the class
*
* @return string|false The path if found, false otherwise
*/
public function findFile($class)
{
// class map lookup
if (isset($this->classMap[$class])) {
return $this->classMap[$class];
}
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
return false;
}
if (null !== $this->apcuPrefix) {
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
if ($hit) {
return $file;
}
}
$file = $this->findFileWithExtension($class, '.php');
// Search for Hack files if we are running on HHVM
if (false === $file && defined('HHVM_VERSION')) {
$file = $this->findFileWithExtension($class, '.hh');
}
if (null !== $this->apcuPrefix) {
apcu_add($this->apcuPrefix.$class, $file);
}
if (false === $file) {
// Remember that this class does not exist.
$this->missingClasses[$class] = true;
}
return $file;
}
/**
* Returns the currently registered loaders keyed by their corresponding vendor directories.
*
* @return array<string, self>
*/
public static function getRegisteredLoaders()
{
return self::$registeredLoaders;
}
/**
* @param string $class
* @param string $ext
* @return string|false
*/
private function findFileWithExtension($class, $ext)
{
// PSR-4 lookup
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
$first = $class[0];
if (isset($this->prefixLengthsPsr4[$first])) {
$subPath = $class;
while (false !== $lastPos = strrpos($subPath, '\\')) {
$subPath = substr($subPath, 0, $lastPos);
$search = $subPath . '\\';
if (isset($this->prefixDirsPsr4[$search])) {
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
foreach ($this->prefixDirsPsr4[$search] as $dir) {
if (file_exists($file = $dir . $pathEnd)) {
return $file;
}
}
}
}
}
// PSR-4 fallback dirs
foreach ($this->fallbackDirsPsr4 as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
return $file;
}
}
// PSR-0 lookup
if (false !== $pos = strrpos($class, '\\')) {
// namespaced class name
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
} else {
// PEAR-like class name
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
}
if (isset($this->prefixesPsr0[$first])) {
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
if (0 === strpos($class, $prefix)) {
foreach ($dirs as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
return $file;
}
}
}
}
}
// PSR-0 fallback dirs
foreach ($this->fallbackDirsPsr0 as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
return $file;
}
}
// PSR-0 include paths.
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
return $file;
}
return false;
}
/**
* @return void
*/
private static function initializeIncludeClosure()
{
if (self::$includeFile !== null) {
return;
}
/**
* Scope isolated include.
*
* Prevents access to $this/self from included files.
*
* @param string $file
* @return void
*/
self::$includeFile = \Closure::bind(static function($file) {
include $file;
}, null, null);
}
}

View File

@@ -0,0 +1,396 @@
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer;
use Composer\Autoload\ClassLoader;
use Composer\Semver\VersionParser;
/**
* This class is copied in every Composer installed project and available to all
*
* See also https://getcomposer.org/doc/07-runtime.md#installed-versions
*
* To require its presence, you can require `composer-runtime-api ^2.0`
*
* @final
*/
class InstalledVersions
{
/**
* @var 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;
/**
* @var array[]
* @psalm-var array<string, 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[]}>}>
*/
private static $installedByVendor = array();
/**
* Returns a list of all package names which are present, either by being installed, replaced or provided
*
* @return string[]
* @psalm-return list<string>
*/
public static function getInstalledPackages()
{
$packages = array();
foreach (self::getInstalled() as $installed) {
$packages[] = array_keys($installed['versions']);
}
if (1 === \count($packages)) {
return $packages[0];
}
return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
}
/**
* Returns a list of all package names with a specific type e.g. 'library'
*
* @param string $type
* @return string[]
* @psalm-return list<string>
*/
public static function getInstalledPackagesByType($type)
{
$packagesByType = array();
foreach (self::getInstalled() as $installed) {
foreach ($installed['versions'] as $name => $package) {
if (isset($package['type']) && $package['type'] === $type) {
$packagesByType[] = $name;
}
}
}
return $packagesByType;
}
/**
* Checks whether the given package is installed
*
* This also returns true if the package name is provided or replaced by another package
*
* @param string $packageName
* @param bool $includeDevRequirements
* @return bool
*/
public static function isInstalled($packageName, $includeDevRequirements = true)
{
foreach (self::getInstalled() as $installed) {
if (isset($installed['versions'][$packageName])) {
return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
}
}
return false;
}
/**
* Checks whether the given package satisfies a version constraint
*
* e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call:
*
* Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
*
* @param VersionParser $parser Install composer/semver to have access to this class and functionality
* @param string $packageName
* @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
* @return bool
*/
public static function satisfies(VersionParser $parser, $packageName, $constraint)
{
$constraint = $parser->parseConstraints((string) $constraint);
$provided = $parser->parseConstraints(self::getVersionRanges($packageName));
return $provided->matches($constraint);
}
/**
* Returns a version constraint representing all the range(s) which are installed for a given package
*
* It is easier to use this via isInstalled() with the $constraint argument if you need to check
* whether a given version of a package is installed, and not just whether it exists
*
* @param string $packageName
* @return string Version constraint usable with composer/semver
*/
public static function getVersionRanges($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
$ranges = array();
if (isset($installed['versions'][$packageName]['pretty_version'])) {
$ranges[] = $installed['versions'][$packageName]['pretty_version'];
}
if (array_key_exists('aliases', $installed['versions'][$packageName])) {
$ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
}
if (array_key_exists('replaced', $installed['versions'][$packageName])) {
$ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
}
if (array_key_exists('provided', $installed['versions'][$packageName])) {
$ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
}
return implode(' || ', $ranges);
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
/**
* @param string $packageName
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
*/
public static function getVersion($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
if (!isset($installed['versions'][$packageName]['version'])) {
return null;
}
return $installed['versions'][$packageName]['version'];
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
/**
* @param string $packageName
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
*/
public static function getPrettyVersion($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
if (!isset($installed['versions'][$packageName]['pretty_version'])) {
return null;
}
return $installed['versions'][$packageName]['pretty_version'];
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
/**
* @param string $packageName
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference
*/
public static function getReference($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
if (!isset($installed['versions'][$packageName]['reference'])) {
return null;
}
return $installed['versions'][$packageName]['reference'];
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
/**
* @param string $packageName
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path.
*/
public static function getInstallPath($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null;
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
/**
* @return array
* @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
*/
public static function getRootPackage()
{
$installed = self::getInstalled();
return $installed[0]['root'];
}
/**
* Returns the raw installed.php data for custom implementations
*
* @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
* @return array[]
* @psalm-return array{root: array{name: string, 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[]}>}
*/
public static function getRawData()
{
@trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED);
if (null === self::$installed) {
// only require the installed.php file if this file is loaded from its dumped location,
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
if (substr(__DIR__, -8, 1) !== 'C') {
self::$installed = include __DIR__ . '/installed.php';
} else {
self::$installed = array();
}
}
return self::$installed;
}
/**
* Returns the raw data of all installed.php which are currently loaded for custom implementations
*
* @return array[]
* @psalm-return list<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[]}>}>
*/
public static function getAllRawData()
{
return self::getInstalled();
}
/**
* Lets you reload the static array from another file
*
* This is only useful for complex integrations in which a project needs to use
* this class but then also needs to execute another project's autoloader in process,
* and wants to ensure both projects have access to their version of installed.php.
*
* A typical case would be PHPUnit, where it would need to make sure it reads all
* the data it needs from this class, then call reload() with
* `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure
* the project in which it runs can then also use this class safely, without
* interference between PHPUnit's dependencies and the project's dependencies.
*
* @param array[] $data A vendor/composer/installed.php data set
* @return void
*
* @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
*/
public static function reload($data)
{
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;
}
/**
* @return array[]
* @psalm-return list<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[]}>}>
*/
private static function getInstalled()
{
if (null === self::$canGetVendors) {
self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
}
$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';
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;
}
}
}
if (null === self::$installed) {
// only require the installed.php file if this file is loaded from its dumped location,
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
if (substr(__DIR__, -8, 1) !== 'C') {
/** @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 __DIR__ . '/installed.php';
self::$installed = $required;
} else {
self::$installed = array();
}
}
if (self::$installed !== array() && !$copiedLocalDir) {
$installed[] = self::$installed;
}
return $installed;
}
}

21
modules/ps_mbo/vendor/composer/LICENSE vendored Normal file
View File

@@ -0,0 +1,21 @@
Copyright (c) Nils Adermann, Jordi Boggiano
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@@ -0,0 +1,664 @@
<?php
// autoload_classmap.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
'Clue\\StreamFilter\\CallbackFilter' => $vendorDir . '/clue/stream-filter/src/CallbackFilter.php',
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
'Firebase\\JWT\\BeforeValidException' => $vendorDir . '/firebase/php-jwt/src/BeforeValidException.php',
'Firebase\\JWT\\CachedKeySet' => $vendorDir . '/firebase/php-jwt/src/CachedKeySet.php',
'Firebase\\JWT\\ExpiredException' => $vendorDir . '/firebase/php-jwt/src/ExpiredException.php',
'Firebase\\JWT\\JWK' => $vendorDir . '/firebase/php-jwt/src/JWK.php',
'Firebase\\JWT\\JWT' => $vendorDir . '/firebase/php-jwt/src/JWT.php',
'Firebase\\JWT\\Key' => $vendorDir . '/firebase/php-jwt/src/Key.php',
'Firebase\\JWT\\SignatureInvalidException' => $vendorDir . '/firebase/php-jwt/src/SignatureInvalidException.php',
'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php',
'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php',
'GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/guzzlehttp/promises/src/Coroutine.php',
'GuzzleHttp\\Promise\\Create' => $vendorDir . '/guzzlehttp/promises/src/Create.php',
'GuzzleHttp\\Promise\\Each' => $vendorDir . '/guzzlehttp/promises/src/Each.php',
'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php',
'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php',
'GuzzleHttp\\Promise\\Is' => $vendorDir . '/guzzlehttp/promises/src/Is.php',
'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php',
'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php',
'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php',
'GuzzleHttp\\Promise\\RejectedPromise' => $vendorDir . '/guzzlehttp/promises/src/RejectedPromise.php',
'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php',
'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php',
'GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/guzzlehttp/promises/src/TaskQueueInterface.php',
'GuzzleHttp\\Promise\\Utils' => $vendorDir . '/guzzlehttp/promises/src/Utils.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',
'Http\\Client\\Common\\BatchClient' => $vendorDir . '/php-http/client-common/src/BatchClient.php',
'Http\\Client\\Common\\BatchClientInterface' => $vendorDir . '/php-http/client-common/src/BatchClientInterface.php',
'Http\\Client\\Common\\BatchResult' => $vendorDir . '/php-http/client-common/src/BatchResult.php',
'Http\\Client\\Common\\Deferred' => $vendorDir . '/php-http/client-common/src/Deferred.php',
'Http\\Client\\Common\\EmulatedHttpAsyncClient' => $vendorDir . '/php-http/client-common/src/EmulatedHttpAsyncClient.php',
'Http\\Client\\Common\\EmulatedHttpClient' => $vendorDir . '/php-http/client-common/src/EmulatedHttpClient.php',
'Http\\Client\\Common\\Exception\\BatchException' => $vendorDir . '/php-http/client-common/src/Exception/BatchException.php',
'Http\\Client\\Common\\Exception\\CircularRedirectionException' => $vendorDir . '/php-http/client-common/src/Exception/CircularRedirectionException.php',
'Http\\Client\\Common\\Exception\\ClientErrorException' => $vendorDir . '/php-http/client-common/src/Exception/ClientErrorException.php',
'Http\\Client\\Common\\Exception\\HttpClientNoMatchException' => $vendorDir . '/php-http/client-common/src/Exception/HttpClientNoMatchException.php',
'Http\\Client\\Common\\Exception\\HttpClientNotFoundException' => $vendorDir . '/php-http/client-common/src/Exception/HttpClientNotFoundException.php',
'Http\\Client\\Common\\Exception\\LoopException' => $vendorDir . '/php-http/client-common/src/Exception/LoopException.php',
'Http\\Client\\Common\\Exception\\MultipleRedirectionException' => $vendorDir . '/php-http/client-common/src/Exception/MultipleRedirectionException.php',
'Http\\Client\\Common\\Exception\\ServerErrorException' => $vendorDir . '/php-http/client-common/src/Exception/ServerErrorException.php',
'Http\\Client\\Common\\FlexibleHttpClient' => $vendorDir . '/php-http/client-common/src/FlexibleHttpClient.php',
'Http\\Client\\Common\\HttpAsyncClientDecorator' => $vendorDir . '/php-http/client-common/src/HttpAsyncClientDecorator.php',
'Http\\Client\\Common\\HttpAsyncClientEmulator' => $vendorDir . '/php-http/client-common/src/HttpAsyncClientEmulator.php',
'Http\\Client\\Common\\HttpClientDecorator' => $vendorDir . '/php-http/client-common/src/HttpClientDecorator.php',
'Http\\Client\\Common\\HttpClientEmulator' => $vendorDir . '/php-http/client-common/src/HttpClientEmulator.php',
'Http\\Client\\Common\\HttpClientPool' => $vendorDir . '/php-http/client-common/src/HttpClientPool.php',
'Http\\Client\\Common\\HttpClientPool\\HttpClientPool' => $vendorDir . '/php-http/client-common/src/HttpClientPool/HttpClientPool.php',
'Http\\Client\\Common\\HttpClientPool\\HttpClientPoolItem' => $vendorDir . '/php-http/client-common/src/HttpClientPool/HttpClientPoolItem.php',
'Http\\Client\\Common\\HttpClientPool\\LeastUsedClientPool' => $vendorDir . '/php-http/client-common/src/HttpClientPool/LeastUsedClientPool.php',
'Http\\Client\\Common\\HttpClientPool\\RandomClientPool' => $vendorDir . '/php-http/client-common/src/HttpClientPool/RandomClientPool.php',
'Http\\Client\\Common\\HttpClientPool\\RoundRobinClientPool' => $vendorDir . '/php-http/client-common/src/HttpClientPool/RoundRobinClientPool.php',
'Http\\Client\\Common\\HttpClientRouter' => $vendorDir . '/php-http/client-common/src/HttpClientRouter.php',
'Http\\Client\\Common\\HttpClientRouterInterface' => $vendorDir . '/php-http/client-common/src/HttpClientRouterInterface.php',
'Http\\Client\\Common\\HttpMethodsClient' => $vendorDir . '/php-http/client-common/src/HttpMethodsClient.php',
'Http\\Client\\Common\\HttpMethodsClientInterface' => $vendorDir . '/php-http/client-common/src/HttpMethodsClientInterface.php',
'Http\\Client\\Common\\Plugin' => $vendorDir . '/php-http/client-common/src/Plugin.php',
'Http\\Client\\Common\\PluginChain' => $vendorDir . '/php-http/client-common/src/PluginChain.php',
'Http\\Client\\Common\\PluginClient' => $vendorDir . '/php-http/client-common/src/PluginClient.php',
'Http\\Client\\Common\\PluginClientBuilder' => $vendorDir . '/php-http/client-common/src/PluginClientBuilder.php',
'Http\\Client\\Common\\PluginClientFactory' => $vendorDir . '/php-http/client-common/src/PluginClientFactory.php',
'Http\\Client\\Common\\Plugin\\AddHostPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/AddHostPlugin.php',
'Http\\Client\\Common\\Plugin\\AddPathPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/AddPathPlugin.php',
'Http\\Client\\Common\\Plugin\\AuthenticationPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/AuthenticationPlugin.php',
'Http\\Client\\Common\\Plugin\\BaseUriPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/BaseUriPlugin.php',
'Http\\Client\\Common\\Plugin\\ContentLengthPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/ContentLengthPlugin.php',
'Http\\Client\\Common\\Plugin\\ContentTypePlugin' => $vendorDir . '/php-http/client-common/src/Plugin/ContentTypePlugin.php',
'Http\\Client\\Common\\Plugin\\CookiePlugin' => $vendorDir . '/php-http/client-common/src/Plugin/CookiePlugin.php',
'Http\\Client\\Common\\Plugin\\DecoderPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/DecoderPlugin.php',
'Http\\Client\\Common\\Plugin\\ErrorPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/ErrorPlugin.php',
'Http\\Client\\Common\\Plugin\\HeaderAppendPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/HeaderAppendPlugin.php',
'Http\\Client\\Common\\Plugin\\HeaderDefaultsPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/HeaderDefaultsPlugin.php',
'Http\\Client\\Common\\Plugin\\HeaderRemovePlugin' => $vendorDir . '/php-http/client-common/src/Plugin/HeaderRemovePlugin.php',
'Http\\Client\\Common\\Plugin\\HeaderSetPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/HeaderSetPlugin.php',
'Http\\Client\\Common\\Plugin\\HistoryPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/HistoryPlugin.php',
'Http\\Client\\Common\\Plugin\\Journal' => $vendorDir . '/php-http/client-common/src/Plugin/Journal.php',
'Http\\Client\\Common\\Plugin\\QueryDefaultsPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/QueryDefaultsPlugin.php',
'Http\\Client\\Common\\Plugin\\RedirectPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/RedirectPlugin.php',
'Http\\Client\\Common\\Plugin\\RequestMatcherPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/RequestMatcherPlugin.php',
'Http\\Client\\Common\\Plugin\\RequestSeekableBodyPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/RequestSeekableBodyPlugin.php',
'Http\\Client\\Common\\Plugin\\ResponseSeekableBodyPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/ResponseSeekableBodyPlugin.php',
'Http\\Client\\Common\\Plugin\\RetryPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/RetryPlugin.php',
'Http\\Client\\Common\\Plugin\\SeekableBodyPlugin' => $vendorDir . '/php-http/client-common/src/Plugin/SeekableBodyPlugin.php',
'Http\\Client\\Common\\Plugin\\VersionBridgePlugin' => $vendorDir . '/php-http/client-common/src/Plugin/VersionBridgePlugin.php',
'Http\\Client\\Common\\VersionBridgeClient' => $vendorDir . '/php-http/client-common/src/VersionBridgeClient.php',
'Http\\Client\\Exception' => $vendorDir . '/php-http/httplug/src/Exception.php',
'Http\\Client\\Exception\\HttpException' => $vendorDir . '/php-http/httplug/src/Exception/HttpException.php',
'Http\\Client\\Exception\\NetworkException' => $vendorDir . '/php-http/httplug/src/Exception/NetworkException.php',
'Http\\Client\\Exception\\RequestAwareTrait' => $vendorDir . '/php-http/httplug/src/Exception/RequestAwareTrait.php',
'Http\\Client\\Exception\\RequestException' => $vendorDir . '/php-http/httplug/src/Exception/RequestException.php',
'Http\\Client\\Exception\\TransferException' => $vendorDir . '/php-http/httplug/src/Exception/TransferException.php',
'Http\\Client\\HttpAsyncClient' => $vendorDir . '/php-http/httplug/src/HttpAsyncClient.php',
'Http\\Client\\HttpClient' => $vendorDir . '/php-http/httplug/src/HttpClient.php',
'Http\\Client\\Promise\\HttpFulfilledPromise' => $vendorDir . '/php-http/httplug/src/Promise/HttpFulfilledPromise.php',
'Http\\Client\\Promise\\HttpRejectedPromise' => $vendorDir . '/php-http/httplug/src/Promise/HttpRejectedPromise.php',
'Http\\Discovery\\ClassDiscovery' => $vendorDir . '/php-http/discovery/src/ClassDiscovery.php',
'Http\\Discovery\\Exception' => $vendorDir . '/php-http/discovery/src/Exception.php',
'Http\\Discovery\\Exception\\ClassInstantiationFailedException' => $vendorDir . '/php-http/discovery/src/Exception/ClassInstantiationFailedException.php',
'Http\\Discovery\\Exception\\DiscoveryFailedException' => $vendorDir . '/php-http/discovery/src/Exception/DiscoveryFailedException.php',
'Http\\Discovery\\Exception\\NoCandidateFoundException' => $vendorDir . '/php-http/discovery/src/Exception/NoCandidateFoundException.php',
'Http\\Discovery\\Exception\\NotFoundException' => $vendorDir . '/php-http/discovery/src/Exception/NotFoundException.php',
'Http\\Discovery\\Exception\\PuliUnavailableException' => $vendorDir . '/php-http/discovery/src/Exception/PuliUnavailableException.php',
'Http\\Discovery\\Exception\\StrategyUnavailableException' => $vendorDir . '/php-http/discovery/src/Exception/StrategyUnavailableException.php',
'Http\\Discovery\\HttpAsyncClientDiscovery' => $vendorDir . '/php-http/discovery/src/HttpAsyncClientDiscovery.php',
'Http\\Discovery\\HttpClientDiscovery' => $vendorDir . '/php-http/discovery/src/HttpClientDiscovery.php',
'Http\\Discovery\\MessageFactoryDiscovery' => $vendorDir . '/php-http/discovery/src/MessageFactoryDiscovery.php',
'Http\\Discovery\\NotFoundException' => $vendorDir . '/php-http/discovery/src/NotFoundException.php',
'Http\\Discovery\\Psr17FactoryDiscovery' => $vendorDir . '/php-http/discovery/src/Psr17FactoryDiscovery.php',
'Http\\Discovery\\Psr18ClientDiscovery' => $vendorDir . '/php-http/discovery/src/Psr18ClientDiscovery.php',
'Http\\Discovery\\Strategy\\CommonClassesStrategy' => $vendorDir . '/php-http/discovery/src/Strategy/CommonClassesStrategy.php',
'Http\\Discovery\\Strategy\\CommonPsr17ClassesStrategy' => $vendorDir . '/php-http/discovery/src/Strategy/CommonPsr17ClassesStrategy.php',
'Http\\Discovery\\Strategy\\DiscoveryStrategy' => $vendorDir . '/php-http/discovery/src/Strategy/DiscoveryStrategy.php',
'Http\\Discovery\\Strategy\\MockClientStrategy' => $vendorDir . '/php-http/discovery/src/Strategy/MockClientStrategy.php',
'Http\\Discovery\\Strategy\\PuliBetaStrategy' => $vendorDir . '/php-http/discovery/src/Strategy/PuliBetaStrategy.php',
'Http\\Discovery\\StreamFactoryDiscovery' => $vendorDir . '/php-http/discovery/src/StreamFactoryDiscovery.php',
'Http\\Discovery\\UriFactoryDiscovery' => $vendorDir . '/php-http/discovery/src/UriFactoryDiscovery.php',
'Http\\Factory\\Guzzle\\RequestFactory' => $vendorDir . '/http-interop/http-factory-guzzle/src/RequestFactory.php',
'Http\\Factory\\Guzzle\\ResponseFactory' => $vendorDir . '/http-interop/http-factory-guzzle/src/ResponseFactory.php',
'Http\\Factory\\Guzzle\\ServerRequestFactory' => $vendorDir . '/http-interop/http-factory-guzzle/src/ServerRequestFactory.php',
'Http\\Factory\\Guzzle\\StreamFactory' => $vendorDir . '/http-interop/http-factory-guzzle/src/StreamFactory.php',
'Http\\Factory\\Guzzle\\UploadedFileFactory' => $vendorDir . '/http-interop/http-factory-guzzle/src/UploadedFileFactory.php',
'Http\\Factory\\Guzzle\\UriFactory' => $vendorDir . '/http-interop/http-factory-guzzle/src/UriFactory.php',
'Http\\Message\\Authentication' => $vendorDir . '/php-http/message/src/Authentication.php',
'Http\\Message\\Authentication\\AutoBasicAuth' => $vendorDir . '/php-http/message/src/Authentication/AutoBasicAuth.php',
'Http\\Message\\Authentication\\BasicAuth' => $vendorDir . '/php-http/message/src/Authentication/BasicAuth.php',
'Http\\Message\\Authentication\\Bearer' => $vendorDir . '/php-http/message/src/Authentication/Bearer.php',
'Http\\Message\\Authentication\\Chain' => $vendorDir . '/php-http/message/src/Authentication/Chain.php',
'Http\\Message\\Authentication\\Header' => $vendorDir . '/php-http/message/src/Authentication/Header.php',
'Http\\Message\\Authentication\\Matching' => $vendorDir . '/php-http/message/src/Authentication/Matching.php',
'Http\\Message\\Authentication\\QueryParam' => $vendorDir . '/php-http/message/src/Authentication/QueryParam.php',
'Http\\Message\\Authentication\\RequestConditional' => $vendorDir . '/php-http/message/src/Authentication/RequestConditional.php',
'Http\\Message\\Authentication\\Wsse' => $vendorDir . '/php-http/message/src/Authentication/Wsse.php',
'Http\\Message\\Builder\\ResponseBuilder' => $vendorDir . '/php-http/message/src/Builder/ResponseBuilder.php',
'Http\\Message\\Cookie' => $vendorDir . '/php-http/message/src/Cookie.php',
'Http\\Message\\CookieJar' => $vendorDir . '/php-http/message/src/CookieJar.php',
'Http\\Message\\CookieUtil' => $vendorDir . '/php-http/message/src/CookieUtil.php',
'Http\\Message\\Decorator\\MessageDecorator' => $vendorDir . '/php-http/message/src/Decorator/MessageDecorator.php',
'Http\\Message\\Decorator\\RequestDecorator' => $vendorDir . '/php-http/message/src/Decorator/RequestDecorator.php',
'Http\\Message\\Decorator\\ResponseDecorator' => $vendorDir . '/php-http/message/src/Decorator/ResponseDecorator.php',
'Http\\Message\\Decorator\\StreamDecorator' => $vendorDir . '/php-http/message/src/Decorator/StreamDecorator.php',
'Http\\Message\\Encoding\\ChunkStream' => $vendorDir . '/php-http/message/src/Encoding/ChunkStream.php',
'Http\\Message\\Encoding\\CompressStream' => $vendorDir . '/php-http/message/src/Encoding/CompressStream.php',
'Http\\Message\\Encoding\\DechunkStream' => $vendorDir . '/php-http/message/src/Encoding/DechunkStream.php',
'Http\\Message\\Encoding\\DecompressStream' => $vendorDir . '/php-http/message/src/Encoding/DecompressStream.php',
'Http\\Message\\Encoding\\DeflateStream' => $vendorDir . '/php-http/message/src/Encoding/DeflateStream.php',
'Http\\Message\\Encoding\\Filter\\Chunk' => $vendorDir . '/php-http/message/src/Encoding/Filter/Chunk.php',
'Http\\Message\\Encoding\\FilteredStream' => $vendorDir . '/php-http/message/src/Encoding/FilteredStream.php',
'Http\\Message\\Encoding\\GzipDecodeStream' => $vendorDir . '/php-http/message/src/Encoding/GzipDecodeStream.php',
'Http\\Message\\Encoding\\GzipEncodeStream' => $vendorDir . '/php-http/message/src/Encoding/GzipEncodeStream.php',
'Http\\Message\\Encoding\\InflateStream' => $vendorDir . '/php-http/message/src/Encoding/InflateStream.php',
'Http\\Message\\Exception' => $vendorDir . '/php-http/message/src/Exception.php',
'Http\\Message\\Exception\\UnexpectedValueException' => $vendorDir . '/php-http/message/src/Exception/UnexpectedValueException.php',
'Http\\Message\\Formatter' => $vendorDir . '/php-http/message/src/Formatter.php',
'Http\\Message\\Formatter\\CurlCommandFormatter' => $vendorDir . '/php-http/message/src/Formatter/CurlCommandFormatter.php',
'Http\\Message\\Formatter\\FullHttpMessageFormatter' => $vendorDir . '/php-http/message/src/Formatter/FullHttpMessageFormatter.php',
'Http\\Message\\Formatter\\SimpleFormatter' => $vendorDir . '/php-http/message/src/Formatter/SimpleFormatter.php',
'Http\\Message\\MessageFactory' => $vendorDir . '/php-http/message-factory/src/MessageFactory.php',
'Http\\Message\\MessageFactory\\DiactorosMessageFactory' => $vendorDir . '/php-http/message/src/MessageFactory/DiactorosMessageFactory.php',
'Http\\Message\\MessageFactory\\GuzzleMessageFactory' => $vendorDir . '/php-http/message/src/MessageFactory/GuzzleMessageFactory.php',
'Http\\Message\\MessageFactory\\SlimMessageFactory' => $vendorDir . '/php-http/message/src/MessageFactory/SlimMessageFactory.php',
'Http\\Message\\RequestFactory' => $vendorDir . '/php-http/message-factory/src/RequestFactory.php',
'Http\\Message\\RequestMatcher' => $vendorDir . '/php-http/message/src/RequestMatcher.php',
'Http\\Message\\RequestMatcher\\CallbackRequestMatcher' => $vendorDir . '/php-http/message/src/RequestMatcher/CallbackRequestMatcher.php',
'Http\\Message\\RequestMatcher\\RegexRequestMatcher' => $vendorDir . '/php-http/message/src/RequestMatcher/RegexRequestMatcher.php',
'Http\\Message\\RequestMatcher\\RequestMatcher' => $vendorDir . '/php-http/message/src/RequestMatcher/RequestMatcher.php',
'Http\\Message\\ResponseFactory' => $vendorDir . '/php-http/message-factory/src/ResponseFactory.php',
'Http\\Message\\StreamFactory' => $vendorDir . '/php-http/message-factory/src/StreamFactory.php',
'Http\\Message\\StreamFactory\\DiactorosStreamFactory' => $vendorDir . '/php-http/message/src/StreamFactory/DiactorosStreamFactory.php',
'Http\\Message\\StreamFactory\\GuzzleStreamFactory' => $vendorDir . '/php-http/message/src/StreamFactory/GuzzleStreamFactory.php',
'Http\\Message\\StreamFactory\\SlimStreamFactory' => $vendorDir . '/php-http/message/src/StreamFactory/SlimStreamFactory.php',
'Http\\Message\\Stream\\BufferedStream' => $vendorDir . '/php-http/message/src/Stream/BufferedStream.php',
'Http\\Message\\UriFactory' => $vendorDir . '/php-http/message-factory/src/UriFactory.php',
'Http\\Message\\UriFactory\\DiactorosUriFactory' => $vendorDir . '/php-http/message/src/UriFactory/DiactorosUriFactory.php',
'Http\\Message\\UriFactory\\GuzzleUriFactory' => $vendorDir . '/php-http/message/src/UriFactory/GuzzleUriFactory.php',
'Http\\Message\\UriFactory\\SlimUriFactory' => $vendorDir . '/php-http/message/src/UriFactory/SlimUriFactory.php',
'Http\\Promise\\FulfilledPromise' => $vendorDir . '/php-http/promise/src/FulfilledPromise.php',
'Http\\Promise\\Promise' => $vendorDir . '/php-http/promise/src/Promise.php',
'Http\\Promise\\RejectedPromise' => $vendorDir . '/php-http/promise/src/RejectedPromise.php',
'Jean85\\Exception\\ProvidedPackageException' => $vendorDir . '/jean85/pretty-package-versions/src/Exception/ProvidedPackageException.php',
'Jean85\\Exception\\ReplacedPackageException' => $vendorDir . '/jean85/pretty-package-versions/src/Exception/ReplacedPackageException.php',
'Jean85\\Exception\\VersionMissingExceptionInterface' => $vendorDir . '/jean85/pretty-package-versions/src/Exception/VersionMissingExceptionInterface.php',
'Jean85\\PrettyVersions' => $vendorDir . '/jean85/pretty-package-versions/src/PrettyVersions.php',
'Jean85\\Version' => $vendorDir . '/jean85/pretty-package-versions/src/Version.php',
'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
'PrestaShop\\Module\\Mbo\\Accounts\\Provider\\AccountsDataProvider' => $baseDir . '/src/Accounts/Provider/AccountsDataProvider.php',
'PrestaShop\\Module\\Mbo\\Addons\\ApiClient' => $baseDir . '/src/Addons/ApiClient.php',
'PrestaShop\\Module\\Mbo\\Addons\\Exception\\ClientRequestException' => $baseDir . '/src/Addons/Exception/ClientRequestException.php',
'PrestaShop\\Module\\Mbo\\Addons\\Exception\\DownloadModuleException' => $baseDir . '/src/Addons/Exception/DownloadModuleException.php',
'PrestaShop\\Module\\Mbo\\Addons\\Provider\\AddonsDataProvider' => $baseDir . '/src/Addons/Provider/AddonsDataProvider.php',
'PrestaShop\\Module\\Mbo\\Addons\\Provider\\DataProviderInterface' => $baseDir . '/src/Addons/Provider/DataProviderInterface.php',
'PrestaShop\\Module\\Mbo\\Addons\\Provider\\LinksProvider' => $baseDir . '/src/Addons/Provider/LinksProvider.php',
'PrestaShop\\Module\\Mbo\\Addons\\Subscriber\\ModuleManagementEventSubscriber' => $baseDir . '/src/Addons/Subscriber/ModuleManagementEventSubscriber.php',
'PrestaShop\\Module\\Mbo\\Addons\\Toolbar' => $baseDir . '/src/Addons/Toolbar.php',
'PrestaShop\\Module\\Mbo\\Addons\\User\\AddonsUser' => $baseDir . '/src/Addons/User/AddonsUser.php',
'PrestaShop\\Module\\Mbo\\Addons\\User\\AddonsUserProvider' => $baseDir . '/src/Addons/User/AddonsUserProvider.php',
'PrestaShop\\Module\\Mbo\\Addons\\User\\UserInterface' => $baseDir . '/src/Addons/User/UserInterface.php',
'PrestaShop\\Module\\Mbo\\Api\\Config\\Config' => $baseDir . '/src/Api/Config/Config.php',
'PrestaShop\\Module\\Mbo\\Api\\Config\\Env' => $baseDir . '/src/Api/Config/Env.php',
'PrestaShop\\Module\\Mbo\\Api\\Controller\\AbstractAdminApiController' => $baseDir . '/src/Api/Controller/AbstractAdminApiController.php',
'PrestaShop\\Module\\Mbo\\Api\\Exception\\IncompleteSignatureParamsException' => $baseDir . '/src/Api/Exception/IncompleteSignatureParamsException.php',
'PrestaShop\\Module\\Mbo\\Api\\Exception\\QueryParamsException' => $baseDir . '/src/Api/Exception/QueryParamsException.php',
'PrestaShop\\Module\\Mbo\\Api\\Exception\\RetrieveNewKeyException' => $baseDir . '/src/Api/Exception/RetrieveNewKeyException.php',
'PrestaShop\\Module\\Mbo\\Api\\Exception\\UnauthorizedException' => $baseDir . '/src/Api/Exception/UnauthorizedException.php',
'PrestaShop\\Module\\Mbo\\Api\\Exception\\UnknownServiceException' => $baseDir . '/src/Api/Exception/UnknownServiceException.php',
'PrestaShop\\Module\\Mbo\\Api\\Repository\\ModuleRepository' => $baseDir . '/src/Api/Repository/ModuleRepository.php',
'PrestaShop\\Module\\Mbo\\Api\\Security\\AdminAuthenticationProvider' => $baseDir . '/src/Api/Security/AdminAuthenticationProvider.php',
'PrestaShop\\Module\\Mbo\\Api\\Security\\AuthorizationChecker' => $baseDir . '/src/Api/Security/AuthorizationChecker.php',
'PrestaShop\\Module\\Mbo\\Api\\Service\\ConfigApplyExecutor' => $baseDir . '/src/Api/Service/ConfigApplyExecutor.php',
'PrestaShop\\Module\\Mbo\\Api\\Service\\Factory' => $baseDir . '/src/Api/Service/Factory.php',
'PrestaShop\\Module\\Mbo\\Api\\Service\\ModuleTransitionExecutor' => $baseDir . '/src/Api/Service/ModuleTransitionExecutor.php',
'PrestaShop\\Module\\Mbo\\Api\\Service\\ServiceExecutorInterface' => $baseDir . '/src/Api/Service/ServiceExecutorInterface.php',
'PrestaShop\\Module\\Mbo\\Controller\\Admin\\AddonsController' => $baseDir . '/src/Controller/Admin/AddonsController.php',
'PrestaShop\\Module\\Mbo\\Controller\\Admin\\ModuleCatalogController' => $baseDir . '/src/Controller/Admin/ModuleCatalogController.php',
'PrestaShop\\Module\\Mbo\\Controller\\Admin\\ModuleRecommendedController' => $baseDir . '/src/Controller/Admin/ModuleRecommendedController.php',
'PrestaShop\\Module\\Mbo\\Controller\\Admin\\ThemeCatalogController' => $baseDir . '/src/Controller/Admin/ThemeCatalogController.php',
'PrestaShop\\Module\\Mbo\\DependencyInjection\\CacheDirectoryProvider' => $baseDir . '/src/DependencyInjection/CacheDirectoryProvider.php',
'PrestaShop\\Module\\Mbo\\DependencyInjection\\ContainerProvider' => $baseDir . '/src/DependencyInjection/ContainerProvider.php',
'PrestaShop\\Module\\Mbo\\DependencyInjection\\ServiceContainer' => $baseDir . '/src/DependencyInjection/ServiceContainer.php',
'PrestaShop\\Module\\Mbo\\Distribution\\BaseClient' => $baseDir . '/src/Distribution/BaseClient.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Client' => $baseDir . '/src/Distribution/Client.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Applier' => $baseDir . '/src/Distribution/Config/Applier.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Appliers\\ConfigApplierInterface' => $baseDir . '/src/Distribution/Config/Appliers/ConfigApplierInterface.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Appliers\\Factory' => $baseDir . '/src/Distribution/Config/Appliers/Factory.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Appliers\\ModuleSelectionMenuConfigApplier' => $baseDir . '/src/Distribution/Config/Appliers/ModuleSelectionMenuConfigApplier.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Appliers\\ThemeCatalogMenuConfigApplier' => $baseDir . '/src/Distribution/Config/Appliers/ThemeCatalogMenuConfigApplier.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\CommandHandler\\ConfigChangeCommandHandler' => $baseDir . '/src/Distribution/Config/CommandHandler/ConfigChangeCommandHandler.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\CommandHandler\\VersionChangeApplyConfigCommandHandler' => $baseDir . '/src/Distribution/Config/CommandHandler/VersionChangeApplyConfigCommandHandler.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Command\\ConfigChangeCommand' => $baseDir . '/src/Distribution/Config/Command/ConfigChangeCommand.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Command\\VersionChangeApplyConfigCommand' => $baseDir . '/src/Distribution/Config/Command/VersionChangeApplyConfigCommand.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Config' => $baseDir . '/src/Distribution/Config/Config.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Exception\\CannotApplyConfigException' => $baseDir . '/src/Distribution/Config/Exception/CannotApplyConfigException.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Exception\\CannotSaveConfigException' => $baseDir . '/src/Distribution/Config/Exception/CannotSaveConfigException.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Exception\\InvalidConfigException' => $baseDir . '/src/Distribution/Config/Exception/InvalidConfigException.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Factory' => $baseDir . '/src/Distribution/Config/Factory.php',
'PrestaShop\\Module\\Mbo\\Distribution\\ConnectedClient' => $baseDir . '/src/Distribution/ConnectedClient.php',
'PrestaShop\\Module\\Mbo\\Exception\\AddonsDownloadModuleException' => $baseDir . '/src/Exception/AddonsDownloadModuleException.php',
'PrestaShop\\Module\\Mbo\\Exception\\ClientRequestException' => $baseDir . '/src/Exception/ClientRequestException.php',
'PrestaShop\\Module\\Mbo\\Exception\\DownloadModuleException' => $baseDir . '/src/Exception/DownloadModuleException.php',
'PrestaShop\\Module\\Mbo\\Exception\\ExpectedServiceNotFoundException' => $baseDir . '/src/Exception/ExpectedServiceNotFoundException.php',
'PrestaShop\\Module\\Mbo\\Exception\\FileOperationException' => $baseDir . '/src/Exception/FileOperationException.php',
'PrestaShop\\Module\\Mbo\\Handler\\ErrorHandler\\ErrorHandler' => $baseDir . '/src/Handler/ErrorHandler/ErrorHandler.php',
'PrestaShop\\Module\\Mbo\\Handler\\ErrorHandler\\ErrorHandlerInterface' => $baseDir . '/src/Handler/ErrorHandler/ErrorHandlerInterface.php',
'PrestaShop\\Module\\Mbo\\Helpers\\AddonsApiHelper' => $baseDir . '/src/Helpers/AddonsApiHelper.php',
'PrestaShop\\Module\\Mbo\\Helpers\\Config' => $baseDir . '/src/Helpers/Config.php',
'PrestaShop\\Module\\Mbo\\Helpers\\EnvHelper' => $baseDir . '/src/Helpers/EnvHelper.php',
'PrestaShop\\Module\\Mbo\\Helpers\\ErrorHelper' => $baseDir . '/src/Helpers/ErrorHelper.php',
'PrestaShop\\Module\\Mbo\\Helpers\\ModuleErrorHelper' => $baseDir . '/src/Helpers/ModuleErrorHelper.php',
'PrestaShop\\Module\\Mbo\\Helpers\\UrlHelper' => $baseDir . '/src/Helpers/UrlHelper.php',
'PrestaShop\\Module\\Mbo\\Helpers\\Uuid' => $baseDir . '/src/Helpers/Uuid.php',
'PrestaShop\\Module\\Mbo\\Helpers\\Version' => $baseDir . '/src/Helpers/Version.php',
'PrestaShop\\Module\\Mbo\\Module\\ActionsManager' => $baseDir . '/src/Module/ActionsManager.php',
'PrestaShop\\Module\\Mbo\\Module\\Collection' => $baseDir . '/src/Module/Collection.php',
'PrestaShop\\Module\\Mbo\\Module\\CollectionFactory' => $baseDir . '/src/Module/CollectionFactory.php',
'PrestaShop\\Module\\Mbo\\Module\\CommandHandler\\ModuleStatusTransitionCommandHandler' => $baseDir . '/src/Module/CommandHandler/ModuleStatusTransitionCommandHandler.php',
'PrestaShop\\Module\\Mbo\\Module\\Command\\ModuleStatusTransitionCommand' => $baseDir . '/src/Module/Command/ModuleStatusTransitionCommand.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\ModuleNewVersionNotFoundException' => $baseDir . '/src/Module/Exception/ModuleNewVersionNotFoundException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\ModuleNotFoundException' => $baseDir . '/src/Module/Exception/ModuleNotFoundException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\ModuleUpgradeFailedException' => $baseDir . '/src/Module/Exception/ModuleUpgradeFailedException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\ModuleUpgradeNotNeededException' => $baseDir . '/src/Module/Exception/ModuleUpgradeNotNeededException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\SourceNotCheckedException' => $baseDir . '/src/Module/Exception/SourceNotCheckedException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\TransitionCommandToModuleStatusException' => $baseDir . '/src/Module/Exception/TransitionCommandToModuleStatusException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\TransitionFailedException' => $baseDir . '/src/Module/Exception/TransitionFailedException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\UnauthorizedModuleTransitionException' => $baseDir . '/src/Module/Exception/UnauthorizedModuleTransitionException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\UnexpectedModuleSourceContentException' => $baseDir . '/src/Module/Exception/UnexpectedModuleSourceContentException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\UnknownModuleTransitionCommandException' => $baseDir . '/src/Module/Exception/UnknownModuleTransitionCommandException.php',
'PrestaShop\\Module\\Mbo\\Module\\FilesManager' => $baseDir . '/src/Module/FilesManager.php',
'PrestaShop\\Module\\Mbo\\Module\\Filters' => $baseDir . '/src/Module/Filters.php',
'PrestaShop\\Module\\Mbo\\Module\\FiltersFactory' => $baseDir . '/src/Module/FiltersFactory.php',
'PrestaShop\\Module\\Mbo\\Module\\FiltersInterface' => $baseDir . '/src/Module/FiltersInterface.php',
'PrestaShop\\Module\\Mbo\\Module\\Filters\\Device' => $baseDir . '/src/Module/Filters/Device.php',
'PrestaShop\\Module\\Mbo\\Module\\Filters\\Status' => $baseDir . '/src/Module/Filters/Status.php',
'PrestaShop\\Module\\Mbo\\Module\\Filters\\Type' => $baseDir . '/src/Module/Filters/Type.php',
'PrestaShop\\Module\\Mbo\\Module\\Module' => $baseDir . '/src/Module/Module.php',
'PrestaShop\\Module\\Mbo\\Module\\ModuleBuilder' => $baseDir . '/src/Module/ModuleBuilder.php',
'PrestaShop\\Module\\Mbo\\Module\\ModuleBuilderInterface' => $baseDir . '/src/Module/ModuleBuilderInterface.php',
'PrestaShop\\Module\\Mbo\\Module\\ModuleOverrideChecker' => $baseDir . '/src/Module/ModuleOverrideChecker.php',
'PrestaShop\\Module\\Mbo\\Module\\Repository' => $baseDir . '/src/Module/Repository.php',
'PrestaShop\\Module\\Mbo\\Module\\RepositoryInterface' => $baseDir . '/src/Module/RepositoryInterface.php',
'PrestaShop\\Module\\Mbo\\Module\\SourceHandler\\AddonsUrlSourceHandler' => $baseDir . '/src/Module/SourceHandler/AddonsUrlSourceHandler.php',
'PrestaShop\\Module\\Mbo\\Module\\SourceRetriever\\AddonsUrlSourceRetriever' => $baseDir . '/src/Module/SourceRetriever/AddonsUrlSourceRetriever.php',
'PrestaShop\\Module\\Mbo\\Module\\SourceRetriever\\SourceRetrieverInterface' => $baseDir . '/src/Module/SourceRetriever/SourceRetrieverInterface.php',
'PrestaShop\\Module\\Mbo\\Module\\TransitionModule' => $baseDir . '/src/Module/TransitionModule.php',
'PrestaShop\\Module\\Mbo\\Module\\ValueObject\\ModuleTransitionCommand' => $baseDir . '/src/Module/ValueObject/ModuleTransitionCommand.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\Exception\\NotAllowedTransitionException' => $baseDir . '/src/Module/Workflow/Exception/NotAllowedTransitionException.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\Exception\\UnknownStatusException' => $baseDir . '/src/Module/Workflow/Exception/UnknownStatusException.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\Exception\\UnknownTransitionException' => $baseDir . '/src/Module/Workflow/Exception/UnknownTransitionException.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\Transition' => $baseDir . '/src/Module/Workflow/Transition.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\TransitionApplier' => $baseDir . '/src/Module/Workflow/TransitionApplier.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\TransitionBuilder' => $baseDir . '/src/Module/Workflow/TransitionBuilder.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\TransitionInterface' => $baseDir . '/src/Module/Workflow/TransitionInterface.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\TransitionsManager' => $baseDir . '/src/Module/Workflow/TransitionsManager.php',
'PrestaShop\\Module\\Mbo\\Security\\PermissionChecker' => $baseDir . '/src/Security/PermissionChecker.php',
'PrestaShop\\Module\\Mbo\\Security\\PermissionCheckerInterface' => $baseDir . '/src/Security/PermissionCheckerInterface.php',
'PrestaShop\\Module\\Mbo\\Service\\ExternalContentProvider\\ExternalContentProvider' => $baseDir . '/src/Service/ExternalContentProvider/ExternalContentProvider.php',
'PrestaShop\\Module\\Mbo\\Service\\ExternalContentProvider\\ExternalContentProviderInterface' => $baseDir . '/src/Service/ExternalContentProvider/ExternalContentProviderInterface.php',
'PrestaShop\\Module\\Mbo\\Service\\HookExceptionHolder' => $baseDir . '/src/Service/HookExceptionHolder.php',
'PrestaShop\\Module\\Mbo\\Service\\ModulesHelper' => $baseDir . '/src/Service/ModulesHelper.php',
'PrestaShop\\Module\\Mbo\\Service\\View\\ContextBuilder' => $baseDir . '/src/Service/View/ContextBuilder.php',
'PrestaShop\\Module\\Mbo\\Service\\View\\InstalledModule' => $baseDir . '/src/Service/View/InstalledModule.php',
'PrestaShop\\Module\\Mbo\\Tests\\Helpers\\VersionTest' => $baseDir . '/tests/Helpers/VersionTest.php',
'PrestaShop\\Module\\Mbo\\Tests\\Module\\Filters\\FiltersTest' => $baseDir . '/tests/Module/Filters/FiltersTest.php',
'PrestaShop\\Module\\Mbo\\Tests\\Module\\TransitionModuleTest' => $baseDir . '/tests/Module/TransitionModuleTest.php',
'PrestaShop\\Module\\Mbo\\Tests\\Module\\Workflow\\AbstractTransitionTest' => $baseDir . '/tests/Module/Workflow/AbstractTransitionTest.php',
'PrestaShop\\Module\\Mbo\\Tests\\Module\\Workflow\\TransitionApplierTest' => $baseDir . '/tests/Module/Workflow/TransitionApplierTest.php',
'PrestaShop\\Module\\Mbo\\Tests\\Module\\Workflow\\TransitionBuilderTest' => $baseDir . '/tests/Module/Workflow/TransitionBuilderTest.php',
'PrestaShop\\Module\\Mbo\\Traits\\HaveCdcComponent' => $baseDir . '/src/Traits/HaveCdcComponent.php',
'PrestaShop\\Module\\Mbo\\Traits\\HaveConfigurationPage' => $baseDir . '/src/Traits/HaveConfigurationPage.php',
'PrestaShop\\Module\\Mbo\\Traits\\HaveTabs' => $baseDir . '/src/Traits/HaveTabs.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseActionBeforeInstallModule' => $baseDir . '/src/Traits/Hooks/UseActionBeforeInstallModule.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseActionBeforeUpgradeModule' => $baseDir . '/src/Traits/Hooks/UseActionBeforeUpgradeModule.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseActionGetAlternativeSearchPanels' => $baseDir . '/src/Traits/Hooks/UseActionGetAlternativeSearchPanels.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseActionListModules' => $baseDir . '/src/Traits/Hooks/UseActionListModules.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseDashboardZoneOne' => $baseDir . '/src/Traits/Hooks/UseDashboardZoneOne.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseDashboardZoneThree' => $baseDir . '/src/Traits/Hooks/UseDashboardZoneThree.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseDisplayAdminThemesListAfter' => $baseDir . '/src/Traits/Hooks/UseDisplayAdminThemesListAfter.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseDisplayDashboardTop' => $baseDir . '/src/Traits/Hooks/UseDisplayDashboardTop.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseDisplayEmptyModuleCategoryExtraMessage' => $baseDir . '/src/Traits/Hooks/UseDisplayEmptyModuleCategoryExtraMessage.php',
'PrestaShop\\Module\\Mbo\\Traits\\UseHooks' => $baseDir . '/src/Traits/UseHooks.php',
'PrestaShop\\PsAccountsInstaller\\Installer\\Exception\\InstallerException' => $vendorDir . '/prestashop/prestashop-accounts-installer/src/Installer/Exception/InstallerException.php',
'PrestaShop\\PsAccountsInstaller\\Installer\\Exception\\ModuleNotInstalledException' => $vendorDir . '/prestashop/prestashop-accounts-installer/src/Installer/Exception/ModuleNotInstalledException.php',
'PrestaShop\\PsAccountsInstaller\\Installer\\Exception\\ModuleVersionException' => $vendorDir . '/prestashop/prestashop-accounts-installer/src/Installer/Exception/ModuleVersionException.php',
'PrestaShop\\PsAccountsInstaller\\Installer\\Facade\\PsAccounts' => $vendorDir . '/prestashop/prestashop-accounts-installer/src/Installer/Facade/PsAccounts.php',
'PrestaShop\\PsAccountsInstaller\\Installer\\Installer' => $vendorDir . '/prestashop/prestashop-accounts-installer/src/Installer/Installer.php',
'PrestaShop\\PsAccountsInstaller\\Installer\\Presenter\\InstallerPresenter' => $vendorDir . '/prestashop/prestashop-accounts-installer/src/Installer/Presenter/InstallerPresenter.php',
'Psr\\Container\\ContainerExceptionInterface' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php',
'Psr\\Container\\ContainerInterface' => $vendorDir . '/psr/container/src/ContainerInterface.php',
'Psr\\Container\\NotFoundExceptionInterface' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php',
'Psr\\Http\\Client\\ClientExceptionInterface' => $vendorDir . '/psr/http-client/src/ClientExceptionInterface.php',
'Psr\\Http\\Client\\ClientInterface' => $vendorDir . '/psr/http-client/src/ClientInterface.php',
'Psr\\Http\\Client\\NetworkExceptionInterface' => $vendorDir . '/psr/http-client/src/NetworkExceptionInterface.php',
'Psr\\Http\\Client\\RequestExceptionInterface' => $vendorDir . '/psr/http-client/src/RequestExceptionInterface.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',
'Psr\\Log\\LoggerAwareInterface' => $vendorDir . '/psr/log/src/LoggerAwareInterface.php',
'Psr\\Log\\LoggerAwareTrait' => $vendorDir . '/psr/log/src/LoggerAwareTrait.php',
'Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/src/LoggerInterface.php',
'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/src/LoggerTrait.php',
'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/src/NullLogger.php',
'Sentry\\Breadcrumb' => $vendorDir . '/sentry/sentry/src/Breadcrumb.php',
'Sentry\\Client' => $vendorDir . '/sentry/sentry/src/Client.php',
'Sentry\\ClientBuilder' => $vendorDir . '/sentry/sentry/src/ClientBuilder.php',
'Sentry\\ClientBuilderInterface' => $vendorDir . '/sentry/sentry/src/ClientBuilderInterface.php',
'Sentry\\ClientInterface' => $vendorDir . '/sentry/sentry/src/ClientInterface.php',
'Sentry\\Context\\OsContext' => $vendorDir . '/sentry/sentry/src/Context/OsContext.php',
'Sentry\\Context\\RuntimeContext' => $vendorDir . '/sentry/sentry/src/Context/RuntimeContext.php',
'Sentry\\Dsn' => $vendorDir . '/sentry/sentry/src/Dsn.php',
'Sentry\\ErrorHandler' => $vendorDir . '/sentry/sentry/src/ErrorHandler.php',
'Sentry\\Event' => $vendorDir . '/sentry/sentry/src/Event.php',
'Sentry\\EventHint' => $vendorDir . '/sentry/sentry/src/EventHint.php',
'Sentry\\EventId' => $vendorDir . '/sentry/sentry/src/EventId.php',
'Sentry\\EventType' => $vendorDir . '/sentry/sentry/src/EventType.php',
'Sentry\\ExceptionDataBag' => $vendorDir . '/sentry/sentry/src/ExceptionDataBag.php',
'Sentry\\ExceptionMechanism' => $vendorDir . '/sentry/sentry/src/ExceptionMechanism.php',
'Sentry\\Exception\\EventCreationException' => $vendorDir . '/sentry/sentry/src/Exception/EventCreationException.php',
'Sentry\\Exception\\ExceptionInterface' => $vendorDir . '/sentry/sentry/src/Exception/ExceptionInterface.php',
'Sentry\\Exception\\FatalErrorException' => $vendorDir . '/sentry/sentry/src/Exception/FatalErrorException.php',
'Sentry\\Exception\\InvalidArgumentException' => $vendorDir . '/sentry/sentry/src/Exception/InvalidArgumentException.php',
'Sentry\\Exception\\JsonException' => $vendorDir . '/sentry/sentry/src/Exception/JsonException.php',
'Sentry\\Exception\\SilencedErrorException' => $vendorDir . '/sentry/sentry/src/Exception/SilencedErrorException.php',
'Sentry\\Frame' => $vendorDir . '/sentry/sentry/src/Frame.php',
'Sentry\\FrameBuilder' => $vendorDir . '/sentry/sentry/src/FrameBuilder.php',
'Sentry\\HttpClient\\Authentication\\SentryAuthentication' => $vendorDir . '/sentry/sentry/src/HttpClient/Authentication/SentryAuthentication.php',
'Sentry\\HttpClient\\HttpClientFactory' => $vendorDir . '/sentry/sentry/src/HttpClient/HttpClientFactory.php',
'Sentry\\HttpClient\\HttpClientFactoryInterface' => $vendorDir . '/sentry/sentry/src/HttpClient/HttpClientFactoryInterface.php',
'Sentry\\HttpClient\\Plugin\\GzipEncoderPlugin' => $vendorDir . '/sentry/sentry/src/HttpClient/Plugin/GzipEncoderPlugin.php',
'Sentry\\Integration\\AbstractErrorListenerIntegration' => $vendorDir . '/sentry/sentry/src/Integration/AbstractErrorListenerIntegration.php',
'Sentry\\Integration\\EnvironmentIntegration' => $vendorDir . '/sentry/sentry/src/Integration/EnvironmentIntegration.php',
'Sentry\\Integration\\ErrorListenerIntegration' => $vendorDir . '/sentry/sentry/src/Integration/ErrorListenerIntegration.php',
'Sentry\\Integration\\ExceptionListenerIntegration' => $vendorDir . '/sentry/sentry/src/Integration/ExceptionListenerIntegration.php',
'Sentry\\Integration\\FatalErrorListenerIntegration' => $vendorDir . '/sentry/sentry/src/Integration/FatalErrorListenerIntegration.php',
'Sentry\\Integration\\FrameContextifierIntegration' => $vendorDir . '/sentry/sentry/src/Integration/FrameContextifierIntegration.php',
'Sentry\\Integration\\IgnoreErrorsIntegration' => $vendorDir . '/sentry/sentry/src/Integration/IgnoreErrorsIntegration.php',
'Sentry\\Integration\\IntegrationInterface' => $vendorDir . '/sentry/sentry/src/Integration/IntegrationInterface.php',
'Sentry\\Integration\\IntegrationRegistry' => $vendorDir . '/sentry/sentry/src/Integration/IntegrationRegistry.php',
'Sentry\\Integration\\ModulesIntegration' => $vendorDir . '/sentry/sentry/src/Integration/ModulesIntegration.php',
'Sentry\\Integration\\RequestFetcher' => $vendorDir . '/sentry/sentry/src/Integration/RequestFetcher.php',
'Sentry\\Integration\\RequestFetcherInterface' => $vendorDir . '/sentry/sentry/src/Integration/RequestFetcherInterface.php',
'Sentry\\Integration\\RequestIntegration' => $vendorDir . '/sentry/sentry/src/Integration/RequestIntegration.php',
'Sentry\\Integration\\TransactionIntegration' => $vendorDir . '/sentry/sentry/src/Integration/TransactionIntegration.php',
'Sentry\\Monolog\\BreadcrumbHandler' => $vendorDir . '/sentry/sentry/src/Monolog/BreadcrumbHandler.php',
'Sentry\\Monolog\\CompatibilityProcessingHandlerTrait' => $vendorDir . '/sentry/sentry/src/Monolog/CompatibilityProcessingHandlerTrait.php',
'Sentry\\Monolog\\Handler' => $vendorDir . '/sentry/sentry/src/Monolog/Handler.php',
'Sentry\\Options' => $vendorDir . '/sentry/sentry/src/Options.php',
'Sentry\\Response' => $vendorDir . '/sentry/sentry/src/Response.php',
'Sentry\\ResponseStatus' => $vendorDir . '/sentry/sentry/src/ResponseStatus.php',
'Sentry\\SentrySdk' => $vendorDir . '/sentry/sentry/src/SentrySdk.php',
'Sentry\\Serializer\\AbstractSerializer' => $vendorDir . '/sentry/sentry/src/Serializer/AbstractSerializer.php',
'Sentry\\Serializer\\PayloadSerializer' => $vendorDir . '/sentry/sentry/src/Serializer/PayloadSerializer.php',
'Sentry\\Serializer\\PayloadSerializerInterface' => $vendorDir . '/sentry/sentry/src/Serializer/PayloadSerializerInterface.php',
'Sentry\\Serializer\\RepresentationSerializer' => $vendorDir . '/sentry/sentry/src/Serializer/RepresentationSerializer.php',
'Sentry\\Serializer\\RepresentationSerializerInterface' => $vendorDir . '/sentry/sentry/src/Serializer/RepresentationSerializerInterface.php',
'Sentry\\Serializer\\SerializableInterface' => $vendorDir . '/sentry/sentry/src/Serializer/SerializableInterface.php',
'Sentry\\Serializer\\Serializer' => $vendorDir . '/sentry/sentry/src/Serializer/Serializer.php',
'Sentry\\Serializer\\SerializerInterface' => $vendorDir . '/sentry/sentry/src/Serializer/SerializerInterface.php',
'Sentry\\Severity' => $vendorDir . '/sentry/sentry/src/Severity.php',
'Sentry\\Stacktrace' => $vendorDir . '/sentry/sentry/src/Stacktrace.php',
'Sentry\\StacktraceBuilder' => $vendorDir . '/sentry/sentry/src/StacktraceBuilder.php',
'Sentry\\State\\Hub' => $vendorDir . '/sentry/sentry/src/State/Hub.php',
'Sentry\\State\\HubAdapter' => $vendorDir . '/sentry/sentry/src/State/HubAdapter.php',
'Sentry\\State\\HubInterface' => $vendorDir . '/sentry/sentry/src/State/HubInterface.php',
'Sentry\\State\\Layer' => $vendorDir . '/sentry/sentry/src/State/Layer.php',
'Sentry\\State\\Scope' => $vendorDir . '/sentry/sentry/src/State/Scope.php',
'Sentry\\Tracing\\DynamicSamplingContext' => $vendorDir . '/sentry/sentry/src/Tracing/DynamicSamplingContext.php',
'Sentry\\Tracing\\GuzzleTracingMiddleware' => $vendorDir . '/sentry/sentry/src/Tracing/GuzzleTracingMiddleware.php',
'Sentry\\Tracing\\SamplingContext' => $vendorDir . '/sentry/sentry/src/Tracing/SamplingContext.php',
'Sentry\\Tracing\\Span' => $vendorDir . '/sentry/sentry/src/Tracing/Span.php',
'Sentry\\Tracing\\SpanContext' => $vendorDir . '/sentry/sentry/src/Tracing/SpanContext.php',
'Sentry\\Tracing\\SpanId' => $vendorDir . '/sentry/sentry/src/Tracing/SpanId.php',
'Sentry\\Tracing\\SpanRecorder' => $vendorDir . '/sentry/sentry/src/Tracing/SpanRecorder.php',
'Sentry\\Tracing\\SpanStatus' => $vendorDir . '/sentry/sentry/src/Tracing/SpanStatus.php',
'Sentry\\Tracing\\TraceId' => $vendorDir . '/sentry/sentry/src/Tracing/TraceId.php',
'Sentry\\Tracing\\Transaction' => $vendorDir . '/sentry/sentry/src/Tracing/Transaction.php',
'Sentry\\Tracing\\TransactionContext' => $vendorDir . '/sentry/sentry/src/Tracing/TransactionContext.php',
'Sentry\\Tracing\\TransactionMetadata' => $vendorDir . '/sentry/sentry/src/Tracing/TransactionMetadata.php',
'Sentry\\Tracing\\TransactionSource' => $vendorDir . '/sentry/sentry/src/Tracing/TransactionSource.php',
'Sentry\\Transport\\DefaultTransportFactory' => $vendorDir . '/sentry/sentry/src/Transport/DefaultTransportFactory.php',
'Sentry\\Transport\\HttpTransport' => $vendorDir . '/sentry/sentry/src/Transport/HttpTransport.php',
'Sentry\\Transport\\NullTransport' => $vendorDir . '/sentry/sentry/src/Transport/NullTransport.php',
'Sentry\\Transport\\RateLimiter' => $vendorDir . '/sentry/sentry/src/Transport/RateLimiter.php',
'Sentry\\Transport\\TransportFactoryInterface' => $vendorDir . '/sentry/sentry/src/Transport/TransportFactoryInterface.php',
'Sentry\\Transport\\TransportInterface' => $vendorDir . '/sentry/sentry/src/Transport/TransportInterface.php',
'Sentry\\UserDataBag' => $vendorDir . '/sentry/sentry/src/UserDataBag.php',
'Sentry\\Util\\JSON' => $vendorDir . '/sentry/sentry/src/Util/JSON.php',
'Sentry\\Util\\PHPVersion' => $vendorDir . '/sentry/sentry/src/Util/PHPVersion.php',
'Sentry\\Util\\SentryUid' => $vendorDir . '/sentry/sentry/src/Util/SentryUid.php',
'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
'Symfony\\Component\\Dotenv\\Command\\DebugCommand' => $vendorDir . '/symfony/dotenv/Command/DebugCommand.php',
'Symfony\\Component\\Dotenv\\Command\\DotenvDumpCommand' => $vendorDir . '/symfony/dotenv/Command/DotenvDumpCommand.php',
'Symfony\\Component\\Dotenv\\Dotenv' => $vendorDir . '/symfony/dotenv/Dotenv.php',
'Symfony\\Component\\Dotenv\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/dotenv/Exception/ExceptionInterface.php',
'Symfony\\Component\\Dotenv\\Exception\\FormatException' => $vendorDir . '/symfony/dotenv/Exception/FormatException.php',
'Symfony\\Component\\Dotenv\\Exception\\FormatExceptionContext' => $vendorDir . '/symfony/dotenv/Exception/FormatExceptionContext.php',
'Symfony\\Component\\Dotenv\\Exception\\PathException' => $vendorDir . '/symfony/dotenv/Exception/PathException.php',
'Symfony\\Component\\HttpClient\\AmpHttpClient' => $vendorDir . '/symfony/http-client/AmpHttpClient.php',
'Symfony\\Component\\HttpClient\\AsyncDecoratorTrait' => $vendorDir . '/symfony/http-client/AsyncDecoratorTrait.php',
'Symfony\\Component\\HttpClient\\CachingHttpClient' => $vendorDir . '/symfony/http-client/CachingHttpClient.php',
'Symfony\\Component\\HttpClient\\Chunk\\DataChunk' => $vendorDir . '/symfony/http-client/Chunk/DataChunk.php',
'Symfony\\Component\\HttpClient\\Chunk\\ErrorChunk' => $vendorDir . '/symfony/http-client/Chunk/ErrorChunk.php',
'Symfony\\Component\\HttpClient\\Chunk\\FirstChunk' => $vendorDir . '/symfony/http-client/Chunk/FirstChunk.php',
'Symfony\\Component\\HttpClient\\Chunk\\InformationalChunk' => $vendorDir . '/symfony/http-client/Chunk/InformationalChunk.php',
'Symfony\\Component\\HttpClient\\Chunk\\LastChunk' => $vendorDir . '/symfony/http-client/Chunk/LastChunk.php',
'Symfony\\Component\\HttpClient\\Chunk\\ServerSentEvent' => $vendorDir . '/symfony/http-client/Chunk/ServerSentEvent.php',
'Symfony\\Component\\HttpClient\\CurlHttpClient' => $vendorDir . '/symfony/http-client/CurlHttpClient.php',
'Symfony\\Component\\HttpClient\\DataCollector\\HttpClientDataCollector' => $vendorDir . '/symfony/http-client/DataCollector/HttpClientDataCollector.php',
'Symfony\\Component\\HttpClient\\DecoratorTrait' => $vendorDir . '/symfony/http-client/DecoratorTrait.php',
'Symfony\\Component\\HttpClient\\DependencyInjection\\HttpClientPass' => $vendorDir . '/symfony/http-client/DependencyInjection/HttpClientPass.php',
'Symfony\\Component\\HttpClient\\EventSourceHttpClient' => $vendorDir . '/symfony/http-client/EventSourceHttpClient.php',
'Symfony\\Component\\HttpClient\\Exception\\ClientException' => $vendorDir . '/symfony/http-client/Exception/ClientException.php',
'Symfony\\Component\\HttpClient\\Exception\\EventSourceException' => $vendorDir . '/symfony/http-client/Exception/EventSourceException.php',
'Symfony\\Component\\HttpClient\\Exception\\HttpExceptionTrait' => $vendorDir . '/symfony/http-client/Exception/HttpExceptionTrait.php',
'Symfony\\Component\\HttpClient\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/http-client/Exception/InvalidArgumentException.php',
'Symfony\\Component\\HttpClient\\Exception\\JsonException' => $vendorDir . '/symfony/http-client/Exception/JsonException.php',
'Symfony\\Component\\HttpClient\\Exception\\RedirectionException' => $vendorDir . '/symfony/http-client/Exception/RedirectionException.php',
'Symfony\\Component\\HttpClient\\Exception\\ServerException' => $vendorDir . '/symfony/http-client/Exception/ServerException.php',
'Symfony\\Component\\HttpClient\\Exception\\TimeoutException' => $vendorDir . '/symfony/http-client/Exception/TimeoutException.php',
'Symfony\\Component\\HttpClient\\Exception\\TransportException' => $vendorDir . '/symfony/http-client/Exception/TransportException.php',
'Symfony\\Component\\HttpClient\\HttpClient' => $vendorDir . '/symfony/http-client/HttpClient.php',
'Symfony\\Component\\HttpClient\\HttpClientTrait' => $vendorDir . '/symfony/http-client/HttpClientTrait.php',
'Symfony\\Component\\HttpClient\\HttpOptions' => $vendorDir . '/symfony/http-client/HttpOptions.php',
'Symfony\\Component\\HttpClient\\HttplugClient' => $vendorDir . '/symfony/http-client/HttplugClient.php',
'Symfony\\Component\\HttpClient\\Internal\\AmpBody' => $vendorDir . '/symfony/http-client/Internal/AmpBody.php',
'Symfony\\Component\\HttpClient\\Internal\\AmpClientState' => $vendorDir . '/symfony/http-client/Internal/AmpClientState.php',
'Symfony\\Component\\HttpClient\\Internal\\AmpListener' => $vendorDir . '/symfony/http-client/Internal/AmpListener.php',
'Symfony\\Component\\HttpClient\\Internal\\AmpResolver' => $vendorDir . '/symfony/http-client/Internal/AmpResolver.php',
'Symfony\\Component\\HttpClient\\Internal\\Canary' => $vendorDir . '/symfony/http-client/Internal/Canary.php',
'Symfony\\Component\\HttpClient\\Internal\\ClientState' => $vendorDir . '/symfony/http-client/Internal/ClientState.php',
'Symfony\\Component\\HttpClient\\Internal\\CurlClientState' => $vendorDir . '/symfony/http-client/Internal/CurlClientState.php',
'Symfony\\Component\\HttpClient\\Internal\\DnsCache' => $vendorDir . '/symfony/http-client/Internal/DnsCache.php',
'Symfony\\Component\\HttpClient\\Internal\\HttplugWaitLoop' => $vendorDir . '/symfony/http-client/Internal/HttplugWaitLoop.php',
'Symfony\\Component\\HttpClient\\Internal\\NativeClientState' => $vendorDir . '/symfony/http-client/Internal/NativeClientState.php',
'Symfony\\Component\\HttpClient\\Internal\\PushedResponse' => $vendorDir . '/symfony/http-client/Internal/PushedResponse.php',
'Symfony\\Component\\HttpClient\\MockHttpClient' => $vendorDir . '/symfony/http-client/MockHttpClient.php',
'Symfony\\Component\\HttpClient\\NativeHttpClient' => $vendorDir . '/symfony/http-client/NativeHttpClient.php',
'Symfony\\Component\\HttpClient\\NoPrivateNetworkHttpClient' => $vendorDir . '/symfony/http-client/NoPrivateNetworkHttpClient.php',
'Symfony\\Component\\HttpClient\\Psr18Client' => $vendorDir . '/symfony/http-client/Psr18Client.php',
'Symfony\\Component\\HttpClient\\Response\\AmpResponse' => $vendorDir . '/symfony/http-client/Response/AmpResponse.php',
'Symfony\\Component\\HttpClient\\Response\\AsyncContext' => $vendorDir . '/symfony/http-client/Response/AsyncContext.php',
'Symfony\\Component\\HttpClient\\Response\\AsyncResponse' => $vendorDir . '/symfony/http-client/Response/AsyncResponse.php',
'Symfony\\Component\\HttpClient\\Response\\CommonResponseTrait' => $vendorDir . '/symfony/http-client/Response/CommonResponseTrait.php',
'Symfony\\Component\\HttpClient\\Response\\CurlResponse' => $vendorDir . '/symfony/http-client/Response/CurlResponse.php',
'Symfony\\Component\\HttpClient\\Response\\HttplugPromise' => $vendorDir . '/symfony/http-client/Response/HttplugPromise.php',
'Symfony\\Component\\HttpClient\\Response\\MockResponse' => $vendorDir . '/symfony/http-client/Response/MockResponse.php',
'Symfony\\Component\\HttpClient\\Response\\NativeResponse' => $vendorDir . '/symfony/http-client/Response/NativeResponse.php',
'Symfony\\Component\\HttpClient\\Response\\ResponseStream' => $vendorDir . '/symfony/http-client/Response/ResponseStream.php',
'Symfony\\Component\\HttpClient\\Response\\StreamWrapper' => $vendorDir . '/symfony/http-client/Response/StreamWrapper.php',
'Symfony\\Component\\HttpClient\\Response\\StreamableInterface' => $vendorDir . '/symfony/http-client/Response/StreamableInterface.php',
'Symfony\\Component\\HttpClient\\Response\\TraceableResponse' => $vendorDir . '/symfony/http-client/Response/TraceableResponse.php',
'Symfony\\Component\\HttpClient\\Response\\TransportResponseTrait' => $vendorDir . '/symfony/http-client/Response/TransportResponseTrait.php',
'Symfony\\Component\\HttpClient\\Retry\\GenericRetryStrategy' => $vendorDir . '/symfony/http-client/Retry/GenericRetryStrategy.php',
'Symfony\\Component\\HttpClient\\Retry\\RetryStrategyInterface' => $vendorDir . '/symfony/http-client/Retry/RetryStrategyInterface.php',
'Symfony\\Component\\HttpClient\\RetryableHttpClient' => $vendorDir . '/symfony/http-client/RetryableHttpClient.php',
'Symfony\\Component\\HttpClient\\ScopingHttpClient' => $vendorDir . '/symfony/http-client/ScopingHttpClient.php',
'Symfony\\Component\\HttpClient\\TraceableHttpClient' => $vendorDir . '/symfony/http-client/TraceableHttpClient.php',
'Symfony\\Component\\OptionsResolver\\Debug\\OptionsResolverIntrospector' => $vendorDir . '/symfony/options-resolver/Debug/OptionsResolverIntrospector.php',
'Symfony\\Component\\OptionsResolver\\Exception\\AccessException' => $vendorDir . '/symfony/options-resolver/Exception/AccessException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/options-resolver/Exception/ExceptionInterface.php',
'Symfony\\Component\\OptionsResolver\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/options-resolver/Exception/InvalidArgumentException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\InvalidOptionsException' => $vendorDir . '/symfony/options-resolver/Exception/InvalidOptionsException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\MissingOptionsException' => $vendorDir . '/symfony/options-resolver/Exception/MissingOptionsException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\NoConfigurationException' => $vendorDir . '/symfony/options-resolver/Exception/NoConfigurationException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\NoSuchOptionException' => $vendorDir . '/symfony/options-resolver/Exception/NoSuchOptionException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\OptionDefinitionException' => $vendorDir . '/symfony/options-resolver/Exception/OptionDefinitionException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\UndefinedOptionsException' => $vendorDir . '/symfony/options-resolver/Exception/UndefinedOptionsException.php',
'Symfony\\Component\\OptionsResolver\\OptionConfigurator' => $vendorDir . '/symfony/options-resolver/OptionConfigurator.php',
'Symfony\\Component\\OptionsResolver\\Options' => $vendorDir . '/symfony/options-resolver/Options.php',
'Symfony\\Component\\OptionsResolver\\OptionsResolver' => $vendorDir . '/symfony/options-resolver/OptionsResolver.php',
'Symfony\\Component\\String\\AbstractString' => $vendorDir . '/symfony/string/AbstractString.php',
'Symfony\\Component\\String\\AbstractUnicodeString' => $vendorDir . '/symfony/string/AbstractUnicodeString.php',
'Symfony\\Component\\String\\ByteString' => $vendorDir . '/symfony/string/ByteString.php',
'Symfony\\Component\\String\\CodePointString' => $vendorDir . '/symfony/string/CodePointString.php',
'Symfony\\Component\\String\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/string/Exception/ExceptionInterface.php',
'Symfony\\Component\\String\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/string/Exception/InvalidArgumentException.php',
'Symfony\\Component\\String\\Exception\\RuntimeException' => $vendorDir . '/symfony/string/Exception/RuntimeException.php',
'Symfony\\Component\\String\\Inflector\\EnglishInflector' => $vendorDir . '/symfony/string/Inflector/EnglishInflector.php',
'Symfony\\Component\\String\\Inflector\\FrenchInflector' => $vendorDir . '/symfony/string/Inflector/FrenchInflector.php',
'Symfony\\Component\\String\\Inflector\\InflectorInterface' => $vendorDir . '/symfony/string/Inflector/InflectorInterface.php',
'Symfony\\Component\\String\\LazyString' => $vendorDir . '/symfony/string/LazyString.php',
'Symfony\\Component\\String\\Slugger\\AsciiSlugger' => $vendorDir . '/symfony/string/Slugger/AsciiSlugger.php',
'Symfony\\Component\\String\\Slugger\\SluggerInterface' => $vendorDir . '/symfony/string/Slugger/SluggerInterface.php',
'Symfony\\Component\\String\\UnicodeString' => $vendorDir . '/symfony/string/UnicodeString.php',
'Symfony\\Component\\Workflow\\Attribute\\AsAnnounceListener' => $vendorDir . '/symfony/workflow/Attribute/AsAnnounceListener.php',
'Symfony\\Component\\Workflow\\Attribute\\AsCompletedListener' => $vendorDir . '/symfony/workflow/Attribute/AsCompletedListener.php',
'Symfony\\Component\\Workflow\\Attribute\\AsEnterListener' => $vendorDir . '/symfony/workflow/Attribute/AsEnterListener.php',
'Symfony\\Component\\Workflow\\Attribute\\AsEnteredListener' => $vendorDir . '/symfony/workflow/Attribute/AsEnteredListener.php',
'Symfony\\Component\\Workflow\\Attribute\\AsGuardListener' => $vendorDir . '/symfony/workflow/Attribute/AsGuardListener.php',
'Symfony\\Component\\Workflow\\Attribute\\AsLeaveListener' => $vendorDir . '/symfony/workflow/Attribute/AsLeaveListener.php',
'Symfony\\Component\\Workflow\\Attribute\\AsTransitionListener' => $vendorDir . '/symfony/workflow/Attribute/AsTransitionListener.php',
'Symfony\\Component\\Workflow\\Attribute\\BuildEventNameTrait' => $vendorDir . '/symfony/workflow/Attribute/BuildEventNameTrait.php',
'Symfony\\Component\\Workflow\\DataCollector\\WorkflowDataCollector' => $vendorDir . '/symfony/workflow/DataCollector/WorkflowDataCollector.php',
'Symfony\\Component\\Workflow\\Debug\\TraceableWorkflow' => $vendorDir . '/symfony/workflow/Debug/TraceableWorkflow.php',
'Symfony\\Component\\Workflow\\Definition' => $vendorDir . '/symfony/workflow/Definition.php',
'Symfony\\Component\\Workflow\\DefinitionBuilder' => $vendorDir . '/symfony/workflow/DefinitionBuilder.php',
'Symfony\\Component\\Workflow\\DependencyInjection\\WorkflowDebugPass' => $vendorDir . '/symfony/workflow/DependencyInjection/WorkflowDebugPass.php',
'Symfony\\Component\\Workflow\\DependencyInjection\\WorkflowGuardListenerPass' => $vendorDir . '/symfony/workflow/DependencyInjection/WorkflowGuardListenerPass.php',
'Symfony\\Component\\Workflow\\Dumper\\DumperInterface' => $vendorDir . '/symfony/workflow/Dumper/DumperInterface.php',
'Symfony\\Component\\Workflow\\Dumper\\GraphvizDumper' => $vendorDir . '/symfony/workflow/Dumper/GraphvizDumper.php',
'Symfony\\Component\\Workflow\\Dumper\\MermaidDumper' => $vendorDir . '/symfony/workflow/Dumper/MermaidDumper.php',
'Symfony\\Component\\Workflow\\Dumper\\PlantUmlDumper' => $vendorDir . '/symfony/workflow/Dumper/PlantUmlDumper.php',
'Symfony\\Component\\Workflow\\Dumper\\StateMachineGraphvizDumper' => $vendorDir . '/symfony/workflow/Dumper/StateMachineGraphvizDumper.php',
'Symfony\\Component\\Workflow\\EventListener\\AuditTrailListener' => $vendorDir . '/symfony/workflow/EventListener/AuditTrailListener.php',
'Symfony\\Component\\Workflow\\EventListener\\ExpressionLanguage' => $vendorDir . '/symfony/workflow/EventListener/ExpressionLanguage.php',
'Symfony\\Component\\Workflow\\EventListener\\GuardExpression' => $vendorDir . '/symfony/workflow/EventListener/GuardExpression.php',
'Symfony\\Component\\Workflow\\EventListener\\GuardListener' => $vendorDir . '/symfony/workflow/EventListener/GuardListener.php',
'Symfony\\Component\\Workflow\\Event\\AnnounceEvent' => $vendorDir . '/symfony/workflow/Event/AnnounceEvent.php',
'Symfony\\Component\\Workflow\\Event\\CompletedEvent' => $vendorDir . '/symfony/workflow/Event/CompletedEvent.php',
'Symfony\\Component\\Workflow\\Event\\EnterEvent' => $vendorDir . '/symfony/workflow/Event/EnterEvent.php',
'Symfony\\Component\\Workflow\\Event\\EnteredEvent' => $vendorDir . '/symfony/workflow/Event/EnteredEvent.php',
'Symfony\\Component\\Workflow\\Event\\Event' => $vendorDir . '/symfony/workflow/Event/Event.php',
'Symfony\\Component\\Workflow\\Event\\GuardEvent' => $vendorDir . '/symfony/workflow/Event/GuardEvent.php',
'Symfony\\Component\\Workflow\\Event\\LeaveEvent' => $vendorDir . '/symfony/workflow/Event/LeaveEvent.php',
'Symfony\\Component\\Workflow\\Event\\TransitionEvent' => $vendorDir . '/symfony/workflow/Event/TransitionEvent.php',
'Symfony\\Component\\Workflow\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/workflow/Exception/ExceptionInterface.php',
'Symfony\\Component\\Workflow\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/workflow/Exception/InvalidArgumentException.php',
'Symfony\\Component\\Workflow\\Exception\\InvalidDefinitionException' => $vendorDir . '/symfony/workflow/Exception/InvalidDefinitionException.php',
'Symfony\\Component\\Workflow\\Exception\\LogicException' => $vendorDir . '/symfony/workflow/Exception/LogicException.php',
'Symfony\\Component\\Workflow\\Exception\\NotEnabledTransitionException' => $vendorDir . '/symfony/workflow/Exception/NotEnabledTransitionException.php',
'Symfony\\Component\\Workflow\\Exception\\RuntimeException' => $vendorDir . '/symfony/workflow/Exception/RuntimeException.php',
'Symfony\\Component\\Workflow\\Exception\\TransitionException' => $vendorDir . '/symfony/workflow/Exception/TransitionException.php',
'Symfony\\Component\\Workflow\\Exception\\UndefinedTransitionException' => $vendorDir . '/symfony/workflow/Exception/UndefinedTransitionException.php',
'Symfony\\Component\\Workflow\\Marking' => $vendorDir . '/symfony/workflow/Marking.php',
'Symfony\\Component\\Workflow\\MarkingStore\\MarkingStoreInterface' => $vendorDir . '/symfony/workflow/MarkingStore/MarkingStoreInterface.php',
'Symfony\\Component\\Workflow\\MarkingStore\\MethodMarkingStore' => $vendorDir . '/symfony/workflow/MarkingStore/MethodMarkingStore.php',
'Symfony\\Component\\Workflow\\Metadata\\GetMetadataTrait' => $vendorDir . '/symfony/workflow/Metadata/GetMetadataTrait.php',
'Symfony\\Component\\Workflow\\Metadata\\InMemoryMetadataStore' => $vendorDir . '/symfony/workflow/Metadata/InMemoryMetadataStore.php',
'Symfony\\Component\\Workflow\\Metadata\\MetadataStoreInterface' => $vendorDir . '/symfony/workflow/Metadata/MetadataStoreInterface.php',
'Symfony\\Component\\Workflow\\Registry' => $vendorDir . '/symfony/workflow/Registry.php',
'Symfony\\Component\\Workflow\\StateMachine' => $vendorDir . '/symfony/workflow/StateMachine.php',
'Symfony\\Component\\Workflow\\SupportStrategy\\InstanceOfSupportStrategy' => $vendorDir . '/symfony/workflow/SupportStrategy/InstanceOfSupportStrategy.php',
'Symfony\\Component\\Workflow\\SupportStrategy\\WorkflowSupportStrategyInterface' => $vendorDir . '/symfony/workflow/SupportStrategy/WorkflowSupportStrategyInterface.php',
'Symfony\\Component\\Workflow\\Transition' => $vendorDir . '/symfony/workflow/Transition.php',
'Symfony\\Component\\Workflow\\TransitionBlocker' => $vendorDir . '/symfony/workflow/TransitionBlocker.php',
'Symfony\\Component\\Workflow\\TransitionBlockerList' => $vendorDir . '/symfony/workflow/TransitionBlockerList.php',
'Symfony\\Component\\Workflow\\Validator\\DefinitionValidatorInterface' => $vendorDir . '/symfony/workflow/Validator/DefinitionValidatorInterface.php',
'Symfony\\Component\\Workflow\\Validator\\StateMachineValidator' => $vendorDir . '/symfony/workflow/Validator/StateMachineValidator.php',
'Symfony\\Component\\Workflow\\Validator\\WorkflowValidator' => $vendorDir . '/symfony/workflow/Validator/WorkflowValidator.php',
'Symfony\\Component\\Workflow\\Workflow' => $vendorDir . '/symfony/workflow/Workflow.php',
'Symfony\\Component\\Workflow\\WorkflowEvents' => $vendorDir . '/symfony/workflow/WorkflowEvents.php',
'Symfony\\Component\\Workflow\\WorkflowInterface' => $vendorDir . '/symfony/workflow/WorkflowInterface.php',
'Symfony\\Contracts\\HttpClient\\ChunkInterface' => $vendorDir . '/symfony/http-client-contracts/ChunkInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\ClientExceptionInterface' => $vendorDir . '/symfony/http-client-contracts/Exception/ClientExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\DecodingExceptionInterface' => $vendorDir . '/symfony/http-client-contracts/Exception/DecodingExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/http-client-contracts/Exception/ExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\HttpExceptionInterface' => $vendorDir . '/symfony/http-client-contracts/Exception/HttpExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\RedirectionExceptionInterface' => $vendorDir . '/symfony/http-client-contracts/Exception/RedirectionExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\ServerExceptionInterface' => $vendorDir . '/symfony/http-client-contracts/Exception/ServerExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\TimeoutExceptionInterface' => $vendorDir . '/symfony/http-client-contracts/Exception/TimeoutExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\TransportExceptionInterface' => $vendorDir . '/symfony/http-client-contracts/Exception/TransportExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\HttpClientInterface' => $vendorDir . '/symfony/http-client-contracts/HttpClientInterface.php',
'Symfony\\Contracts\\HttpClient\\ResponseInterface' => $vendorDir . '/symfony/http-client-contracts/ResponseInterface.php',
'Symfony\\Contracts\\HttpClient\\ResponseStreamInterface' => $vendorDir . '/symfony/http-client-contracts/ResponseStreamInterface.php',
'Symfony\\Contracts\\Service\\Attribute\\Required' => $vendorDir . '/symfony/service-contracts/Attribute/Required.php',
'Symfony\\Contracts\\Service\\Attribute\\SubscribedService' => $vendorDir . '/symfony/service-contracts/Attribute/SubscribedService.php',
'Symfony\\Contracts\\Service\\ResetInterface' => $vendorDir . '/symfony/service-contracts/ResetInterface.php',
'Symfony\\Contracts\\Service\\ServiceCollectionInterface' => $vendorDir . '/symfony/service-contracts/ServiceCollectionInterface.php',
'Symfony\\Contracts\\Service\\ServiceLocatorTrait' => $vendorDir . '/symfony/service-contracts/ServiceLocatorTrait.php',
'Symfony\\Contracts\\Service\\ServiceMethodsSubscriberTrait' => $vendorDir . '/symfony/service-contracts/ServiceMethodsSubscriberTrait.php',
'Symfony\\Contracts\\Service\\ServiceProviderInterface' => $vendorDir . '/symfony/service-contracts/ServiceProviderInterface.php',
'Symfony\\Contracts\\Service\\ServiceSubscriberInterface' => $vendorDir . '/symfony/service-contracts/ServiceSubscriberInterface.php',
'Symfony\\Contracts\\Service\\ServiceSubscriberTrait' => $vendorDir . '/symfony/service-contracts/ServiceSubscriberTrait.php',
'Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php',
'Symfony\\Polyfill\\Intl\\Grapheme\\Grapheme' => $vendorDir . '/symfony/polyfill-intl-grapheme/Grapheme.php',
'Symfony\\Polyfill\\Intl\\Normalizer\\Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Normalizer.php',
'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php',
'Symfony\\Polyfill\\Php80\\Php80' => $vendorDir . '/symfony/polyfill-php80/Php80.php',
'Symfony\\Polyfill\\Php80\\PhpToken' => $vendorDir . '/symfony/polyfill-php80/PhpToken.php',
'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
'apiPsMboController' => $baseDir . '/controllers/admin/apiPsMbo.php',
'apiSecurityPsMboController' => $baseDir . '/controllers/admin/apiSecurityPsMbo.php',
'ps_mbo' => $baseDir . '/ps_mbo.php',
);

View File

@@ -0,0 +1,22 @@
<?php
// autoload_files.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
'9c67151ae59aff4788964ce8eb2a0f43' => $vendorDir . '/clue/stream-filter/src/functions_include.php',
'8cff32064859f4559445b89279f3199c' => $vendorDir . '/php-http/message/src/filters.php',
'7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php',
'fb4ca2d97fe7ba6af750497425204e70' => $vendorDir . '/sentry/sentry/src/functions.php',
'320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
'8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php',
'9cc6331a96c49e573570843cb4cc204a' => $baseDir . '/bootstrap.php',
);

View File

@@ -0,0 +1,9 @@
<?php
// autoload_namespaces.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
);

View File

@@ -0,0 +1,40 @@
<?php
// autoload_psr4.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'),
'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
'Symfony\\Polyfill\\Intl\\Normalizer\\' => array($vendorDir . '/symfony/polyfill-intl-normalizer'),
'Symfony\\Polyfill\\Intl\\Grapheme\\' => array($vendorDir . '/symfony/polyfill-intl-grapheme'),
'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
'Symfony\\Contracts\\Service\\' => array($vendorDir . '/symfony/service-contracts'),
'Symfony\\Contracts\\HttpClient\\' => array($vendorDir . '/symfony/http-client-contracts'),
'Symfony\\Component\\Workflow\\' => array($vendorDir . '/symfony/workflow'),
'Symfony\\Component\\String\\' => array($vendorDir . '/symfony/string'),
'Symfony\\Component\\OptionsResolver\\' => array($vendorDir . '/symfony/options-resolver'),
'Symfony\\Component\\HttpClient\\' => array($vendorDir . '/symfony/http-client'),
'Symfony\\Component\\Dotenv\\' => array($vendorDir . '/symfony/dotenv'),
'Sentry\\' => array($vendorDir . '/sentry/sentry/src'),
'Psr\\Log\\' => array($vendorDir . '/psr/log/src'),
'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-factory/src', $vendorDir . '/psr/http-message/src'),
'Psr\\Http\\Client\\' => array($vendorDir . '/psr/http-client/src'),
'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
'PrestaShop\\PsAccountsInstaller\\' => array($vendorDir . '/prestashop/prestashop-accounts-installer/src'),
'PrestaShop\\Module\\Mbo\\Tests\\' => array($baseDir . '/tests'),
'PrestaShop\\Module\\Mbo\\' => array($baseDir . '/src'),
'Jean85\\' => array($vendorDir . '/jean85/pretty-package-versions/src'),
'Http\\Promise\\' => array($vendorDir . '/php-http/promise/src'),
'Http\\Message\\' => array($vendorDir . '/php-http/message/src', $vendorDir . '/php-http/message-factory/src'),
'Http\\Factory\\Guzzle\\' => array($vendorDir . '/http-interop/http-factory-guzzle/src'),
'Http\\Discovery\\' => array($vendorDir . '/php-http/discovery/src'),
'Http\\Client\\Common\\' => array($vendorDir . '/php-http/client-common/src'),
'Http\\Client\\' => array($vendorDir . '/php-http/httplug/src'),
'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'),
'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
'Clue\\StreamFilter\\' => array($vendorDir . '/clue/stream-filter/src'),
);

View File

@@ -0,0 +1,50 @@
<?php
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit5fbead78089182978609c09444be406e
{
private static $loader;
public static function loadClassLoader($class)
{
if ('Composer\Autoload\ClassLoader' === $class) {
require __DIR__ . '/ClassLoader.php';
}
}
/**
* @return \Composer\Autoload\ClassLoader
*/
public static function getLoader()
{
if (null !== self::$loader) {
return self::$loader;
}
require __DIR__ . '/platform_check.php';
spl_autoload_register(array('ComposerAutoloaderInit5fbead78089182978609c09444be406e', 'loadClassLoader'), true, false);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInit5fbead78089182978609c09444be406e', 'loadClassLoader'));
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit5fbead78089182978609c09444be406e::getInitializer($loader));
$loader->register(false);
$filesToLoad = \Composer\Autoload\ComposerStaticInit5fbead78089182978609c09444be406e::$files;
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
require $file;
}
}, null, null);
foreach ($filesToLoad as $fileIdentifier => $file) {
$requireFile($fileIdentifier, $file);
}
return $loader;
}
}

View File

@@ -0,0 +1,876 @@
<?php
// autoload_static.php @generated by Composer
namespace Composer\Autoload;
class ComposerStaticInit5fbead78089182978609c09444be406e
{
public static $files = array (
'6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
'9c67151ae59aff4788964ce8eb2a0f43' => __DIR__ . '/..' . '/clue/stream-filter/src/functions_include.php',
'8cff32064859f4559445b89279f3199c' => __DIR__ . '/..' . '/php-http/message/src/filters.php',
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php',
'fb4ca2d97fe7ba6af750497425204e70' => __DIR__ . '/..' . '/sentry/sentry/src/functions.php',
'320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
'8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
'9cc6331a96c49e573570843cb4cc204a' => __DIR__ . '/../..' . '/bootstrap.php',
);
public static $prefixLengthsPsr4 = array (
'S' =>
array (
'Symfony\\Polyfill\\Php80\\' => 23,
'Symfony\\Polyfill\\Mbstring\\' => 26,
'Symfony\\Polyfill\\Intl\\Normalizer\\' => 33,
'Symfony\\Polyfill\\Intl\\Grapheme\\' => 31,
'Symfony\\Polyfill\\Ctype\\' => 23,
'Symfony\\Contracts\\Service\\' => 26,
'Symfony\\Contracts\\HttpClient\\' => 29,
'Symfony\\Component\\Workflow\\' => 27,
'Symfony\\Component\\String\\' => 25,
'Symfony\\Component\\OptionsResolver\\' => 34,
'Symfony\\Component\\HttpClient\\' => 29,
'Symfony\\Component\\Dotenv\\' => 25,
'Sentry\\' => 7,
),
'P' =>
array (
'Psr\\Log\\' => 8,
'Psr\\Http\\Message\\' => 17,
'Psr\\Http\\Client\\' => 16,
'Psr\\Container\\' => 14,
'PrestaShop\\PsAccountsInstaller\\' => 31,
'PrestaShop\\Module\\Mbo\\Tests\\' => 28,
'PrestaShop\\Module\\Mbo\\' => 22,
),
'J' =>
array (
'Jean85\\' => 7,
),
'H' =>
array (
'Http\\Promise\\' => 13,
'Http\\Message\\' => 13,
'Http\\Factory\\Guzzle\\' => 20,
'Http\\Discovery\\' => 15,
'Http\\Client\\Common\\' => 19,
'Http\\Client\\' => 12,
),
'G' =>
array (
'GuzzleHttp\\Psr7\\' => 16,
'GuzzleHttp\\Promise\\' => 19,
),
'F' =>
array (
'Firebase\\JWT\\' => 13,
),
'C' =>
array (
'Clue\\StreamFilter\\' => 18,
),
);
public static $prefixDirsPsr4 = array (
'Symfony\\Polyfill\\Php80\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/polyfill-php80',
),
'Symfony\\Polyfill\\Mbstring\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
),
'Symfony\\Polyfill\\Intl\\Normalizer\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer',
),
'Symfony\\Polyfill\\Intl\\Grapheme\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme',
),
'Symfony\\Polyfill\\Ctype\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
),
'Symfony\\Contracts\\Service\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/service-contracts',
),
'Symfony\\Contracts\\HttpClient\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/http-client-contracts',
),
'Symfony\\Component\\Workflow\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/workflow',
),
'Symfony\\Component\\String\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/string',
),
'Symfony\\Component\\OptionsResolver\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/options-resolver',
),
'Symfony\\Component\\HttpClient\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/http-client',
),
'Symfony\\Component\\Dotenv\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/dotenv',
),
'Sentry\\' =>
array (
0 => __DIR__ . '/..' . '/sentry/sentry/src',
),
'Psr\\Log\\' =>
array (
0 => __DIR__ . '/..' . '/psr/log/src',
),
'Psr\\Http\\Message\\' =>
array (
0 => __DIR__ . '/..' . '/psr/http-factory/src',
1 => __DIR__ . '/..' . '/psr/http-message/src',
),
'Psr\\Http\\Client\\' =>
array (
0 => __DIR__ . '/..' . '/psr/http-client/src',
),
'Psr\\Container\\' =>
array (
0 => __DIR__ . '/..' . '/psr/container/src',
),
'PrestaShop\\PsAccountsInstaller\\' =>
array (
0 => __DIR__ . '/..' . '/prestashop/prestashop-accounts-installer/src',
),
'PrestaShop\\Module\\Mbo\\Tests\\' =>
array (
0 => __DIR__ . '/../..' . '/tests',
),
'PrestaShop\\Module\\Mbo\\' =>
array (
0 => __DIR__ . '/../..' . '/src',
),
'Jean85\\' =>
array (
0 => __DIR__ . '/..' . '/jean85/pretty-package-versions/src',
),
'Http\\Promise\\' =>
array (
0 => __DIR__ . '/..' . '/php-http/promise/src',
),
'Http\\Message\\' =>
array (
0 => __DIR__ . '/..' . '/php-http/message/src',
1 => __DIR__ . '/..' . '/php-http/message-factory/src',
),
'Http\\Factory\\Guzzle\\' =>
array (
0 => __DIR__ . '/..' . '/http-interop/http-factory-guzzle/src',
),
'Http\\Discovery\\' =>
array (
0 => __DIR__ . '/..' . '/php-http/discovery/src',
),
'Http\\Client\\Common\\' =>
array (
0 => __DIR__ . '/..' . '/php-http/client-common/src',
),
'Http\\Client\\' =>
array (
0 => __DIR__ . '/..' . '/php-http/httplug/src',
),
'GuzzleHttp\\Psr7\\' =>
array (
0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src',
),
'GuzzleHttp\\Promise\\' =>
array (
0 => __DIR__ . '/..' . '/guzzlehttp/promises/src',
),
'Firebase\\JWT\\' =>
array (
0 => __DIR__ . '/..' . '/firebase/php-jwt/src',
),
'Clue\\StreamFilter\\' =>
array (
0 => __DIR__ . '/..' . '/clue/stream-filter/src',
),
);
public static $classMap = array (
'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
'Clue\\StreamFilter\\CallbackFilter' => __DIR__ . '/..' . '/clue/stream-filter/src/CallbackFilter.php',
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
'Firebase\\JWT\\BeforeValidException' => __DIR__ . '/..' . '/firebase/php-jwt/src/BeforeValidException.php',
'Firebase\\JWT\\CachedKeySet' => __DIR__ . '/..' . '/firebase/php-jwt/src/CachedKeySet.php',
'Firebase\\JWT\\ExpiredException' => __DIR__ . '/..' . '/firebase/php-jwt/src/ExpiredException.php',
'Firebase\\JWT\\JWK' => __DIR__ . '/..' . '/firebase/php-jwt/src/JWK.php',
'Firebase\\JWT\\JWT' => __DIR__ . '/..' . '/firebase/php-jwt/src/JWT.php',
'Firebase\\JWT\\Key' => __DIR__ . '/..' . '/firebase/php-jwt/src/Key.php',
'Firebase\\JWT\\SignatureInvalidException' => __DIR__ . '/..' . '/firebase/php-jwt/src/SignatureInvalidException.php',
'GuzzleHttp\\Promise\\AggregateException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/AggregateException.php',
'GuzzleHttp\\Promise\\CancellationException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/CancellationException.php',
'GuzzleHttp\\Promise\\Coroutine' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Coroutine.php',
'GuzzleHttp\\Promise\\Create' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Create.php',
'GuzzleHttp\\Promise\\Each' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Each.php',
'GuzzleHttp\\Promise\\EachPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/EachPromise.php',
'GuzzleHttp\\Promise\\FulfilledPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/FulfilledPromise.php',
'GuzzleHttp\\Promise\\Is' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Is.php',
'GuzzleHttp\\Promise\\Promise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Promise.php',
'GuzzleHttp\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromiseInterface.php',
'GuzzleHttp\\Promise\\PromisorInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromisorInterface.php',
'GuzzleHttp\\Promise\\RejectedPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectedPromise.php',
'GuzzleHttp\\Promise\\RejectionException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectionException.php',
'GuzzleHttp\\Promise\\TaskQueue' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueue.php',
'GuzzleHttp\\Promise\\TaskQueueInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueueInterface.php',
'GuzzleHttp\\Promise\\Utils' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Utils.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',
'Http\\Client\\Common\\BatchClient' => __DIR__ . '/..' . '/php-http/client-common/src/BatchClient.php',
'Http\\Client\\Common\\BatchClientInterface' => __DIR__ . '/..' . '/php-http/client-common/src/BatchClientInterface.php',
'Http\\Client\\Common\\BatchResult' => __DIR__ . '/..' . '/php-http/client-common/src/BatchResult.php',
'Http\\Client\\Common\\Deferred' => __DIR__ . '/..' . '/php-http/client-common/src/Deferred.php',
'Http\\Client\\Common\\EmulatedHttpAsyncClient' => __DIR__ . '/..' . '/php-http/client-common/src/EmulatedHttpAsyncClient.php',
'Http\\Client\\Common\\EmulatedHttpClient' => __DIR__ . '/..' . '/php-http/client-common/src/EmulatedHttpClient.php',
'Http\\Client\\Common\\Exception\\BatchException' => __DIR__ . '/..' . '/php-http/client-common/src/Exception/BatchException.php',
'Http\\Client\\Common\\Exception\\CircularRedirectionException' => __DIR__ . '/..' . '/php-http/client-common/src/Exception/CircularRedirectionException.php',
'Http\\Client\\Common\\Exception\\ClientErrorException' => __DIR__ . '/..' . '/php-http/client-common/src/Exception/ClientErrorException.php',
'Http\\Client\\Common\\Exception\\HttpClientNoMatchException' => __DIR__ . '/..' . '/php-http/client-common/src/Exception/HttpClientNoMatchException.php',
'Http\\Client\\Common\\Exception\\HttpClientNotFoundException' => __DIR__ . '/..' . '/php-http/client-common/src/Exception/HttpClientNotFoundException.php',
'Http\\Client\\Common\\Exception\\LoopException' => __DIR__ . '/..' . '/php-http/client-common/src/Exception/LoopException.php',
'Http\\Client\\Common\\Exception\\MultipleRedirectionException' => __DIR__ . '/..' . '/php-http/client-common/src/Exception/MultipleRedirectionException.php',
'Http\\Client\\Common\\Exception\\ServerErrorException' => __DIR__ . '/..' . '/php-http/client-common/src/Exception/ServerErrorException.php',
'Http\\Client\\Common\\FlexibleHttpClient' => __DIR__ . '/..' . '/php-http/client-common/src/FlexibleHttpClient.php',
'Http\\Client\\Common\\HttpAsyncClientDecorator' => __DIR__ . '/..' . '/php-http/client-common/src/HttpAsyncClientDecorator.php',
'Http\\Client\\Common\\HttpAsyncClientEmulator' => __DIR__ . '/..' . '/php-http/client-common/src/HttpAsyncClientEmulator.php',
'Http\\Client\\Common\\HttpClientDecorator' => __DIR__ . '/..' . '/php-http/client-common/src/HttpClientDecorator.php',
'Http\\Client\\Common\\HttpClientEmulator' => __DIR__ . '/..' . '/php-http/client-common/src/HttpClientEmulator.php',
'Http\\Client\\Common\\HttpClientPool' => __DIR__ . '/..' . '/php-http/client-common/src/HttpClientPool.php',
'Http\\Client\\Common\\HttpClientPool\\HttpClientPool' => __DIR__ . '/..' . '/php-http/client-common/src/HttpClientPool/HttpClientPool.php',
'Http\\Client\\Common\\HttpClientPool\\HttpClientPoolItem' => __DIR__ . '/..' . '/php-http/client-common/src/HttpClientPool/HttpClientPoolItem.php',
'Http\\Client\\Common\\HttpClientPool\\LeastUsedClientPool' => __DIR__ . '/..' . '/php-http/client-common/src/HttpClientPool/LeastUsedClientPool.php',
'Http\\Client\\Common\\HttpClientPool\\RandomClientPool' => __DIR__ . '/..' . '/php-http/client-common/src/HttpClientPool/RandomClientPool.php',
'Http\\Client\\Common\\HttpClientPool\\RoundRobinClientPool' => __DIR__ . '/..' . '/php-http/client-common/src/HttpClientPool/RoundRobinClientPool.php',
'Http\\Client\\Common\\HttpClientRouter' => __DIR__ . '/..' . '/php-http/client-common/src/HttpClientRouter.php',
'Http\\Client\\Common\\HttpClientRouterInterface' => __DIR__ . '/..' . '/php-http/client-common/src/HttpClientRouterInterface.php',
'Http\\Client\\Common\\HttpMethodsClient' => __DIR__ . '/..' . '/php-http/client-common/src/HttpMethodsClient.php',
'Http\\Client\\Common\\HttpMethodsClientInterface' => __DIR__ . '/..' . '/php-http/client-common/src/HttpMethodsClientInterface.php',
'Http\\Client\\Common\\Plugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin.php',
'Http\\Client\\Common\\PluginChain' => __DIR__ . '/..' . '/php-http/client-common/src/PluginChain.php',
'Http\\Client\\Common\\PluginClient' => __DIR__ . '/..' . '/php-http/client-common/src/PluginClient.php',
'Http\\Client\\Common\\PluginClientBuilder' => __DIR__ . '/..' . '/php-http/client-common/src/PluginClientBuilder.php',
'Http\\Client\\Common\\PluginClientFactory' => __DIR__ . '/..' . '/php-http/client-common/src/PluginClientFactory.php',
'Http\\Client\\Common\\Plugin\\AddHostPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/AddHostPlugin.php',
'Http\\Client\\Common\\Plugin\\AddPathPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/AddPathPlugin.php',
'Http\\Client\\Common\\Plugin\\AuthenticationPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/AuthenticationPlugin.php',
'Http\\Client\\Common\\Plugin\\BaseUriPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/BaseUriPlugin.php',
'Http\\Client\\Common\\Plugin\\ContentLengthPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/ContentLengthPlugin.php',
'Http\\Client\\Common\\Plugin\\ContentTypePlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/ContentTypePlugin.php',
'Http\\Client\\Common\\Plugin\\CookiePlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/CookiePlugin.php',
'Http\\Client\\Common\\Plugin\\DecoderPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/DecoderPlugin.php',
'Http\\Client\\Common\\Plugin\\ErrorPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/ErrorPlugin.php',
'Http\\Client\\Common\\Plugin\\HeaderAppendPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/HeaderAppendPlugin.php',
'Http\\Client\\Common\\Plugin\\HeaderDefaultsPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/HeaderDefaultsPlugin.php',
'Http\\Client\\Common\\Plugin\\HeaderRemovePlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/HeaderRemovePlugin.php',
'Http\\Client\\Common\\Plugin\\HeaderSetPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/HeaderSetPlugin.php',
'Http\\Client\\Common\\Plugin\\HistoryPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/HistoryPlugin.php',
'Http\\Client\\Common\\Plugin\\Journal' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/Journal.php',
'Http\\Client\\Common\\Plugin\\QueryDefaultsPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/QueryDefaultsPlugin.php',
'Http\\Client\\Common\\Plugin\\RedirectPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/RedirectPlugin.php',
'Http\\Client\\Common\\Plugin\\RequestMatcherPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/RequestMatcherPlugin.php',
'Http\\Client\\Common\\Plugin\\RequestSeekableBodyPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/RequestSeekableBodyPlugin.php',
'Http\\Client\\Common\\Plugin\\ResponseSeekableBodyPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/ResponseSeekableBodyPlugin.php',
'Http\\Client\\Common\\Plugin\\RetryPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/RetryPlugin.php',
'Http\\Client\\Common\\Plugin\\SeekableBodyPlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/SeekableBodyPlugin.php',
'Http\\Client\\Common\\Plugin\\VersionBridgePlugin' => __DIR__ . '/..' . '/php-http/client-common/src/Plugin/VersionBridgePlugin.php',
'Http\\Client\\Common\\VersionBridgeClient' => __DIR__ . '/..' . '/php-http/client-common/src/VersionBridgeClient.php',
'Http\\Client\\Exception' => __DIR__ . '/..' . '/php-http/httplug/src/Exception.php',
'Http\\Client\\Exception\\HttpException' => __DIR__ . '/..' . '/php-http/httplug/src/Exception/HttpException.php',
'Http\\Client\\Exception\\NetworkException' => __DIR__ . '/..' . '/php-http/httplug/src/Exception/NetworkException.php',
'Http\\Client\\Exception\\RequestAwareTrait' => __DIR__ . '/..' . '/php-http/httplug/src/Exception/RequestAwareTrait.php',
'Http\\Client\\Exception\\RequestException' => __DIR__ . '/..' . '/php-http/httplug/src/Exception/RequestException.php',
'Http\\Client\\Exception\\TransferException' => __DIR__ . '/..' . '/php-http/httplug/src/Exception/TransferException.php',
'Http\\Client\\HttpAsyncClient' => __DIR__ . '/..' . '/php-http/httplug/src/HttpAsyncClient.php',
'Http\\Client\\HttpClient' => __DIR__ . '/..' . '/php-http/httplug/src/HttpClient.php',
'Http\\Client\\Promise\\HttpFulfilledPromise' => __DIR__ . '/..' . '/php-http/httplug/src/Promise/HttpFulfilledPromise.php',
'Http\\Client\\Promise\\HttpRejectedPromise' => __DIR__ . '/..' . '/php-http/httplug/src/Promise/HttpRejectedPromise.php',
'Http\\Discovery\\ClassDiscovery' => __DIR__ . '/..' . '/php-http/discovery/src/ClassDiscovery.php',
'Http\\Discovery\\Exception' => __DIR__ . '/..' . '/php-http/discovery/src/Exception.php',
'Http\\Discovery\\Exception\\ClassInstantiationFailedException' => __DIR__ . '/..' . '/php-http/discovery/src/Exception/ClassInstantiationFailedException.php',
'Http\\Discovery\\Exception\\DiscoveryFailedException' => __DIR__ . '/..' . '/php-http/discovery/src/Exception/DiscoveryFailedException.php',
'Http\\Discovery\\Exception\\NoCandidateFoundException' => __DIR__ . '/..' . '/php-http/discovery/src/Exception/NoCandidateFoundException.php',
'Http\\Discovery\\Exception\\NotFoundException' => __DIR__ . '/..' . '/php-http/discovery/src/Exception/NotFoundException.php',
'Http\\Discovery\\Exception\\PuliUnavailableException' => __DIR__ . '/..' . '/php-http/discovery/src/Exception/PuliUnavailableException.php',
'Http\\Discovery\\Exception\\StrategyUnavailableException' => __DIR__ . '/..' . '/php-http/discovery/src/Exception/StrategyUnavailableException.php',
'Http\\Discovery\\HttpAsyncClientDiscovery' => __DIR__ . '/..' . '/php-http/discovery/src/HttpAsyncClientDiscovery.php',
'Http\\Discovery\\HttpClientDiscovery' => __DIR__ . '/..' . '/php-http/discovery/src/HttpClientDiscovery.php',
'Http\\Discovery\\MessageFactoryDiscovery' => __DIR__ . '/..' . '/php-http/discovery/src/MessageFactoryDiscovery.php',
'Http\\Discovery\\NotFoundException' => __DIR__ . '/..' . '/php-http/discovery/src/NotFoundException.php',
'Http\\Discovery\\Psr17FactoryDiscovery' => __DIR__ . '/..' . '/php-http/discovery/src/Psr17FactoryDiscovery.php',
'Http\\Discovery\\Psr18ClientDiscovery' => __DIR__ . '/..' . '/php-http/discovery/src/Psr18ClientDiscovery.php',
'Http\\Discovery\\Strategy\\CommonClassesStrategy' => __DIR__ . '/..' . '/php-http/discovery/src/Strategy/CommonClassesStrategy.php',
'Http\\Discovery\\Strategy\\CommonPsr17ClassesStrategy' => __DIR__ . '/..' . '/php-http/discovery/src/Strategy/CommonPsr17ClassesStrategy.php',
'Http\\Discovery\\Strategy\\DiscoveryStrategy' => __DIR__ . '/..' . '/php-http/discovery/src/Strategy/DiscoveryStrategy.php',
'Http\\Discovery\\Strategy\\MockClientStrategy' => __DIR__ . '/..' . '/php-http/discovery/src/Strategy/MockClientStrategy.php',
'Http\\Discovery\\Strategy\\PuliBetaStrategy' => __DIR__ . '/..' . '/php-http/discovery/src/Strategy/PuliBetaStrategy.php',
'Http\\Discovery\\StreamFactoryDiscovery' => __DIR__ . '/..' . '/php-http/discovery/src/StreamFactoryDiscovery.php',
'Http\\Discovery\\UriFactoryDiscovery' => __DIR__ . '/..' . '/php-http/discovery/src/UriFactoryDiscovery.php',
'Http\\Factory\\Guzzle\\RequestFactory' => __DIR__ . '/..' . '/http-interop/http-factory-guzzle/src/RequestFactory.php',
'Http\\Factory\\Guzzle\\ResponseFactory' => __DIR__ . '/..' . '/http-interop/http-factory-guzzle/src/ResponseFactory.php',
'Http\\Factory\\Guzzle\\ServerRequestFactory' => __DIR__ . '/..' . '/http-interop/http-factory-guzzle/src/ServerRequestFactory.php',
'Http\\Factory\\Guzzle\\StreamFactory' => __DIR__ . '/..' . '/http-interop/http-factory-guzzle/src/StreamFactory.php',
'Http\\Factory\\Guzzle\\UploadedFileFactory' => __DIR__ . '/..' . '/http-interop/http-factory-guzzle/src/UploadedFileFactory.php',
'Http\\Factory\\Guzzle\\UriFactory' => __DIR__ . '/..' . '/http-interop/http-factory-guzzle/src/UriFactory.php',
'Http\\Message\\Authentication' => __DIR__ . '/..' . '/php-http/message/src/Authentication.php',
'Http\\Message\\Authentication\\AutoBasicAuth' => __DIR__ . '/..' . '/php-http/message/src/Authentication/AutoBasicAuth.php',
'Http\\Message\\Authentication\\BasicAuth' => __DIR__ . '/..' . '/php-http/message/src/Authentication/BasicAuth.php',
'Http\\Message\\Authentication\\Bearer' => __DIR__ . '/..' . '/php-http/message/src/Authentication/Bearer.php',
'Http\\Message\\Authentication\\Chain' => __DIR__ . '/..' . '/php-http/message/src/Authentication/Chain.php',
'Http\\Message\\Authentication\\Header' => __DIR__ . '/..' . '/php-http/message/src/Authentication/Header.php',
'Http\\Message\\Authentication\\Matching' => __DIR__ . '/..' . '/php-http/message/src/Authentication/Matching.php',
'Http\\Message\\Authentication\\QueryParam' => __DIR__ . '/..' . '/php-http/message/src/Authentication/QueryParam.php',
'Http\\Message\\Authentication\\RequestConditional' => __DIR__ . '/..' . '/php-http/message/src/Authentication/RequestConditional.php',
'Http\\Message\\Authentication\\Wsse' => __DIR__ . '/..' . '/php-http/message/src/Authentication/Wsse.php',
'Http\\Message\\Builder\\ResponseBuilder' => __DIR__ . '/..' . '/php-http/message/src/Builder/ResponseBuilder.php',
'Http\\Message\\Cookie' => __DIR__ . '/..' . '/php-http/message/src/Cookie.php',
'Http\\Message\\CookieJar' => __DIR__ . '/..' . '/php-http/message/src/CookieJar.php',
'Http\\Message\\CookieUtil' => __DIR__ . '/..' . '/php-http/message/src/CookieUtil.php',
'Http\\Message\\Decorator\\MessageDecorator' => __DIR__ . '/..' . '/php-http/message/src/Decorator/MessageDecorator.php',
'Http\\Message\\Decorator\\RequestDecorator' => __DIR__ . '/..' . '/php-http/message/src/Decorator/RequestDecorator.php',
'Http\\Message\\Decorator\\ResponseDecorator' => __DIR__ . '/..' . '/php-http/message/src/Decorator/ResponseDecorator.php',
'Http\\Message\\Decorator\\StreamDecorator' => __DIR__ . '/..' . '/php-http/message/src/Decorator/StreamDecorator.php',
'Http\\Message\\Encoding\\ChunkStream' => __DIR__ . '/..' . '/php-http/message/src/Encoding/ChunkStream.php',
'Http\\Message\\Encoding\\CompressStream' => __DIR__ . '/..' . '/php-http/message/src/Encoding/CompressStream.php',
'Http\\Message\\Encoding\\DechunkStream' => __DIR__ . '/..' . '/php-http/message/src/Encoding/DechunkStream.php',
'Http\\Message\\Encoding\\DecompressStream' => __DIR__ . '/..' . '/php-http/message/src/Encoding/DecompressStream.php',
'Http\\Message\\Encoding\\DeflateStream' => __DIR__ . '/..' . '/php-http/message/src/Encoding/DeflateStream.php',
'Http\\Message\\Encoding\\Filter\\Chunk' => __DIR__ . '/..' . '/php-http/message/src/Encoding/Filter/Chunk.php',
'Http\\Message\\Encoding\\FilteredStream' => __DIR__ . '/..' . '/php-http/message/src/Encoding/FilteredStream.php',
'Http\\Message\\Encoding\\GzipDecodeStream' => __DIR__ . '/..' . '/php-http/message/src/Encoding/GzipDecodeStream.php',
'Http\\Message\\Encoding\\GzipEncodeStream' => __DIR__ . '/..' . '/php-http/message/src/Encoding/GzipEncodeStream.php',
'Http\\Message\\Encoding\\InflateStream' => __DIR__ . '/..' . '/php-http/message/src/Encoding/InflateStream.php',
'Http\\Message\\Exception' => __DIR__ . '/..' . '/php-http/message/src/Exception.php',
'Http\\Message\\Exception\\UnexpectedValueException' => __DIR__ . '/..' . '/php-http/message/src/Exception/UnexpectedValueException.php',
'Http\\Message\\Formatter' => __DIR__ . '/..' . '/php-http/message/src/Formatter.php',
'Http\\Message\\Formatter\\CurlCommandFormatter' => __DIR__ . '/..' . '/php-http/message/src/Formatter/CurlCommandFormatter.php',
'Http\\Message\\Formatter\\FullHttpMessageFormatter' => __DIR__ . '/..' . '/php-http/message/src/Formatter/FullHttpMessageFormatter.php',
'Http\\Message\\Formatter\\SimpleFormatter' => __DIR__ . '/..' . '/php-http/message/src/Formatter/SimpleFormatter.php',
'Http\\Message\\MessageFactory' => __DIR__ . '/..' . '/php-http/message-factory/src/MessageFactory.php',
'Http\\Message\\MessageFactory\\DiactorosMessageFactory' => __DIR__ . '/..' . '/php-http/message/src/MessageFactory/DiactorosMessageFactory.php',
'Http\\Message\\MessageFactory\\GuzzleMessageFactory' => __DIR__ . '/..' . '/php-http/message/src/MessageFactory/GuzzleMessageFactory.php',
'Http\\Message\\MessageFactory\\SlimMessageFactory' => __DIR__ . '/..' . '/php-http/message/src/MessageFactory/SlimMessageFactory.php',
'Http\\Message\\RequestFactory' => __DIR__ . '/..' . '/php-http/message-factory/src/RequestFactory.php',
'Http\\Message\\RequestMatcher' => __DIR__ . '/..' . '/php-http/message/src/RequestMatcher.php',
'Http\\Message\\RequestMatcher\\CallbackRequestMatcher' => __DIR__ . '/..' . '/php-http/message/src/RequestMatcher/CallbackRequestMatcher.php',
'Http\\Message\\RequestMatcher\\RegexRequestMatcher' => __DIR__ . '/..' . '/php-http/message/src/RequestMatcher/RegexRequestMatcher.php',
'Http\\Message\\RequestMatcher\\RequestMatcher' => __DIR__ . '/..' . '/php-http/message/src/RequestMatcher/RequestMatcher.php',
'Http\\Message\\ResponseFactory' => __DIR__ . '/..' . '/php-http/message-factory/src/ResponseFactory.php',
'Http\\Message\\StreamFactory' => __DIR__ . '/..' . '/php-http/message-factory/src/StreamFactory.php',
'Http\\Message\\StreamFactory\\DiactorosStreamFactory' => __DIR__ . '/..' . '/php-http/message/src/StreamFactory/DiactorosStreamFactory.php',
'Http\\Message\\StreamFactory\\GuzzleStreamFactory' => __DIR__ . '/..' . '/php-http/message/src/StreamFactory/GuzzleStreamFactory.php',
'Http\\Message\\StreamFactory\\SlimStreamFactory' => __DIR__ . '/..' . '/php-http/message/src/StreamFactory/SlimStreamFactory.php',
'Http\\Message\\Stream\\BufferedStream' => __DIR__ . '/..' . '/php-http/message/src/Stream/BufferedStream.php',
'Http\\Message\\UriFactory' => __DIR__ . '/..' . '/php-http/message-factory/src/UriFactory.php',
'Http\\Message\\UriFactory\\DiactorosUriFactory' => __DIR__ . '/..' . '/php-http/message/src/UriFactory/DiactorosUriFactory.php',
'Http\\Message\\UriFactory\\GuzzleUriFactory' => __DIR__ . '/..' . '/php-http/message/src/UriFactory/GuzzleUriFactory.php',
'Http\\Message\\UriFactory\\SlimUriFactory' => __DIR__ . '/..' . '/php-http/message/src/UriFactory/SlimUriFactory.php',
'Http\\Promise\\FulfilledPromise' => __DIR__ . '/..' . '/php-http/promise/src/FulfilledPromise.php',
'Http\\Promise\\Promise' => __DIR__ . '/..' . '/php-http/promise/src/Promise.php',
'Http\\Promise\\RejectedPromise' => __DIR__ . '/..' . '/php-http/promise/src/RejectedPromise.php',
'Jean85\\Exception\\ProvidedPackageException' => __DIR__ . '/..' . '/jean85/pretty-package-versions/src/Exception/ProvidedPackageException.php',
'Jean85\\Exception\\ReplacedPackageException' => __DIR__ . '/..' . '/jean85/pretty-package-versions/src/Exception/ReplacedPackageException.php',
'Jean85\\Exception\\VersionMissingExceptionInterface' => __DIR__ . '/..' . '/jean85/pretty-package-versions/src/Exception/VersionMissingExceptionInterface.php',
'Jean85\\PrettyVersions' => __DIR__ . '/..' . '/jean85/pretty-package-versions/src/PrettyVersions.php',
'Jean85\\Version' => __DIR__ . '/..' . '/jean85/pretty-package-versions/src/Version.php',
'Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
'PrestaShop\\Module\\Mbo\\Accounts\\Provider\\AccountsDataProvider' => __DIR__ . '/../..' . '/src/Accounts/Provider/AccountsDataProvider.php',
'PrestaShop\\Module\\Mbo\\Addons\\ApiClient' => __DIR__ . '/../..' . '/src/Addons/ApiClient.php',
'PrestaShop\\Module\\Mbo\\Addons\\Exception\\ClientRequestException' => __DIR__ . '/../..' . '/src/Addons/Exception/ClientRequestException.php',
'PrestaShop\\Module\\Mbo\\Addons\\Exception\\DownloadModuleException' => __DIR__ . '/../..' . '/src/Addons/Exception/DownloadModuleException.php',
'PrestaShop\\Module\\Mbo\\Addons\\Provider\\AddonsDataProvider' => __DIR__ . '/../..' . '/src/Addons/Provider/AddonsDataProvider.php',
'PrestaShop\\Module\\Mbo\\Addons\\Provider\\DataProviderInterface' => __DIR__ . '/../..' . '/src/Addons/Provider/DataProviderInterface.php',
'PrestaShop\\Module\\Mbo\\Addons\\Provider\\LinksProvider' => __DIR__ . '/../..' . '/src/Addons/Provider/LinksProvider.php',
'PrestaShop\\Module\\Mbo\\Addons\\Subscriber\\ModuleManagementEventSubscriber' => __DIR__ . '/../..' . '/src/Addons/Subscriber/ModuleManagementEventSubscriber.php',
'PrestaShop\\Module\\Mbo\\Addons\\Toolbar' => __DIR__ . '/../..' . '/src/Addons/Toolbar.php',
'PrestaShop\\Module\\Mbo\\Addons\\User\\AddonsUser' => __DIR__ . '/../..' . '/src/Addons/User/AddonsUser.php',
'PrestaShop\\Module\\Mbo\\Addons\\User\\AddonsUserProvider' => __DIR__ . '/../..' . '/src/Addons/User/AddonsUserProvider.php',
'PrestaShop\\Module\\Mbo\\Addons\\User\\UserInterface' => __DIR__ . '/../..' . '/src/Addons/User/UserInterface.php',
'PrestaShop\\Module\\Mbo\\Api\\Config\\Config' => __DIR__ . '/../..' . '/src/Api/Config/Config.php',
'PrestaShop\\Module\\Mbo\\Api\\Config\\Env' => __DIR__ . '/../..' . '/src/Api/Config/Env.php',
'PrestaShop\\Module\\Mbo\\Api\\Controller\\AbstractAdminApiController' => __DIR__ . '/../..' . '/src/Api/Controller/AbstractAdminApiController.php',
'PrestaShop\\Module\\Mbo\\Api\\Exception\\IncompleteSignatureParamsException' => __DIR__ . '/../..' . '/src/Api/Exception/IncompleteSignatureParamsException.php',
'PrestaShop\\Module\\Mbo\\Api\\Exception\\QueryParamsException' => __DIR__ . '/../..' . '/src/Api/Exception/QueryParamsException.php',
'PrestaShop\\Module\\Mbo\\Api\\Exception\\RetrieveNewKeyException' => __DIR__ . '/../..' . '/src/Api/Exception/RetrieveNewKeyException.php',
'PrestaShop\\Module\\Mbo\\Api\\Exception\\UnauthorizedException' => __DIR__ . '/../..' . '/src/Api/Exception/UnauthorizedException.php',
'PrestaShop\\Module\\Mbo\\Api\\Exception\\UnknownServiceException' => __DIR__ . '/../..' . '/src/Api/Exception/UnknownServiceException.php',
'PrestaShop\\Module\\Mbo\\Api\\Repository\\ModuleRepository' => __DIR__ . '/../..' . '/src/Api/Repository/ModuleRepository.php',
'PrestaShop\\Module\\Mbo\\Api\\Security\\AdminAuthenticationProvider' => __DIR__ . '/../..' . '/src/Api/Security/AdminAuthenticationProvider.php',
'PrestaShop\\Module\\Mbo\\Api\\Security\\AuthorizationChecker' => __DIR__ . '/../..' . '/src/Api/Security/AuthorizationChecker.php',
'PrestaShop\\Module\\Mbo\\Api\\Service\\ConfigApplyExecutor' => __DIR__ . '/../..' . '/src/Api/Service/ConfigApplyExecutor.php',
'PrestaShop\\Module\\Mbo\\Api\\Service\\Factory' => __DIR__ . '/../..' . '/src/Api/Service/Factory.php',
'PrestaShop\\Module\\Mbo\\Api\\Service\\ModuleTransitionExecutor' => __DIR__ . '/../..' . '/src/Api/Service/ModuleTransitionExecutor.php',
'PrestaShop\\Module\\Mbo\\Api\\Service\\ServiceExecutorInterface' => __DIR__ . '/../..' . '/src/Api/Service/ServiceExecutorInterface.php',
'PrestaShop\\Module\\Mbo\\Controller\\Admin\\AddonsController' => __DIR__ . '/../..' . '/src/Controller/Admin/AddonsController.php',
'PrestaShop\\Module\\Mbo\\Controller\\Admin\\ModuleCatalogController' => __DIR__ . '/../..' . '/src/Controller/Admin/ModuleCatalogController.php',
'PrestaShop\\Module\\Mbo\\Controller\\Admin\\ModuleRecommendedController' => __DIR__ . '/../..' . '/src/Controller/Admin/ModuleRecommendedController.php',
'PrestaShop\\Module\\Mbo\\Controller\\Admin\\ThemeCatalogController' => __DIR__ . '/../..' . '/src/Controller/Admin/ThemeCatalogController.php',
'PrestaShop\\Module\\Mbo\\DependencyInjection\\CacheDirectoryProvider' => __DIR__ . '/../..' . '/src/DependencyInjection/CacheDirectoryProvider.php',
'PrestaShop\\Module\\Mbo\\DependencyInjection\\ContainerProvider' => __DIR__ . '/../..' . '/src/DependencyInjection/ContainerProvider.php',
'PrestaShop\\Module\\Mbo\\DependencyInjection\\ServiceContainer' => __DIR__ . '/../..' . '/src/DependencyInjection/ServiceContainer.php',
'PrestaShop\\Module\\Mbo\\Distribution\\BaseClient' => __DIR__ . '/../..' . '/src/Distribution/BaseClient.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Client' => __DIR__ . '/../..' . '/src/Distribution/Client.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Applier' => __DIR__ . '/../..' . '/src/Distribution/Config/Applier.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Appliers\\ConfigApplierInterface' => __DIR__ . '/../..' . '/src/Distribution/Config/Appliers/ConfigApplierInterface.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Appliers\\Factory' => __DIR__ . '/../..' . '/src/Distribution/Config/Appliers/Factory.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Appliers\\ModuleSelectionMenuConfigApplier' => __DIR__ . '/../..' . '/src/Distribution/Config/Appliers/ModuleSelectionMenuConfigApplier.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Appliers\\ThemeCatalogMenuConfigApplier' => __DIR__ . '/../..' . '/src/Distribution/Config/Appliers/ThemeCatalogMenuConfigApplier.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\CommandHandler\\ConfigChangeCommandHandler' => __DIR__ . '/../..' . '/src/Distribution/Config/CommandHandler/ConfigChangeCommandHandler.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\CommandHandler\\VersionChangeApplyConfigCommandHandler' => __DIR__ . '/../..' . '/src/Distribution/Config/CommandHandler/VersionChangeApplyConfigCommandHandler.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Command\\ConfigChangeCommand' => __DIR__ . '/../..' . '/src/Distribution/Config/Command/ConfigChangeCommand.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Command\\VersionChangeApplyConfigCommand' => __DIR__ . '/../..' . '/src/Distribution/Config/Command/VersionChangeApplyConfigCommand.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Config' => __DIR__ . '/../..' . '/src/Distribution/Config/Config.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Exception\\CannotApplyConfigException' => __DIR__ . '/../..' . '/src/Distribution/Config/Exception/CannotApplyConfigException.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Exception\\CannotSaveConfigException' => __DIR__ . '/../..' . '/src/Distribution/Config/Exception/CannotSaveConfigException.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Exception\\InvalidConfigException' => __DIR__ . '/../..' . '/src/Distribution/Config/Exception/InvalidConfigException.php',
'PrestaShop\\Module\\Mbo\\Distribution\\Config\\Factory' => __DIR__ . '/../..' . '/src/Distribution/Config/Factory.php',
'PrestaShop\\Module\\Mbo\\Distribution\\ConnectedClient' => __DIR__ . '/../..' . '/src/Distribution/ConnectedClient.php',
'PrestaShop\\Module\\Mbo\\Exception\\AddonsDownloadModuleException' => __DIR__ . '/../..' . '/src/Exception/AddonsDownloadModuleException.php',
'PrestaShop\\Module\\Mbo\\Exception\\ClientRequestException' => __DIR__ . '/../..' . '/src/Exception/ClientRequestException.php',
'PrestaShop\\Module\\Mbo\\Exception\\DownloadModuleException' => __DIR__ . '/../..' . '/src/Exception/DownloadModuleException.php',
'PrestaShop\\Module\\Mbo\\Exception\\ExpectedServiceNotFoundException' => __DIR__ . '/../..' . '/src/Exception/ExpectedServiceNotFoundException.php',
'PrestaShop\\Module\\Mbo\\Exception\\FileOperationException' => __DIR__ . '/../..' . '/src/Exception/FileOperationException.php',
'PrestaShop\\Module\\Mbo\\Handler\\ErrorHandler\\ErrorHandler' => __DIR__ . '/../..' . '/src/Handler/ErrorHandler/ErrorHandler.php',
'PrestaShop\\Module\\Mbo\\Handler\\ErrorHandler\\ErrorHandlerInterface' => __DIR__ . '/../..' . '/src/Handler/ErrorHandler/ErrorHandlerInterface.php',
'PrestaShop\\Module\\Mbo\\Helpers\\AddonsApiHelper' => __DIR__ . '/../..' . '/src/Helpers/AddonsApiHelper.php',
'PrestaShop\\Module\\Mbo\\Helpers\\Config' => __DIR__ . '/../..' . '/src/Helpers/Config.php',
'PrestaShop\\Module\\Mbo\\Helpers\\EnvHelper' => __DIR__ . '/../..' . '/src/Helpers/EnvHelper.php',
'PrestaShop\\Module\\Mbo\\Helpers\\ErrorHelper' => __DIR__ . '/../..' . '/src/Helpers/ErrorHelper.php',
'PrestaShop\\Module\\Mbo\\Helpers\\ModuleErrorHelper' => __DIR__ . '/../..' . '/src/Helpers/ModuleErrorHelper.php',
'PrestaShop\\Module\\Mbo\\Helpers\\UrlHelper' => __DIR__ . '/../..' . '/src/Helpers/UrlHelper.php',
'PrestaShop\\Module\\Mbo\\Helpers\\Uuid' => __DIR__ . '/../..' . '/src/Helpers/Uuid.php',
'PrestaShop\\Module\\Mbo\\Helpers\\Version' => __DIR__ . '/../..' . '/src/Helpers/Version.php',
'PrestaShop\\Module\\Mbo\\Module\\ActionsManager' => __DIR__ . '/../..' . '/src/Module/ActionsManager.php',
'PrestaShop\\Module\\Mbo\\Module\\Collection' => __DIR__ . '/../..' . '/src/Module/Collection.php',
'PrestaShop\\Module\\Mbo\\Module\\CollectionFactory' => __DIR__ . '/../..' . '/src/Module/CollectionFactory.php',
'PrestaShop\\Module\\Mbo\\Module\\CommandHandler\\ModuleStatusTransitionCommandHandler' => __DIR__ . '/../..' . '/src/Module/CommandHandler/ModuleStatusTransitionCommandHandler.php',
'PrestaShop\\Module\\Mbo\\Module\\Command\\ModuleStatusTransitionCommand' => __DIR__ . '/../..' . '/src/Module/Command/ModuleStatusTransitionCommand.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\ModuleNewVersionNotFoundException' => __DIR__ . '/../..' . '/src/Module/Exception/ModuleNewVersionNotFoundException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\ModuleNotFoundException' => __DIR__ . '/../..' . '/src/Module/Exception/ModuleNotFoundException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\ModuleUpgradeFailedException' => __DIR__ . '/../..' . '/src/Module/Exception/ModuleUpgradeFailedException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\ModuleUpgradeNotNeededException' => __DIR__ . '/../..' . '/src/Module/Exception/ModuleUpgradeNotNeededException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\SourceNotCheckedException' => __DIR__ . '/../..' . '/src/Module/Exception/SourceNotCheckedException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\TransitionCommandToModuleStatusException' => __DIR__ . '/../..' . '/src/Module/Exception/TransitionCommandToModuleStatusException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\TransitionFailedException' => __DIR__ . '/../..' . '/src/Module/Exception/TransitionFailedException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\UnauthorizedModuleTransitionException' => __DIR__ . '/../..' . '/src/Module/Exception/UnauthorizedModuleTransitionException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\UnexpectedModuleSourceContentException' => __DIR__ . '/../..' . '/src/Module/Exception/UnexpectedModuleSourceContentException.php',
'PrestaShop\\Module\\Mbo\\Module\\Exception\\UnknownModuleTransitionCommandException' => __DIR__ . '/../..' . '/src/Module/Exception/UnknownModuleTransitionCommandException.php',
'PrestaShop\\Module\\Mbo\\Module\\FilesManager' => __DIR__ . '/../..' . '/src/Module/FilesManager.php',
'PrestaShop\\Module\\Mbo\\Module\\Filters' => __DIR__ . '/../..' . '/src/Module/Filters.php',
'PrestaShop\\Module\\Mbo\\Module\\FiltersFactory' => __DIR__ . '/../..' . '/src/Module/FiltersFactory.php',
'PrestaShop\\Module\\Mbo\\Module\\FiltersInterface' => __DIR__ . '/../..' . '/src/Module/FiltersInterface.php',
'PrestaShop\\Module\\Mbo\\Module\\Filters\\Device' => __DIR__ . '/../..' . '/src/Module/Filters/Device.php',
'PrestaShop\\Module\\Mbo\\Module\\Filters\\Status' => __DIR__ . '/../..' . '/src/Module/Filters/Status.php',
'PrestaShop\\Module\\Mbo\\Module\\Filters\\Type' => __DIR__ . '/../..' . '/src/Module/Filters/Type.php',
'PrestaShop\\Module\\Mbo\\Module\\Module' => __DIR__ . '/../..' . '/src/Module/Module.php',
'PrestaShop\\Module\\Mbo\\Module\\ModuleBuilder' => __DIR__ . '/../..' . '/src/Module/ModuleBuilder.php',
'PrestaShop\\Module\\Mbo\\Module\\ModuleBuilderInterface' => __DIR__ . '/../..' . '/src/Module/ModuleBuilderInterface.php',
'PrestaShop\\Module\\Mbo\\Module\\ModuleOverrideChecker' => __DIR__ . '/../..' . '/src/Module/ModuleOverrideChecker.php',
'PrestaShop\\Module\\Mbo\\Module\\Repository' => __DIR__ . '/../..' . '/src/Module/Repository.php',
'PrestaShop\\Module\\Mbo\\Module\\RepositoryInterface' => __DIR__ . '/../..' . '/src/Module/RepositoryInterface.php',
'PrestaShop\\Module\\Mbo\\Module\\SourceHandler\\AddonsUrlSourceHandler' => __DIR__ . '/../..' . '/src/Module/SourceHandler/AddonsUrlSourceHandler.php',
'PrestaShop\\Module\\Mbo\\Module\\SourceRetriever\\AddonsUrlSourceRetriever' => __DIR__ . '/../..' . '/src/Module/SourceRetriever/AddonsUrlSourceRetriever.php',
'PrestaShop\\Module\\Mbo\\Module\\SourceRetriever\\SourceRetrieverInterface' => __DIR__ . '/../..' . '/src/Module/SourceRetriever/SourceRetrieverInterface.php',
'PrestaShop\\Module\\Mbo\\Module\\TransitionModule' => __DIR__ . '/../..' . '/src/Module/TransitionModule.php',
'PrestaShop\\Module\\Mbo\\Module\\ValueObject\\ModuleTransitionCommand' => __DIR__ . '/../..' . '/src/Module/ValueObject/ModuleTransitionCommand.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\Exception\\NotAllowedTransitionException' => __DIR__ . '/../..' . '/src/Module/Workflow/Exception/NotAllowedTransitionException.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\Exception\\UnknownStatusException' => __DIR__ . '/../..' . '/src/Module/Workflow/Exception/UnknownStatusException.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\Exception\\UnknownTransitionException' => __DIR__ . '/../..' . '/src/Module/Workflow/Exception/UnknownTransitionException.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\Transition' => __DIR__ . '/../..' . '/src/Module/Workflow/Transition.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\TransitionApplier' => __DIR__ . '/../..' . '/src/Module/Workflow/TransitionApplier.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\TransitionBuilder' => __DIR__ . '/../..' . '/src/Module/Workflow/TransitionBuilder.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\TransitionInterface' => __DIR__ . '/../..' . '/src/Module/Workflow/TransitionInterface.php',
'PrestaShop\\Module\\Mbo\\Module\\Workflow\\TransitionsManager' => __DIR__ . '/../..' . '/src/Module/Workflow/TransitionsManager.php',
'PrestaShop\\Module\\Mbo\\Security\\PermissionChecker' => __DIR__ . '/../..' . '/src/Security/PermissionChecker.php',
'PrestaShop\\Module\\Mbo\\Security\\PermissionCheckerInterface' => __DIR__ . '/../..' . '/src/Security/PermissionCheckerInterface.php',
'PrestaShop\\Module\\Mbo\\Service\\ExternalContentProvider\\ExternalContentProvider' => __DIR__ . '/../..' . '/src/Service/ExternalContentProvider/ExternalContentProvider.php',
'PrestaShop\\Module\\Mbo\\Service\\ExternalContentProvider\\ExternalContentProviderInterface' => __DIR__ . '/../..' . '/src/Service/ExternalContentProvider/ExternalContentProviderInterface.php',
'PrestaShop\\Module\\Mbo\\Service\\HookExceptionHolder' => __DIR__ . '/../..' . '/src/Service/HookExceptionHolder.php',
'PrestaShop\\Module\\Mbo\\Service\\ModulesHelper' => __DIR__ . '/../..' . '/src/Service/ModulesHelper.php',
'PrestaShop\\Module\\Mbo\\Service\\View\\ContextBuilder' => __DIR__ . '/../..' . '/src/Service/View/ContextBuilder.php',
'PrestaShop\\Module\\Mbo\\Service\\View\\InstalledModule' => __DIR__ . '/../..' . '/src/Service/View/InstalledModule.php',
'PrestaShop\\Module\\Mbo\\Tests\\Helpers\\VersionTest' => __DIR__ . '/../..' . '/tests/Helpers/VersionTest.php',
'PrestaShop\\Module\\Mbo\\Tests\\Module\\Filters\\FiltersTest' => __DIR__ . '/../..' . '/tests/Module/Filters/FiltersTest.php',
'PrestaShop\\Module\\Mbo\\Tests\\Module\\TransitionModuleTest' => __DIR__ . '/../..' . '/tests/Module/TransitionModuleTest.php',
'PrestaShop\\Module\\Mbo\\Tests\\Module\\Workflow\\AbstractTransitionTest' => __DIR__ . '/../..' . '/tests/Module/Workflow/AbstractTransitionTest.php',
'PrestaShop\\Module\\Mbo\\Tests\\Module\\Workflow\\TransitionApplierTest' => __DIR__ . '/../..' . '/tests/Module/Workflow/TransitionApplierTest.php',
'PrestaShop\\Module\\Mbo\\Tests\\Module\\Workflow\\TransitionBuilderTest' => __DIR__ . '/../..' . '/tests/Module/Workflow/TransitionBuilderTest.php',
'PrestaShop\\Module\\Mbo\\Traits\\HaveCdcComponent' => __DIR__ . '/../..' . '/src/Traits/HaveCdcComponent.php',
'PrestaShop\\Module\\Mbo\\Traits\\HaveConfigurationPage' => __DIR__ . '/../..' . '/src/Traits/HaveConfigurationPage.php',
'PrestaShop\\Module\\Mbo\\Traits\\HaveTabs' => __DIR__ . '/../..' . '/src/Traits/HaveTabs.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseActionBeforeInstallModule' => __DIR__ . '/../..' . '/src/Traits/Hooks/UseActionBeforeInstallModule.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseActionBeforeUpgradeModule' => __DIR__ . '/../..' . '/src/Traits/Hooks/UseActionBeforeUpgradeModule.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseActionGetAlternativeSearchPanels' => __DIR__ . '/../..' . '/src/Traits/Hooks/UseActionGetAlternativeSearchPanels.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseActionListModules' => __DIR__ . '/../..' . '/src/Traits/Hooks/UseActionListModules.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseDashboardZoneOne' => __DIR__ . '/../..' . '/src/Traits/Hooks/UseDashboardZoneOne.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseDashboardZoneThree' => __DIR__ . '/../..' . '/src/Traits/Hooks/UseDashboardZoneThree.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseDisplayAdminThemesListAfter' => __DIR__ . '/../..' . '/src/Traits/Hooks/UseDisplayAdminThemesListAfter.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseDisplayDashboardTop' => __DIR__ . '/../..' . '/src/Traits/Hooks/UseDisplayDashboardTop.php',
'PrestaShop\\Module\\Mbo\\Traits\\Hooks\\UseDisplayEmptyModuleCategoryExtraMessage' => __DIR__ . '/../..' . '/src/Traits/Hooks/UseDisplayEmptyModuleCategoryExtraMessage.php',
'PrestaShop\\Module\\Mbo\\Traits\\UseHooks' => __DIR__ . '/../..' . '/src/Traits/UseHooks.php',
'PrestaShop\\PsAccountsInstaller\\Installer\\Exception\\InstallerException' => __DIR__ . '/..' . '/prestashop/prestashop-accounts-installer/src/Installer/Exception/InstallerException.php',
'PrestaShop\\PsAccountsInstaller\\Installer\\Exception\\ModuleNotInstalledException' => __DIR__ . '/..' . '/prestashop/prestashop-accounts-installer/src/Installer/Exception/ModuleNotInstalledException.php',
'PrestaShop\\PsAccountsInstaller\\Installer\\Exception\\ModuleVersionException' => __DIR__ . '/..' . '/prestashop/prestashop-accounts-installer/src/Installer/Exception/ModuleVersionException.php',
'PrestaShop\\PsAccountsInstaller\\Installer\\Facade\\PsAccounts' => __DIR__ . '/..' . '/prestashop/prestashop-accounts-installer/src/Installer/Facade/PsAccounts.php',
'PrestaShop\\PsAccountsInstaller\\Installer\\Installer' => __DIR__ . '/..' . '/prestashop/prestashop-accounts-installer/src/Installer/Installer.php',
'PrestaShop\\PsAccountsInstaller\\Installer\\Presenter\\InstallerPresenter' => __DIR__ . '/..' . '/prestashop/prestashop-accounts-installer/src/Installer/Presenter/InstallerPresenter.php',
'Psr\\Container\\ContainerExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerExceptionInterface.php',
'Psr\\Container\\ContainerInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerInterface.php',
'Psr\\Container\\NotFoundExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/NotFoundExceptionInterface.php',
'Psr\\Http\\Client\\ClientExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/ClientExceptionInterface.php',
'Psr\\Http\\Client\\ClientInterface' => __DIR__ . '/..' . '/psr/http-client/src/ClientInterface.php',
'Psr\\Http\\Client\\NetworkExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/NetworkExceptionInterface.php',
'Psr\\Http\\Client\\RequestExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/RequestExceptionInterface.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',
'Psr\\Log\\LoggerAwareInterface' => __DIR__ . '/..' . '/psr/log/src/LoggerAwareInterface.php',
'Psr\\Log\\LoggerAwareTrait' => __DIR__ . '/..' . '/psr/log/src/LoggerAwareTrait.php',
'Psr\\Log\\LoggerInterface' => __DIR__ . '/..' . '/psr/log/src/LoggerInterface.php',
'Psr\\Log\\LoggerTrait' => __DIR__ . '/..' . '/psr/log/src/LoggerTrait.php',
'Psr\\Log\\NullLogger' => __DIR__ . '/..' . '/psr/log/src/NullLogger.php',
'Sentry\\Breadcrumb' => __DIR__ . '/..' . '/sentry/sentry/src/Breadcrumb.php',
'Sentry\\Client' => __DIR__ . '/..' . '/sentry/sentry/src/Client.php',
'Sentry\\ClientBuilder' => __DIR__ . '/..' . '/sentry/sentry/src/ClientBuilder.php',
'Sentry\\ClientBuilderInterface' => __DIR__ . '/..' . '/sentry/sentry/src/ClientBuilderInterface.php',
'Sentry\\ClientInterface' => __DIR__ . '/..' . '/sentry/sentry/src/ClientInterface.php',
'Sentry\\Context\\OsContext' => __DIR__ . '/..' . '/sentry/sentry/src/Context/OsContext.php',
'Sentry\\Context\\RuntimeContext' => __DIR__ . '/..' . '/sentry/sentry/src/Context/RuntimeContext.php',
'Sentry\\Dsn' => __DIR__ . '/..' . '/sentry/sentry/src/Dsn.php',
'Sentry\\ErrorHandler' => __DIR__ . '/..' . '/sentry/sentry/src/ErrorHandler.php',
'Sentry\\Event' => __DIR__ . '/..' . '/sentry/sentry/src/Event.php',
'Sentry\\EventHint' => __DIR__ . '/..' . '/sentry/sentry/src/EventHint.php',
'Sentry\\EventId' => __DIR__ . '/..' . '/sentry/sentry/src/EventId.php',
'Sentry\\EventType' => __DIR__ . '/..' . '/sentry/sentry/src/EventType.php',
'Sentry\\ExceptionDataBag' => __DIR__ . '/..' . '/sentry/sentry/src/ExceptionDataBag.php',
'Sentry\\ExceptionMechanism' => __DIR__ . '/..' . '/sentry/sentry/src/ExceptionMechanism.php',
'Sentry\\Exception\\EventCreationException' => __DIR__ . '/..' . '/sentry/sentry/src/Exception/EventCreationException.php',
'Sentry\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/sentry/sentry/src/Exception/ExceptionInterface.php',
'Sentry\\Exception\\FatalErrorException' => __DIR__ . '/..' . '/sentry/sentry/src/Exception/FatalErrorException.php',
'Sentry\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/sentry/sentry/src/Exception/InvalidArgumentException.php',
'Sentry\\Exception\\JsonException' => __DIR__ . '/..' . '/sentry/sentry/src/Exception/JsonException.php',
'Sentry\\Exception\\SilencedErrorException' => __DIR__ . '/..' . '/sentry/sentry/src/Exception/SilencedErrorException.php',
'Sentry\\Frame' => __DIR__ . '/..' . '/sentry/sentry/src/Frame.php',
'Sentry\\FrameBuilder' => __DIR__ . '/..' . '/sentry/sentry/src/FrameBuilder.php',
'Sentry\\HttpClient\\Authentication\\SentryAuthentication' => __DIR__ . '/..' . '/sentry/sentry/src/HttpClient/Authentication/SentryAuthentication.php',
'Sentry\\HttpClient\\HttpClientFactory' => __DIR__ . '/..' . '/sentry/sentry/src/HttpClient/HttpClientFactory.php',
'Sentry\\HttpClient\\HttpClientFactoryInterface' => __DIR__ . '/..' . '/sentry/sentry/src/HttpClient/HttpClientFactoryInterface.php',
'Sentry\\HttpClient\\Plugin\\GzipEncoderPlugin' => __DIR__ . '/..' . '/sentry/sentry/src/HttpClient/Plugin/GzipEncoderPlugin.php',
'Sentry\\Integration\\AbstractErrorListenerIntegration' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/AbstractErrorListenerIntegration.php',
'Sentry\\Integration\\EnvironmentIntegration' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/EnvironmentIntegration.php',
'Sentry\\Integration\\ErrorListenerIntegration' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/ErrorListenerIntegration.php',
'Sentry\\Integration\\ExceptionListenerIntegration' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/ExceptionListenerIntegration.php',
'Sentry\\Integration\\FatalErrorListenerIntegration' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/FatalErrorListenerIntegration.php',
'Sentry\\Integration\\FrameContextifierIntegration' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/FrameContextifierIntegration.php',
'Sentry\\Integration\\IgnoreErrorsIntegration' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/IgnoreErrorsIntegration.php',
'Sentry\\Integration\\IntegrationInterface' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/IntegrationInterface.php',
'Sentry\\Integration\\IntegrationRegistry' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/IntegrationRegistry.php',
'Sentry\\Integration\\ModulesIntegration' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/ModulesIntegration.php',
'Sentry\\Integration\\RequestFetcher' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/RequestFetcher.php',
'Sentry\\Integration\\RequestFetcherInterface' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/RequestFetcherInterface.php',
'Sentry\\Integration\\RequestIntegration' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/RequestIntegration.php',
'Sentry\\Integration\\TransactionIntegration' => __DIR__ . '/..' . '/sentry/sentry/src/Integration/TransactionIntegration.php',
'Sentry\\Monolog\\BreadcrumbHandler' => __DIR__ . '/..' . '/sentry/sentry/src/Monolog/BreadcrumbHandler.php',
'Sentry\\Monolog\\CompatibilityProcessingHandlerTrait' => __DIR__ . '/..' . '/sentry/sentry/src/Monolog/CompatibilityProcessingHandlerTrait.php',
'Sentry\\Monolog\\Handler' => __DIR__ . '/..' . '/sentry/sentry/src/Monolog/Handler.php',
'Sentry\\Options' => __DIR__ . '/..' . '/sentry/sentry/src/Options.php',
'Sentry\\Response' => __DIR__ . '/..' . '/sentry/sentry/src/Response.php',
'Sentry\\ResponseStatus' => __DIR__ . '/..' . '/sentry/sentry/src/ResponseStatus.php',
'Sentry\\SentrySdk' => __DIR__ . '/..' . '/sentry/sentry/src/SentrySdk.php',
'Sentry\\Serializer\\AbstractSerializer' => __DIR__ . '/..' . '/sentry/sentry/src/Serializer/AbstractSerializer.php',
'Sentry\\Serializer\\PayloadSerializer' => __DIR__ . '/..' . '/sentry/sentry/src/Serializer/PayloadSerializer.php',
'Sentry\\Serializer\\PayloadSerializerInterface' => __DIR__ . '/..' . '/sentry/sentry/src/Serializer/PayloadSerializerInterface.php',
'Sentry\\Serializer\\RepresentationSerializer' => __DIR__ . '/..' . '/sentry/sentry/src/Serializer/RepresentationSerializer.php',
'Sentry\\Serializer\\RepresentationSerializerInterface' => __DIR__ . '/..' . '/sentry/sentry/src/Serializer/RepresentationSerializerInterface.php',
'Sentry\\Serializer\\SerializableInterface' => __DIR__ . '/..' . '/sentry/sentry/src/Serializer/SerializableInterface.php',
'Sentry\\Serializer\\Serializer' => __DIR__ . '/..' . '/sentry/sentry/src/Serializer/Serializer.php',
'Sentry\\Serializer\\SerializerInterface' => __DIR__ . '/..' . '/sentry/sentry/src/Serializer/SerializerInterface.php',
'Sentry\\Severity' => __DIR__ . '/..' . '/sentry/sentry/src/Severity.php',
'Sentry\\Stacktrace' => __DIR__ . '/..' . '/sentry/sentry/src/Stacktrace.php',
'Sentry\\StacktraceBuilder' => __DIR__ . '/..' . '/sentry/sentry/src/StacktraceBuilder.php',
'Sentry\\State\\Hub' => __DIR__ . '/..' . '/sentry/sentry/src/State/Hub.php',
'Sentry\\State\\HubAdapter' => __DIR__ . '/..' . '/sentry/sentry/src/State/HubAdapter.php',
'Sentry\\State\\HubInterface' => __DIR__ . '/..' . '/sentry/sentry/src/State/HubInterface.php',
'Sentry\\State\\Layer' => __DIR__ . '/..' . '/sentry/sentry/src/State/Layer.php',
'Sentry\\State\\Scope' => __DIR__ . '/..' . '/sentry/sentry/src/State/Scope.php',
'Sentry\\Tracing\\DynamicSamplingContext' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/DynamicSamplingContext.php',
'Sentry\\Tracing\\GuzzleTracingMiddleware' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/GuzzleTracingMiddleware.php',
'Sentry\\Tracing\\SamplingContext' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/SamplingContext.php',
'Sentry\\Tracing\\Span' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/Span.php',
'Sentry\\Tracing\\SpanContext' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/SpanContext.php',
'Sentry\\Tracing\\SpanId' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/SpanId.php',
'Sentry\\Tracing\\SpanRecorder' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/SpanRecorder.php',
'Sentry\\Tracing\\SpanStatus' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/SpanStatus.php',
'Sentry\\Tracing\\TraceId' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/TraceId.php',
'Sentry\\Tracing\\Transaction' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/Transaction.php',
'Sentry\\Tracing\\TransactionContext' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/TransactionContext.php',
'Sentry\\Tracing\\TransactionMetadata' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/TransactionMetadata.php',
'Sentry\\Tracing\\TransactionSource' => __DIR__ . '/..' . '/sentry/sentry/src/Tracing/TransactionSource.php',
'Sentry\\Transport\\DefaultTransportFactory' => __DIR__ . '/..' . '/sentry/sentry/src/Transport/DefaultTransportFactory.php',
'Sentry\\Transport\\HttpTransport' => __DIR__ . '/..' . '/sentry/sentry/src/Transport/HttpTransport.php',
'Sentry\\Transport\\NullTransport' => __DIR__ . '/..' . '/sentry/sentry/src/Transport/NullTransport.php',
'Sentry\\Transport\\RateLimiter' => __DIR__ . '/..' . '/sentry/sentry/src/Transport/RateLimiter.php',
'Sentry\\Transport\\TransportFactoryInterface' => __DIR__ . '/..' . '/sentry/sentry/src/Transport/TransportFactoryInterface.php',
'Sentry\\Transport\\TransportInterface' => __DIR__ . '/..' . '/sentry/sentry/src/Transport/TransportInterface.php',
'Sentry\\UserDataBag' => __DIR__ . '/..' . '/sentry/sentry/src/UserDataBag.php',
'Sentry\\Util\\JSON' => __DIR__ . '/..' . '/sentry/sentry/src/Util/JSON.php',
'Sentry\\Util\\PHPVersion' => __DIR__ . '/..' . '/sentry/sentry/src/Util/PHPVersion.php',
'Sentry\\Util\\SentryUid' => __DIR__ . '/..' . '/sentry/sentry/src/Util/SentryUid.php',
'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
'Symfony\\Component\\Dotenv\\Command\\DebugCommand' => __DIR__ . '/..' . '/symfony/dotenv/Command/DebugCommand.php',
'Symfony\\Component\\Dotenv\\Command\\DotenvDumpCommand' => __DIR__ . '/..' . '/symfony/dotenv/Command/DotenvDumpCommand.php',
'Symfony\\Component\\Dotenv\\Dotenv' => __DIR__ . '/..' . '/symfony/dotenv/Dotenv.php',
'Symfony\\Component\\Dotenv\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/dotenv/Exception/ExceptionInterface.php',
'Symfony\\Component\\Dotenv\\Exception\\FormatException' => __DIR__ . '/..' . '/symfony/dotenv/Exception/FormatException.php',
'Symfony\\Component\\Dotenv\\Exception\\FormatExceptionContext' => __DIR__ . '/..' . '/symfony/dotenv/Exception/FormatExceptionContext.php',
'Symfony\\Component\\Dotenv\\Exception\\PathException' => __DIR__ . '/..' . '/symfony/dotenv/Exception/PathException.php',
'Symfony\\Component\\HttpClient\\AmpHttpClient' => __DIR__ . '/..' . '/symfony/http-client/AmpHttpClient.php',
'Symfony\\Component\\HttpClient\\AsyncDecoratorTrait' => __DIR__ . '/..' . '/symfony/http-client/AsyncDecoratorTrait.php',
'Symfony\\Component\\HttpClient\\CachingHttpClient' => __DIR__ . '/..' . '/symfony/http-client/CachingHttpClient.php',
'Symfony\\Component\\HttpClient\\Chunk\\DataChunk' => __DIR__ . '/..' . '/symfony/http-client/Chunk/DataChunk.php',
'Symfony\\Component\\HttpClient\\Chunk\\ErrorChunk' => __DIR__ . '/..' . '/symfony/http-client/Chunk/ErrorChunk.php',
'Symfony\\Component\\HttpClient\\Chunk\\FirstChunk' => __DIR__ . '/..' . '/symfony/http-client/Chunk/FirstChunk.php',
'Symfony\\Component\\HttpClient\\Chunk\\InformationalChunk' => __DIR__ . '/..' . '/symfony/http-client/Chunk/InformationalChunk.php',
'Symfony\\Component\\HttpClient\\Chunk\\LastChunk' => __DIR__ . '/..' . '/symfony/http-client/Chunk/LastChunk.php',
'Symfony\\Component\\HttpClient\\Chunk\\ServerSentEvent' => __DIR__ . '/..' . '/symfony/http-client/Chunk/ServerSentEvent.php',
'Symfony\\Component\\HttpClient\\CurlHttpClient' => __DIR__ . '/..' . '/symfony/http-client/CurlHttpClient.php',
'Symfony\\Component\\HttpClient\\DataCollector\\HttpClientDataCollector' => __DIR__ . '/..' . '/symfony/http-client/DataCollector/HttpClientDataCollector.php',
'Symfony\\Component\\HttpClient\\DecoratorTrait' => __DIR__ . '/..' . '/symfony/http-client/DecoratorTrait.php',
'Symfony\\Component\\HttpClient\\DependencyInjection\\HttpClientPass' => __DIR__ . '/..' . '/symfony/http-client/DependencyInjection/HttpClientPass.php',
'Symfony\\Component\\HttpClient\\EventSourceHttpClient' => __DIR__ . '/..' . '/symfony/http-client/EventSourceHttpClient.php',
'Symfony\\Component\\HttpClient\\Exception\\ClientException' => __DIR__ . '/..' . '/symfony/http-client/Exception/ClientException.php',
'Symfony\\Component\\HttpClient\\Exception\\EventSourceException' => __DIR__ . '/..' . '/symfony/http-client/Exception/EventSourceException.php',
'Symfony\\Component\\HttpClient\\Exception\\HttpExceptionTrait' => __DIR__ . '/..' . '/symfony/http-client/Exception/HttpExceptionTrait.php',
'Symfony\\Component\\HttpClient\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/http-client/Exception/InvalidArgumentException.php',
'Symfony\\Component\\HttpClient\\Exception\\JsonException' => __DIR__ . '/..' . '/symfony/http-client/Exception/JsonException.php',
'Symfony\\Component\\HttpClient\\Exception\\RedirectionException' => __DIR__ . '/..' . '/symfony/http-client/Exception/RedirectionException.php',
'Symfony\\Component\\HttpClient\\Exception\\ServerException' => __DIR__ . '/..' . '/symfony/http-client/Exception/ServerException.php',
'Symfony\\Component\\HttpClient\\Exception\\TimeoutException' => __DIR__ . '/..' . '/symfony/http-client/Exception/TimeoutException.php',
'Symfony\\Component\\HttpClient\\Exception\\TransportException' => __DIR__ . '/..' . '/symfony/http-client/Exception/TransportException.php',
'Symfony\\Component\\HttpClient\\HttpClient' => __DIR__ . '/..' . '/symfony/http-client/HttpClient.php',
'Symfony\\Component\\HttpClient\\HttpClientTrait' => __DIR__ . '/..' . '/symfony/http-client/HttpClientTrait.php',
'Symfony\\Component\\HttpClient\\HttpOptions' => __DIR__ . '/..' . '/symfony/http-client/HttpOptions.php',
'Symfony\\Component\\HttpClient\\HttplugClient' => __DIR__ . '/..' . '/symfony/http-client/HttplugClient.php',
'Symfony\\Component\\HttpClient\\Internal\\AmpBody' => __DIR__ . '/..' . '/symfony/http-client/Internal/AmpBody.php',
'Symfony\\Component\\HttpClient\\Internal\\AmpClientState' => __DIR__ . '/..' . '/symfony/http-client/Internal/AmpClientState.php',
'Symfony\\Component\\HttpClient\\Internal\\AmpListener' => __DIR__ . '/..' . '/symfony/http-client/Internal/AmpListener.php',
'Symfony\\Component\\HttpClient\\Internal\\AmpResolver' => __DIR__ . '/..' . '/symfony/http-client/Internal/AmpResolver.php',
'Symfony\\Component\\HttpClient\\Internal\\Canary' => __DIR__ . '/..' . '/symfony/http-client/Internal/Canary.php',
'Symfony\\Component\\HttpClient\\Internal\\ClientState' => __DIR__ . '/..' . '/symfony/http-client/Internal/ClientState.php',
'Symfony\\Component\\HttpClient\\Internal\\CurlClientState' => __DIR__ . '/..' . '/symfony/http-client/Internal/CurlClientState.php',
'Symfony\\Component\\HttpClient\\Internal\\DnsCache' => __DIR__ . '/..' . '/symfony/http-client/Internal/DnsCache.php',
'Symfony\\Component\\HttpClient\\Internal\\HttplugWaitLoop' => __DIR__ . '/..' . '/symfony/http-client/Internal/HttplugWaitLoop.php',
'Symfony\\Component\\HttpClient\\Internal\\NativeClientState' => __DIR__ . '/..' . '/symfony/http-client/Internal/NativeClientState.php',
'Symfony\\Component\\HttpClient\\Internal\\PushedResponse' => __DIR__ . '/..' . '/symfony/http-client/Internal/PushedResponse.php',
'Symfony\\Component\\HttpClient\\MockHttpClient' => __DIR__ . '/..' . '/symfony/http-client/MockHttpClient.php',
'Symfony\\Component\\HttpClient\\NativeHttpClient' => __DIR__ . '/..' . '/symfony/http-client/NativeHttpClient.php',
'Symfony\\Component\\HttpClient\\NoPrivateNetworkHttpClient' => __DIR__ . '/..' . '/symfony/http-client/NoPrivateNetworkHttpClient.php',
'Symfony\\Component\\HttpClient\\Psr18Client' => __DIR__ . '/..' . '/symfony/http-client/Psr18Client.php',
'Symfony\\Component\\HttpClient\\Response\\AmpResponse' => __DIR__ . '/..' . '/symfony/http-client/Response/AmpResponse.php',
'Symfony\\Component\\HttpClient\\Response\\AsyncContext' => __DIR__ . '/..' . '/symfony/http-client/Response/AsyncContext.php',
'Symfony\\Component\\HttpClient\\Response\\AsyncResponse' => __DIR__ . '/..' . '/symfony/http-client/Response/AsyncResponse.php',
'Symfony\\Component\\HttpClient\\Response\\CommonResponseTrait' => __DIR__ . '/..' . '/symfony/http-client/Response/CommonResponseTrait.php',
'Symfony\\Component\\HttpClient\\Response\\CurlResponse' => __DIR__ . '/..' . '/symfony/http-client/Response/CurlResponse.php',
'Symfony\\Component\\HttpClient\\Response\\HttplugPromise' => __DIR__ . '/..' . '/symfony/http-client/Response/HttplugPromise.php',
'Symfony\\Component\\HttpClient\\Response\\MockResponse' => __DIR__ . '/..' . '/symfony/http-client/Response/MockResponse.php',
'Symfony\\Component\\HttpClient\\Response\\NativeResponse' => __DIR__ . '/..' . '/symfony/http-client/Response/NativeResponse.php',
'Symfony\\Component\\HttpClient\\Response\\ResponseStream' => __DIR__ . '/..' . '/symfony/http-client/Response/ResponseStream.php',
'Symfony\\Component\\HttpClient\\Response\\StreamWrapper' => __DIR__ . '/..' . '/symfony/http-client/Response/StreamWrapper.php',
'Symfony\\Component\\HttpClient\\Response\\StreamableInterface' => __DIR__ . '/..' . '/symfony/http-client/Response/StreamableInterface.php',
'Symfony\\Component\\HttpClient\\Response\\TraceableResponse' => __DIR__ . '/..' . '/symfony/http-client/Response/TraceableResponse.php',
'Symfony\\Component\\HttpClient\\Response\\TransportResponseTrait' => __DIR__ . '/..' . '/symfony/http-client/Response/TransportResponseTrait.php',
'Symfony\\Component\\HttpClient\\Retry\\GenericRetryStrategy' => __DIR__ . '/..' . '/symfony/http-client/Retry/GenericRetryStrategy.php',
'Symfony\\Component\\HttpClient\\Retry\\RetryStrategyInterface' => __DIR__ . '/..' . '/symfony/http-client/Retry/RetryStrategyInterface.php',
'Symfony\\Component\\HttpClient\\RetryableHttpClient' => __DIR__ . '/..' . '/symfony/http-client/RetryableHttpClient.php',
'Symfony\\Component\\HttpClient\\ScopingHttpClient' => __DIR__ . '/..' . '/symfony/http-client/ScopingHttpClient.php',
'Symfony\\Component\\HttpClient\\TraceableHttpClient' => __DIR__ . '/..' . '/symfony/http-client/TraceableHttpClient.php',
'Symfony\\Component\\OptionsResolver\\Debug\\OptionsResolverIntrospector' => __DIR__ . '/..' . '/symfony/options-resolver/Debug/OptionsResolverIntrospector.php',
'Symfony\\Component\\OptionsResolver\\Exception\\AccessException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/AccessException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/ExceptionInterface.php',
'Symfony\\Component\\OptionsResolver\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/InvalidArgumentException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\InvalidOptionsException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/InvalidOptionsException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\MissingOptionsException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/MissingOptionsException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\NoConfigurationException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/NoConfigurationException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\NoSuchOptionException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/NoSuchOptionException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\OptionDefinitionException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/OptionDefinitionException.php',
'Symfony\\Component\\OptionsResolver\\Exception\\UndefinedOptionsException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/UndefinedOptionsException.php',
'Symfony\\Component\\OptionsResolver\\OptionConfigurator' => __DIR__ . '/..' . '/symfony/options-resolver/OptionConfigurator.php',
'Symfony\\Component\\OptionsResolver\\Options' => __DIR__ . '/..' . '/symfony/options-resolver/Options.php',
'Symfony\\Component\\OptionsResolver\\OptionsResolver' => __DIR__ . '/..' . '/symfony/options-resolver/OptionsResolver.php',
'Symfony\\Component\\String\\AbstractString' => __DIR__ . '/..' . '/symfony/string/AbstractString.php',
'Symfony\\Component\\String\\AbstractUnicodeString' => __DIR__ . '/..' . '/symfony/string/AbstractUnicodeString.php',
'Symfony\\Component\\String\\ByteString' => __DIR__ . '/..' . '/symfony/string/ByteString.php',
'Symfony\\Component\\String\\CodePointString' => __DIR__ . '/..' . '/symfony/string/CodePointString.php',
'Symfony\\Component\\String\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/string/Exception/ExceptionInterface.php',
'Symfony\\Component\\String\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/string/Exception/InvalidArgumentException.php',
'Symfony\\Component\\String\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/string/Exception/RuntimeException.php',
'Symfony\\Component\\String\\Inflector\\EnglishInflector' => __DIR__ . '/..' . '/symfony/string/Inflector/EnglishInflector.php',
'Symfony\\Component\\String\\Inflector\\FrenchInflector' => __DIR__ . '/..' . '/symfony/string/Inflector/FrenchInflector.php',
'Symfony\\Component\\String\\Inflector\\InflectorInterface' => __DIR__ . '/..' . '/symfony/string/Inflector/InflectorInterface.php',
'Symfony\\Component\\String\\LazyString' => __DIR__ . '/..' . '/symfony/string/LazyString.php',
'Symfony\\Component\\String\\Slugger\\AsciiSlugger' => __DIR__ . '/..' . '/symfony/string/Slugger/AsciiSlugger.php',
'Symfony\\Component\\String\\Slugger\\SluggerInterface' => __DIR__ . '/..' . '/symfony/string/Slugger/SluggerInterface.php',
'Symfony\\Component\\String\\UnicodeString' => __DIR__ . '/..' . '/symfony/string/UnicodeString.php',
'Symfony\\Component\\Workflow\\Attribute\\AsAnnounceListener' => __DIR__ . '/..' . '/symfony/workflow/Attribute/AsAnnounceListener.php',
'Symfony\\Component\\Workflow\\Attribute\\AsCompletedListener' => __DIR__ . '/..' . '/symfony/workflow/Attribute/AsCompletedListener.php',
'Symfony\\Component\\Workflow\\Attribute\\AsEnterListener' => __DIR__ . '/..' . '/symfony/workflow/Attribute/AsEnterListener.php',
'Symfony\\Component\\Workflow\\Attribute\\AsEnteredListener' => __DIR__ . '/..' . '/symfony/workflow/Attribute/AsEnteredListener.php',
'Symfony\\Component\\Workflow\\Attribute\\AsGuardListener' => __DIR__ . '/..' . '/symfony/workflow/Attribute/AsGuardListener.php',
'Symfony\\Component\\Workflow\\Attribute\\AsLeaveListener' => __DIR__ . '/..' . '/symfony/workflow/Attribute/AsLeaveListener.php',
'Symfony\\Component\\Workflow\\Attribute\\AsTransitionListener' => __DIR__ . '/..' . '/symfony/workflow/Attribute/AsTransitionListener.php',
'Symfony\\Component\\Workflow\\Attribute\\BuildEventNameTrait' => __DIR__ . '/..' . '/symfony/workflow/Attribute/BuildEventNameTrait.php',
'Symfony\\Component\\Workflow\\DataCollector\\WorkflowDataCollector' => __DIR__ . '/..' . '/symfony/workflow/DataCollector/WorkflowDataCollector.php',
'Symfony\\Component\\Workflow\\Debug\\TraceableWorkflow' => __DIR__ . '/..' . '/symfony/workflow/Debug/TraceableWorkflow.php',
'Symfony\\Component\\Workflow\\Definition' => __DIR__ . '/..' . '/symfony/workflow/Definition.php',
'Symfony\\Component\\Workflow\\DefinitionBuilder' => __DIR__ . '/..' . '/symfony/workflow/DefinitionBuilder.php',
'Symfony\\Component\\Workflow\\DependencyInjection\\WorkflowDebugPass' => __DIR__ . '/..' . '/symfony/workflow/DependencyInjection/WorkflowDebugPass.php',
'Symfony\\Component\\Workflow\\DependencyInjection\\WorkflowGuardListenerPass' => __DIR__ . '/..' . '/symfony/workflow/DependencyInjection/WorkflowGuardListenerPass.php',
'Symfony\\Component\\Workflow\\Dumper\\DumperInterface' => __DIR__ . '/..' . '/symfony/workflow/Dumper/DumperInterface.php',
'Symfony\\Component\\Workflow\\Dumper\\GraphvizDumper' => __DIR__ . '/..' . '/symfony/workflow/Dumper/GraphvizDumper.php',
'Symfony\\Component\\Workflow\\Dumper\\MermaidDumper' => __DIR__ . '/..' . '/symfony/workflow/Dumper/MermaidDumper.php',
'Symfony\\Component\\Workflow\\Dumper\\PlantUmlDumper' => __DIR__ . '/..' . '/symfony/workflow/Dumper/PlantUmlDumper.php',
'Symfony\\Component\\Workflow\\Dumper\\StateMachineGraphvizDumper' => __DIR__ . '/..' . '/symfony/workflow/Dumper/StateMachineGraphvizDumper.php',
'Symfony\\Component\\Workflow\\EventListener\\AuditTrailListener' => __DIR__ . '/..' . '/symfony/workflow/EventListener/AuditTrailListener.php',
'Symfony\\Component\\Workflow\\EventListener\\ExpressionLanguage' => __DIR__ . '/..' . '/symfony/workflow/EventListener/ExpressionLanguage.php',
'Symfony\\Component\\Workflow\\EventListener\\GuardExpression' => __DIR__ . '/..' . '/symfony/workflow/EventListener/GuardExpression.php',
'Symfony\\Component\\Workflow\\EventListener\\GuardListener' => __DIR__ . '/..' . '/symfony/workflow/EventListener/GuardListener.php',
'Symfony\\Component\\Workflow\\Event\\AnnounceEvent' => __DIR__ . '/..' . '/symfony/workflow/Event/AnnounceEvent.php',
'Symfony\\Component\\Workflow\\Event\\CompletedEvent' => __DIR__ . '/..' . '/symfony/workflow/Event/CompletedEvent.php',
'Symfony\\Component\\Workflow\\Event\\EnterEvent' => __DIR__ . '/..' . '/symfony/workflow/Event/EnterEvent.php',
'Symfony\\Component\\Workflow\\Event\\EnteredEvent' => __DIR__ . '/..' . '/symfony/workflow/Event/EnteredEvent.php',
'Symfony\\Component\\Workflow\\Event\\Event' => __DIR__ . '/..' . '/symfony/workflow/Event/Event.php',
'Symfony\\Component\\Workflow\\Event\\GuardEvent' => __DIR__ . '/..' . '/symfony/workflow/Event/GuardEvent.php',
'Symfony\\Component\\Workflow\\Event\\LeaveEvent' => __DIR__ . '/..' . '/symfony/workflow/Event/LeaveEvent.php',
'Symfony\\Component\\Workflow\\Event\\TransitionEvent' => __DIR__ . '/..' . '/symfony/workflow/Event/TransitionEvent.php',
'Symfony\\Component\\Workflow\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/workflow/Exception/ExceptionInterface.php',
'Symfony\\Component\\Workflow\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/workflow/Exception/InvalidArgumentException.php',
'Symfony\\Component\\Workflow\\Exception\\InvalidDefinitionException' => __DIR__ . '/..' . '/symfony/workflow/Exception/InvalidDefinitionException.php',
'Symfony\\Component\\Workflow\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/workflow/Exception/LogicException.php',
'Symfony\\Component\\Workflow\\Exception\\NotEnabledTransitionException' => __DIR__ . '/..' . '/symfony/workflow/Exception/NotEnabledTransitionException.php',
'Symfony\\Component\\Workflow\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/workflow/Exception/RuntimeException.php',
'Symfony\\Component\\Workflow\\Exception\\TransitionException' => __DIR__ . '/..' . '/symfony/workflow/Exception/TransitionException.php',
'Symfony\\Component\\Workflow\\Exception\\UndefinedTransitionException' => __DIR__ . '/..' . '/symfony/workflow/Exception/UndefinedTransitionException.php',
'Symfony\\Component\\Workflow\\Marking' => __DIR__ . '/..' . '/symfony/workflow/Marking.php',
'Symfony\\Component\\Workflow\\MarkingStore\\MarkingStoreInterface' => __DIR__ . '/..' . '/symfony/workflow/MarkingStore/MarkingStoreInterface.php',
'Symfony\\Component\\Workflow\\MarkingStore\\MethodMarkingStore' => __DIR__ . '/..' . '/symfony/workflow/MarkingStore/MethodMarkingStore.php',
'Symfony\\Component\\Workflow\\Metadata\\GetMetadataTrait' => __DIR__ . '/..' . '/symfony/workflow/Metadata/GetMetadataTrait.php',
'Symfony\\Component\\Workflow\\Metadata\\InMemoryMetadataStore' => __DIR__ . '/..' . '/symfony/workflow/Metadata/InMemoryMetadataStore.php',
'Symfony\\Component\\Workflow\\Metadata\\MetadataStoreInterface' => __DIR__ . '/..' . '/symfony/workflow/Metadata/MetadataStoreInterface.php',
'Symfony\\Component\\Workflow\\Registry' => __DIR__ . '/..' . '/symfony/workflow/Registry.php',
'Symfony\\Component\\Workflow\\StateMachine' => __DIR__ . '/..' . '/symfony/workflow/StateMachine.php',
'Symfony\\Component\\Workflow\\SupportStrategy\\InstanceOfSupportStrategy' => __DIR__ . '/..' . '/symfony/workflow/SupportStrategy/InstanceOfSupportStrategy.php',
'Symfony\\Component\\Workflow\\SupportStrategy\\WorkflowSupportStrategyInterface' => __DIR__ . '/..' . '/symfony/workflow/SupportStrategy/WorkflowSupportStrategyInterface.php',
'Symfony\\Component\\Workflow\\Transition' => __DIR__ . '/..' . '/symfony/workflow/Transition.php',
'Symfony\\Component\\Workflow\\TransitionBlocker' => __DIR__ . '/..' . '/symfony/workflow/TransitionBlocker.php',
'Symfony\\Component\\Workflow\\TransitionBlockerList' => __DIR__ . '/..' . '/symfony/workflow/TransitionBlockerList.php',
'Symfony\\Component\\Workflow\\Validator\\DefinitionValidatorInterface' => __DIR__ . '/..' . '/symfony/workflow/Validator/DefinitionValidatorInterface.php',
'Symfony\\Component\\Workflow\\Validator\\StateMachineValidator' => __DIR__ . '/..' . '/symfony/workflow/Validator/StateMachineValidator.php',
'Symfony\\Component\\Workflow\\Validator\\WorkflowValidator' => __DIR__ . '/..' . '/symfony/workflow/Validator/WorkflowValidator.php',
'Symfony\\Component\\Workflow\\Workflow' => __DIR__ . '/..' . '/symfony/workflow/Workflow.php',
'Symfony\\Component\\Workflow\\WorkflowEvents' => __DIR__ . '/..' . '/symfony/workflow/WorkflowEvents.php',
'Symfony\\Component\\Workflow\\WorkflowInterface' => __DIR__ . '/..' . '/symfony/workflow/WorkflowInterface.php',
'Symfony\\Contracts\\HttpClient\\ChunkInterface' => __DIR__ . '/..' . '/symfony/http-client-contracts/ChunkInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\ClientExceptionInterface' => __DIR__ . '/..' . '/symfony/http-client-contracts/Exception/ClientExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\DecodingExceptionInterface' => __DIR__ . '/..' . '/symfony/http-client-contracts/Exception/DecodingExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/http-client-contracts/Exception/ExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\HttpExceptionInterface' => __DIR__ . '/..' . '/symfony/http-client-contracts/Exception/HttpExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\RedirectionExceptionInterface' => __DIR__ . '/..' . '/symfony/http-client-contracts/Exception/RedirectionExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\ServerExceptionInterface' => __DIR__ . '/..' . '/symfony/http-client-contracts/Exception/ServerExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\TimeoutExceptionInterface' => __DIR__ . '/..' . '/symfony/http-client-contracts/Exception/TimeoutExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\Exception\\TransportExceptionInterface' => __DIR__ . '/..' . '/symfony/http-client-contracts/Exception/TransportExceptionInterface.php',
'Symfony\\Contracts\\HttpClient\\HttpClientInterface' => __DIR__ . '/..' . '/symfony/http-client-contracts/HttpClientInterface.php',
'Symfony\\Contracts\\HttpClient\\ResponseInterface' => __DIR__ . '/..' . '/symfony/http-client-contracts/ResponseInterface.php',
'Symfony\\Contracts\\HttpClient\\ResponseStreamInterface' => __DIR__ . '/..' . '/symfony/http-client-contracts/ResponseStreamInterface.php',
'Symfony\\Contracts\\Service\\Attribute\\Required' => __DIR__ . '/..' . '/symfony/service-contracts/Attribute/Required.php',
'Symfony\\Contracts\\Service\\Attribute\\SubscribedService' => __DIR__ . '/..' . '/symfony/service-contracts/Attribute/SubscribedService.php',
'Symfony\\Contracts\\Service\\ResetInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ResetInterface.php',
'Symfony\\Contracts\\Service\\ServiceCollectionInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceCollectionInterface.php',
'Symfony\\Contracts\\Service\\ServiceLocatorTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceLocatorTrait.php',
'Symfony\\Contracts\\Service\\ServiceMethodsSubscriberTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceMethodsSubscriberTrait.php',
'Symfony\\Contracts\\Service\\ServiceProviderInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceProviderInterface.php',
'Symfony\\Contracts\\Service\\ServiceSubscriberInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceSubscriberInterface.php',
'Symfony\\Contracts\\Service\\ServiceSubscriberTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceSubscriberTrait.php',
'Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__ . '/..' . '/symfony/polyfill-ctype/Ctype.php',
'Symfony\\Polyfill\\Intl\\Grapheme\\Grapheme' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/Grapheme.php',
'Symfony\\Polyfill\\Intl\\Normalizer\\Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Normalizer.php',
'Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/Mbstring.php',
'Symfony\\Polyfill\\Php80\\Php80' => __DIR__ . '/..' . '/symfony/polyfill-php80/Php80.php',
'Symfony\\Polyfill\\Php80\\PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/PhpToken.php',
'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
'apiPsMboController' => __DIR__ . '/../..' . '/controllers/admin/apiPsMbo.php',
'apiSecurityPsMboController' => __DIR__ . '/../..' . '/controllers/admin/apiSecurityPsMbo.php',
'ps_mbo' => __DIR__ . '/../..' . '/ps_mbo.php',
);
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit5fbead78089182978609c09444be406e::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit5fbead78089182978609c09444be406e::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit5fbead78089182978609c09444be406e::$classMap;
}, null, ClassLoader::class);
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,372 @@
<?php return array(
'root' => array(
'name' => 'prestashop/ps_mbo',
'pretty_version' => 'v5.2.2',
'version' => '5.2.2.0',
'reference' => '759411ccc6003b7054b96421c48b0545cc40744e',
'type' => 'prestashop-module',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev' => false,
),
'versions' => array(
'clue/stream-filter' => array(
'pretty_version' => 'v1.6.0',
'version' => '1.6.0.0',
'reference' => 'd6169430c7731d8509da7aecd0af756a5747b78e',
'type' => 'library',
'install_path' => __DIR__ . '/../clue/stream-filter',
'aliases' => array(),
'dev_requirement' => false,
),
'firebase/php-jwt' => array(
'pretty_version' => 'v6.3.1',
'version' => '6.3.1.0',
'reference' => 'ddfaddcb520488b42bca3a75e17e9dd53c3667da',
'type' => 'library',
'install_path' => __DIR__ . '/../firebase/php-jwt',
'aliases' => array(),
'dev_requirement' => false,
),
'guzzlehttp/promises' => array(
'pretty_version' => '1.5.3',
'version' => '1.5.3.0',
'reference' => '67ab6e18aaa14d753cc148911d273f6e6cb6721e',
'type' => 'library',
'install_path' => __DIR__ . '/../guzzlehttp/promises',
'aliases' => array(),
'dev_requirement' => false,
),
'guzzlehttp/psr7' => array(
'pretty_version' => '2.7.0',
'version' => '2.7.0.0',
'reference' => 'a70f5c95fb43bc83f07c9c948baa0dc1829bf201',
'type' => 'library',
'install_path' => __DIR__ . '/../guzzlehttp/psr7',
'aliases' => array(),
'dev_requirement' => false,
),
'http-interop/http-factory-guzzle' => array(
'pretty_version' => '1.1.1',
'version' => '1.1.1.0',
'reference' => '6e1efa1e020bf1c47cf0f13654e8ef9efb1463b3',
'type' => 'library',
'install_path' => __DIR__ . '/../http-interop/http-factory-guzzle',
'aliases' => array(),
'dev_requirement' => false,
),
'jean85/pretty-package-versions' => array(
'pretty_version' => '2.0.5',
'version' => '2.0.5.0',
'reference' => 'ae547e455a3d8babd07b96966b17d7fd21d9c6af',
'type' => 'library',
'install_path' => __DIR__ . '/../jean85/pretty-package-versions',
'aliases' => array(),
'dev_requirement' => false,
),
'php-http/async-client-implementation' => array(
'dev_requirement' => false,
'provided' => array(
0 => '*',
),
),
'php-http/client-common' => array(
'pretty_version' => '2.6.0',
'version' => '2.6.0.0',
'reference' => '45db684cd4e186dcdc2b9c06b22970fe123796c0',
'type' => 'library',
'install_path' => __DIR__ . '/../php-http/client-common',
'aliases' => array(),
'dev_requirement' => false,
),
'php-http/client-implementation' => array(
'dev_requirement' => false,
'provided' => array(
0 => '*',
),
),
'php-http/discovery' => array(
'pretty_version' => '1.14.3',
'version' => '1.14.3.0',
'reference' => '31d8ee46d0215108df16a8527c7438e96a4d7735',
'type' => 'library',
'install_path' => __DIR__ . '/../php-http/discovery',
'aliases' => array(),
'dev_requirement' => false,
),
'php-http/httplug' => array(
'pretty_version' => '2.3.0',
'version' => '2.3.0.0',
'reference' => 'f640739f80dfa1152533976e3c112477f69274eb',
'type' => 'library',
'install_path' => __DIR__ . '/../php-http/httplug',
'aliases' => array(),
'dev_requirement' => false,
),
'php-http/message' => array(
'pretty_version' => '1.13.0',
'version' => '1.13.0.0',
'reference' => '7886e647a30a966a1a8d1dad1845b71ca8678361',
'type' => 'library',
'install_path' => __DIR__ . '/../php-http/message',
'aliases' => array(),
'dev_requirement' => false,
),
'php-http/message-factory' => array(
'pretty_version' => 'v1.0.2',
'version' => '1.0.2.0',
'reference' => 'a478cb11f66a6ac48d8954216cfed9aa06a501a1',
'type' => 'library',
'install_path' => __DIR__ . '/../php-http/message-factory',
'aliases' => array(),
'dev_requirement' => false,
),
'php-http/message-factory-implementation' => array(
'dev_requirement' => false,
'provided' => array(
0 => '1.0',
),
),
'php-http/promise' => array(
'pretty_version' => '1.1.0',
'version' => '1.1.0.0',
'reference' => '4c4c1f9b7289a2ec57cde7f1e9762a5789506f88',
'type' => 'library',
'install_path' => __DIR__ . '/../php-http/promise',
'aliases' => array(),
'dev_requirement' => false,
),
'prestashop/prestashop-accounts-installer' => array(
'pretty_version' => 'v1.0.1',
'version' => '1.0.1.0',
'reference' => 'f038af2408968d1045330b32aa1fed65fcaf4c9b',
'type' => 'library',
'install_path' => __DIR__ . '/../prestashop/prestashop-accounts-installer',
'aliases' => array(),
'dev_requirement' => false,
),
'prestashop/ps_mbo' => array(
'pretty_version' => 'v5.2.2',
'version' => '5.2.2.0',
'reference' => '759411ccc6003b7054b96421c48b0545cc40744e',
'type' => 'prestashop-module',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev_requirement' => false,
),
'psr/container' => array(
'pretty_version' => '2.0.2',
'version' => '2.0.2.0',
'reference' => 'c71ecc56dfe541dbd90c5360474fbc405f8d5963',
'type' => 'library',
'install_path' => __DIR__ . '/../psr/container',
'aliases' => array(),
'dev_requirement' => false,
),
'psr/http-client' => array(
'pretty_version' => '1.0.3',
'version' => '1.0.3.0',
'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90',
'type' => 'library',
'install_path' => __DIR__ . '/../psr/http-client',
'aliases' => array(),
'dev_requirement' => false,
),
'psr/http-client-implementation' => array(
'dev_requirement' => false,
'provided' => array(
0 => '1.0',
),
),
'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',
1 => '^1.0',
),
),
'psr/http-message' => array(
'pretty_version' => '1.1',
'version' => '1.1.0.0',
'reference' => 'cb6ce4845ce34a8ad9e68117c10ee90a29919eba',
'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,
),
'sentry/sdk' => array(
'pretty_version' => '3.3.0',
'version' => '3.3.0.0',
'reference' => 'd0678fc7274dbb03046ed05cb24eb92945bedf8e',
'type' => 'metapackage',
'install_path' => null,
'aliases' => array(),
'dev_requirement' => false,
),
'sentry/sentry' => array(
'pretty_version' => '3.11.0',
'version' => '3.11.0.0',
'reference' => '91bd6e54d9352754bbdd1d800d2b88618f8130d4',
'type' => 'library',
'install_path' => __DIR__ . '/../sentry/sentry',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/deprecation-contracts' => array(
'pretty_version' => 'v3.5.1',
'version' => '3.5.1.0',
'reference' => '74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/dotenv' => array(
'pretty_version' => 'v6.4.13',
'version' => '6.4.13.0',
'reference' => '436ae2dd89360fea8c7d5ff3f48ecf523c80bfb4',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/dotenv',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/http-client' => array(
'pretty_version' => 'v6.2.13',
'version' => '6.2.13.0',
'reference' => '297374a399ce6852d5905d92a1351df00bb9dd10',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/http-client',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/http-client-contracts' => array(
'pretty_version' => 'v3.5.0',
'version' => '3.5.0.0',
'reference' => '20414d96f391677bf80078aa55baece78b82647d',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/http-client-contracts',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/http-client-implementation' => array(
'dev_requirement' => false,
'provided' => array(
0 => '3.0',
),
),
'symfony/options-resolver' => array(
'pretty_version' => 'v6.4.13',
'version' => '6.4.13.0',
'reference' => '0a62a9f2504a8dd27083f89d21894ceb01cc59db',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/options-resolver',
'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-intl-grapheme' => array(
'pretty_version' => 'v1.31.0',
'version' => '1.31.0.0',
'reference' => 'b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/polyfill-intl-normalizer' => array(
'pretty_version' => 'v1.31.0',
'version' => '1.31.0.0',
'reference' => '3833d7255cc303546435cb650316bff708a1c75c',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer',
'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,
),
'symfony/polyfill-php80' => array(
'pretty_version' => 'v1.31.0',
'version' => '1.31.0.0',
'reference' => '60328e362d4c2c802a54fcbf04f9d3fb892b4cf8',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/polyfill-php80',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/service-contracts' => array(
'pretty_version' => 'v3.5.0',
'version' => '3.5.0.0',
'reference' => 'bd1d9e59a81d8fa4acdcea3f617c581f7475a80f',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/service-contracts',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/string' => array(
'pretty_version' => 'v6.4.13',
'version' => '6.4.13.0',
'reference' => '38371c60c71c72b3d64d8d76f6b1bb81a2cc3627',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/string',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/workflow' => array(
'pretty_version' => 'v6.4.13',
'version' => '6.4.13.0',
'reference' => 'd7b0d33f617e8351069b7c89c873884cf299b079',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/workflow',
'aliases' => array(),
'dev_requirement' => false,
),
),
);

View File

@@ -0,0 +1,25 @@
<?php
// platform_check.php @generated by Composer
$issues = array();
if (!(PHP_VERSION_ID >= 80100)) {
$issues[] = 'Your Composer dependencies require a PHP version ">= 8.1.0". You are running ' . PHP_VERSION . '.';
}
if ($issues) {
if (!headers_sent()) {
header('HTTP/1.1 500 Internal Server Error');
}
if (!ini_get('display_errors')) {
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
} elseif (!headers_sent()) {
echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
}
}
throw new \RuntimeException(
'Composer detected issues in your platform: ' . implode(' ', $issues)
);
}