Add InPost Pay integration to admin templates

- Created a new template for the cart rule form with custom label, switch, and choice widgets.
- Implemented the InPost Pay block in the order details template for displaying delivery method, APM, and VAT invoice request.
- Added legacy support for the order details template to maintain compatibility with older PrestaShop versions.
This commit is contained in:
2025-09-14 14:38:09 +02:00
parent d895f86a03
commit 4066f6fa31
1086 changed files with 76598 additions and 6 deletions

View File

@@ -0,0 +1,585 @@
<?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 */
private $vendorDir;
// PSR-4
/**
* @var array[]
* @psalm-var array<string, array<string, int>>
*/
private $prefixLengthsPsr4 = array();
/**
* @var array[]
* @psalm-var array<string, array<int, string>>
*/
private $prefixDirsPsr4 = array();
/**
* @var array[]
* @psalm-var array<string, string>
*/
private $fallbackDirsPsr4 = array();
// PSR-0
/**
* @var array[]
* @psalm-var array<string, array<string, string[]>>
*/
private $prefixesPsr0 = array();
/**
* @var array[]
* @psalm-var array<string, string>
*/
private $fallbackDirsPsr0 = array();
/** @var bool */
private $useIncludePath = false;
/**
* @var string[]
* @psalm-var array<string, string>
*/
private $classMap = array();
/** @var bool */
private $classMapAuthoritative = false;
/**
* @var bool[]
* @psalm-var array<string, bool>
*/
private $missingClasses = array();
/** @var ?string */
private $apcuPrefix;
/**
* @var self[]
*/
private static $registeredLoaders = array();
/**
* @param ?string $vendorDir
*/
public function __construct($vendorDir = null)
{
$this->vendorDir = $vendorDir;
self::initializeIncludeClosure();
}
/**
* @return string[]
*/
public function getPrefixes()
{
if (!empty($this->prefixesPsr0)) {
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
}
return array();
}
/**
* @return array[]
* @psalm-return array<string, array<int, string>>
*/
public function getPrefixesPsr4()
{
return $this->prefixDirsPsr4;
}
/**
* @return array[]
* @psalm-return array<string, string>
*/
public function getFallbackDirs()
{
return $this->fallbackDirsPsr0;
}
/**
* @return array[]
* @psalm-return array<string, string>
*/
public function getFallbackDirsPsr4()
{
return $this->fallbackDirsPsr4;
}
/**
* @return string[] Array of classname => path
* @psalm-return array<string, string>
*/
public function getClassMap()
{
return $this->classMap;
}
/**
* @param string[] $classMap Class to filename map
* @psalm-param array<string, string> $classMap
*
* @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 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)
{
if (!$prefix) {
if ($prepend) {
$this->fallbackDirsPsr0 = array_merge(
(array) $paths,
$this->fallbackDirsPsr0
);
} else {
$this->fallbackDirsPsr0 = array_merge(
$this->fallbackDirsPsr0,
(array) $paths
);
}
return;
}
$first = $prefix[0];
if (!isset($this->prefixesPsr0[$first][$prefix])) {
$this->prefixesPsr0[$first][$prefix] = (array) $paths;
return;
}
if ($prepend) {
$this->prefixesPsr0[$first][$prefix] = array_merge(
(array) $paths,
$this->prefixesPsr0[$first][$prefix]
);
} else {
$this->prefixesPsr0[$first][$prefix] = array_merge(
$this->prefixesPsr0[$first][$prefix],
(array) $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 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)
{
if (!$prefix) {
// Register directories for the root namespace.
if ($prepend) {
$this->fallbackDirsPsr4 = array_merge(
(array) $paths,
$this->fallbackDirsPsr4
);
} else {
$this->fallbackDirsPsr4 = array_merge(
$this->fallbackDirsPsr4,
(array) $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] = (array) $paths;
} elseif ($prepend) {
// Prepend directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
(array) $paths,
$this->prefixDirsPsr4[$prefix]
);
} else {
// Append directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
$this->prefixDirsPsr4[$prefix],
(array) $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 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 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 indexed by their corresponding vendor directories.
*
* @return 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,352 @@
<?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 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|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 || empty($installed['versions'][$packageName]['dev_requirement']);
}
}
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($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();
}
/**
* @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();
if (self::$canGetVendors) {
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
if (isset(self::$installedByVendor[$vendorDir])) {
$installed[] = self::$installedByVendor[$vendorDir];
} elseif (is_file($vendorDir.'/composer/installed.php')) {
$installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
self::$installed = $installed[count($installed) - 1];
}
}
}
}
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 = require __DIR__ . '/installed.php';
} else {
self::$installed = array();
}
}
$installed[] = self::$installed;
return $installed;
}
}

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,897 @@
<?php
// autoload_classmap.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
'Http\\Message\\MessageFactory' => $vendorDir . '/php-http/message-factory/src/MessageFactory.php',
'Http\\Message\\RequestFactory' => $vendorDir . '/php-http/message-factory/src/RequestFactory.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\\UriFactory' => $vendorDir . '/php-http/message-factory/src/UriFactory.php',
'MyCLabs\\Enum\\Enum' => $vendorDir . '/myclabs/php-enum/src/Enum.php',
'MyCLabs\\Enum\\PHPUnit\\Comparator' => $vendorDir . '/myclabs/php-enum/src/PHPUnit/Comparator.php',
'Nyholm\\Psr7\\Factory\\HttplugFactory' => $vendorDir . '/nyholm/psr7/src/Factory/HttplugFactory.php',
'Nyholm\\Psr7\\Factory\\Psr17Factory' => $vendorDir . '/nyholm/psr7/src/Factory/Psr17Factory.php',
'Nyholm\\Psr7\\MessageTrait' => $vendorDir . '/nyholm/psr7/src/MessageTrait.php',
'Nyholm\\Psr7\\Request' => $vendorDir . '/nyholm/psr7/src/Request.php',
'Nyholm\\Psr7\\RequestTrait' => $vendorDir . '/nyholm/psr7/src/RequestTrait.php',
'Nyholm\\Psr7\\Response' => $vendorDir . '/nyholm/psr7/src/Response.php',
'Nyholm\\Psr7\\ServerRequest' => $vendorDir . '/nyholm/psr7/src/ServerRequest.php',
'Nyholm\\Psr7\\Stream' => $vendorDir . '/nyholm/psr7/src/Stream.php',
'Nyholm\\Psr7\\UploadedFile' => $vendorDir . '/nyholm/psr7/src/UploadedFile.php',
'Nyholm\\Psr7\\Uri' => $vendorDir . '/nyholm/psr7/src/Uri.php',
'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
'Psr\\Clock\\ClockInterface' => $vendorDir . '/psr/clock/src/ClockInterface.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\\SimpleCache\\CacheException' => $vendorDir . '/psr/simple-cache/src/CacheException.php',
'Psr\\SimpleCache\\CacheInterface' => $vendorDir . '/psr/simple-cache/src/CacheInterface.php',
'Psr\\SimpleCache\\InvalidArgumentException' => $vendorDir . '/psr/simple-cache/src/InvalidArgumentException.php',
'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
'Symfony\\Contracts\\Service\\ResetInterface' => $vendorDir . '/symfony/service-contracts/ResetInterface.php',
'Symfony\\Contracts\\Service\\ServiceLocatorTrait' => $vendorDir . '/symfony/service-contracts/ServiceLocatorTrait.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\\Contracts\\Service\\Test\\ServiceLocatorTest' => $vendorDir . '/symfony/service-contracts/Test/ServiceLocatorTest.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',
'ZipStream\\Bigint' => $vendorDir . '/maennchen/zipstream-php/src/Bigint.php',
'ZipStream\\DeflateStream' => $vendorDir . '/maennchen/zipstream-php/src/DeflateStream.php',
'ZipStream\\Exception' => $vendorDir . '/maennchen/zipstream-php/src/Exception.php',
'ZipStream\\Exception\\EncodingException' => $vendorDir . '/maennchen/zipstream-php/src/Exception/EncodingException.php',
'ZipStream\\Exception\\FileNotFoundException' => $vendorDir . '/maennchen/zipstream-php/src/Exception/FileNotFoundException.php',
'ZipStream\\Exception\\FileNotReadableException' => $vendorDir . '/maennchen/zipstream-php/src/Exception/FileNotReadableException.php',
'ZipStream\\Exception\\IncompatibleOptionsException' => $vendorDir . '/maennchen/zipstream-php/src/Exception/IncompatibleOptionsException.php',
'ZipStream\\Exception\\OverflowException' => $vendorDir . '/maennchen/zipstream-php/src/Exception/OverflowException.php',
'ZipStream\\Exception\\StreamNotReadableException' => $vendorDir . '/maennchen/zipstream-php/src/Exception/StreamNotReadableException.php',
'ZipStream\\File' => $vendorDir . '/maennchen/zipstream-php/src/File.php',
'ZipStream\\Option\\Archive' => $vendorDir . '/maennchen/zipstream-php/src/Option/Archive.php',
'ZipStream\\Option\\File' => $vendorDir . '/maennchen/zipstream-php/src/Option/File.php',
'ZipStream\\Option\\Method' => $vendorDir . '/maennchen/zipstream-php/src/Option/Method.php',
'ZipStream\\Option\\Version' => $vendorDir . '/maennchen/zipstream-php/src/Option/Version.php',
'ZipStream\\Stream' => $vendorDir . '/maennchen/zipstream-php/src/Stream.php',
'ZipStream\\ZipStream' => $vendorDir . '/maennchen/zipstream-php/src/ZipStream.php',
'izi\\prestashop\\AdminKernel' => $baseDir . '/src/AdminKernel.php',
'izi\\prestashop\\Analytics\\BasketAnalytics' => $baseDir . '/src/Analytics/BasketAnalytics.php',
'izi\\prestashop\\Analytics\\BasketAnalyticsInterface' => $baseDir . '/src/Analytics/BasketAnalyticsInterface.php',
'izi\\prestashop\\Analytics\\BasketAnalyticsParams' => $baseDir . '/src/Analytics/BasketAnalyticsParams.php',
'izi\\prestashop\\Analytics\\BasketAnalyticsRepository' => $baseDir . '/src/Analytics/BasketAnalyticsRepository.php',
'izi\\prestashop\\Analytics\\BasketAnalyticsRepositoryInterface' => $baseDir . '/src/Analytics/BasketAnalyticsRepositoryInterface.php',
'izi\\prestashop\\Analytics\\Command\\UpdateCartAnalyticsCommand' => $baseDir . '/src/Analytics/Command/UpdateCartAnalyticsCommand.php',
'izi\\prestashop\\Analytics\\Cookie\\CookieEraserInterface' => $baseDir . '/src/Analytics/Cookie/CookieEraserInterface.php',
'izi\\prestashop\\Analytics\\Cookie\\CookieExtractorInterface' => $baseDir . '/src/Analytics/Cookie/CookieExtractorInterface.php',
'izi\\prestashop\\Analytics\\Cookie\\CookiePersisterInterface' => $baseDir . '/src/Analytics/Cookie/CookiePersisterInterface.php',
'izi\\prestashop\\Analytics\\Cookie\\Executor\\CookieEraseExecutor' => $baseDir . '/src/Analytics/Cookie/Executor/CookieEraseExecutor.php',
'izi\\prestashop\\Analytics\\Cookie\\Executor\\CookiePersisterExecutor' => $baseDir . '/src/Analytics/Cookie/Executor/CookiePersisterExecutor.php',
'izi\\prestashop\\Analytics\\Cookie\\FacebookClickIdCookie' => $baseDir . '/src/Analytics/Cookie/FacebookClickIdCookie.php',
'izi\\prestashop\\Analytics\\Cookie\\Factory\\CookieFactory' => $baseDir . '/src/Analytics/Cookie/Factory/CookieFactory.php',
'izi\\prestashop\\Analytics\\Cookie\\Factory\\CookieFactoryInterface' => $baseDir . '/src/Analytics/Cookie/Factory/CookieFactoryInterface.php',
'izi\\prestashop\\Analytics\\Cookie\\GoogleClickIdCookie' => $baseDir . '/src/Analytics/Cookie/GoogleClickIdCookie.php',
'izi\\prestashop\\Analytics\\Cookie\\GoogleClientIdCookie' => $baseDir . '/src/Analytics/Cookie/GoogleClientIdCookie.php',
'izi\\prestashop\\Analytics\\Cookie\\Repository\\CookieRepository' => $baseDir . '/src/Analytics/Cookie/Repository/CookieRepository.php',
'izi\\prestashop\\Analytics\\Cookie\\Repository\\CookieRepositoryInterface' => $baseDir . '/src/Analytics/Cookie/Repository/CookieRepositoryInterface.php',
'izi\\prestashop\\Analytics\\EventListener\\UpdateBasketAnalyticsListener' => $baseDir . '/src/Analytics/EventListener/UpdateBasketAnalyticsListener.php',
'izi\\prestashop\\Analytics\\Factory\\BasketAnalyticsFactory' => $baseDir . '/src/Analytics/Factory/BasketAnalyticsFactory.php',
'izi\\prestashop\\Analytics\\Factory\\BasketAnalyticsFactoryInterface' => $baseDir . '/src/Analytics/Factory/BasketAnalyticsFactoryInterface.php',
'izi\\prestashop\\Analytics\\Handler\\UpdateCartAnalyticsHandler' => $baseDir . '/src/Analytics/Handler/UpdateCartAnalyticsHandler.php',
'izi\\prestashop\\Analytics\\Handler\\UpdateCartAnalyticsHandlerInterface' => $baseDir . '/src/Analytics/Handler/UpdateCartAnalyticsHandlerInterface.php',
'izi\\prestashop\\BasketApp\\AuthorizationProviderFactory' => $baseDir . '/src/BasketApp/AuthorizationProviderFactory.php',
'izi\\prestashop\\BasketApp\\BasketAppClient' => $baseDir . '/src/BasketApp/BasketAppClient.php',
'izi\\prestashop\\BasketApp\\BasketAppClientFactory' => $baseDir . '/src/BasketApp/BasketAppClientFactory.php',
'izi\\prestashop\\BasketApp\\BasketAppClientInterface' => $baseDir . '/src/BasketApp/BasketAppClientInterface.php',
'izi\\prestashop\\BasketApp\\Basket\\BasketsApiClientInterface' => $baseDir . '/src/BasketApp/Basket/BasketsApiClientInterface.php',
'izi\\prestashop\\BasketApp\\Basket\\Request\\Basket' => $baseDir . '/src/BasketApp/Basket/Request/Basket.php',
'izi\\prestashop\\BasketApp\\Basket\\Response\\BasketBindingKeyResponse' => $baseDir . '/src/BasketApp/Basket/Response/BasketBindingKeyResponse.php',
'izi\\prestashop\\BasketApp\\Basket\\Response\\BasketBindingResponse' => $baseDir . '/src/BasketApp/Basket/Response/BasketBindingResponse.php',
'izi\\prestashop\\BasketApp\\Basket\\Response\\ClientDetails' => $baseDir . '/src/BasketApp/Basket/Response/ClientDetails.php',
'izi\\prestashop\\BasketApp\\Basket\\Response\\UpdateBasketResponse' => $baseDir . '/src/BasketApp/Basket/Response/UpdateBasketResponse.php',
'izi\\prestashop\\BasketApp\\Exception\\BadRequestException' => $baseDir . '/src/BasketApp/Exception/BadRequestException.php',
'izi\\prestashop\\BasketApp\\Exception\\BasketAlreadyBoundException' => $baseDir . '/src/BasketApp/Exception/BasketAlreadyBoundException.php',
'izi\\prestashop\\BasketApp\\Exception\\BasketAppException' => $baseDir . '/src/BasketApp/Exception/BasketAppException.php',
'izi\\prestashop\\BasketApp\\Exception\\BasketExpiredException' => $baseDir . '/src/BasketApp/Exception/BasketExpiredException.php',
'izi\\prestashop\\BasketApp\\Exception\\BasketNotBoundException' => $baseDir . '/src/BasketApp/Exception/BasketNotBoundException.php',
'izi\\prestashop\\BasketApp\\Exception\\BasketNotFoundException' => $baseDir . '/src/BasketApp/Exception/BasketNotFoundException.php',
'izi\\prestashop\\BasketApp\\Exception\\CannotChangeOrderStatusException' => $baseDir . '/src/BasketApp/Exception/CannotChangeOrderStatusException.php',
'izi\\prestashop\\BasketApp\\Exception\\ForbiddenException' => $baseDir . '/src/BasketApp/Exception/ForbiddenException.php',
'izi\\prestashop\\BasketApp\\Exception\\InternalServerErrorException' => $baseDir . '/src/BasketApp/Exception/InternalServerErrorException.php',
'izi\\prestashop\\BasketApp\\Exception\\MalformedRequestException' => $baseDir . '/src/BasketApp/Exception/MalformedRequestException.php',
'izi\\prestashop\\BasketApp\\Exception\\MerchantDisabledException' => $baseDir . '/src/BasketApp/Exception/MerchantDisabledException.php',
'izi\\prestashop\\BasketApp\\Exception\\OrderNotFoundException' => $baseDir . '/src/BasketApp/Exception/OrderNotFoundException.php',
'izi\\prestashop\\BasketApp\\Exception\\PhoneBindingUnavailableException' => $baseDir . '/src/BasketApp/Exception/PhoneBindingUnavailableException.php',
'izi\\prestashop\\BasketApp\\Exception\\PublicKeyNotFoundException' => $baseDir . '/src/BasketApp/Exception/PublicKeyNotFoundException.php',
'izi\\prestashop\\BasketApp\\Exception\\ResourceNotFoundException' => $baseDir . '/src/BasketApp/Exception/ResourceNotFoundException.php',
'izi\\prestashop\\BasketApp\\Exception\\UnauthorizedException' => $baseDir . '/src/BasketApp/Exception/UnauthorizedException.php',
'izi\\prestashop\\BasketApp\\Order\\OrdersApiClientInterface' => $baseDir . '/src/BasketApp/Order/OrdersApiClientInterface.php',
'izi\\prestashop\\BasketApp\\Order\\Request\\Delivery' => $baseDir . '/src/BasketApp/Order/Request/Delivery.php',
'izi\\prestashop\\BasketApp\\Order\\Request\\OrderEvent' => $baseDir . '/src/BasketApp/Order/Request/OrderEvent.php',
'izi\\prestashop\\BasketApp\\Order\\Request\\OrderEventData' => $baseDir . '/src/BasketApp/Order/Request/OrderEventData.php',
'izi\\prestashop\\BasketApp\\PaginationPage' => $baseDir . '/src/BasketApp/PaginationPage.php',
'izi\\prestashop\\BasketApp\\Payment\\PaymentsApiClientInterface' => $baseDir . '/src/BasketApp/Payment/PaymentsApiClientInterface.php',
'izi\\prestashop\\BasketApp\\Payment\\Response\\AvailablePaymentOptions' => $baseDir . '/src/BasketApp/Payment/Response/AvailablePaymentOptions.php',
'izi\\prestashop\\BasketApp\\Product\\Exception\\MaxProductLimitReachedException' => $baseDir . '/src/BasketApp/Product/Exception/MaxProductLimitReachedException.php',
'izi\\prestashop\\BasketApp\\Product\\Exception\\ProductExistsException' => $baseDir . '/src/BasketApp/Product/Exception/ProductExistsException.php',
'izi\\prestashop\\BasketApp\\Product\\Exception\\ProductNotFoundException' => $baseDir . '/src/BasketApp/Product/Exception/ProductNotFoundException.php',
'izi\\prestashop\\BasketApp\\Product\\ProductsApiClientInterface' => $baseDir . '/src/BasketApp/Product/ProductsApiClientInterface.php',
'izi\\prestashop\\BasketApp\\Product\\Request\\CreateProductsRequest' => $baseDir . '/src/BasketApp/Product/Request/CreateProductsRequest.php',
'izi\\prestashop\\BasketApp\\Product\\Response\\CreateProductsResponse' => $baseDir . '/src/BasketApp/Product/Response/CreateProductsResponse.php',
'izi\\prestashop\\BasketApp\\Product\\Response\\Product' => $baseDir . '/src/BasketApp/Product/Response/Product.php',
'izi\\prestashop\\BasketApp\\Product\\Response\\ProductId' => $baseDir . '/src/BasketApp/Product/Response/ProductId.php',
'izi\\prestashop\\BasketApp\\Product\\Response\\Status' => $baseDir . '/src/BasketApp/Product/Response/Status.php',
'izi\\prestashop\\BasketApp\\Signature\\Response\\PublicKey' => $baseDir . '/src/BasketApp/Signature/Response/PublicKey.php',
'izi\\prestashop\\BasketApp\\Signature\\Response\\SigningKey' => $baseDir . '/src/BasketApp/Signature/Response/SigningKey.php',
'izi\\prestashop\\BasketApp\\Signature\\Response\\SigningKeys' => $baseDir . '/src/BasketApp/Signature/Response/SigningKeys.php',
'izi\\prestashop\\BasketApp\\Signature\\SigningKeysApiClientInterface' => $baseDir . '/src/BasketApp/Signature/SigningKeysApiClientInterface.php',
'izi\\prestashop\\Builder\\Basket\\AbstractBasketBuilder' => $baseDir . '/src/Builder/Basket/AbstractBasketBuilder.php',
'izi\\prestashop\\Builder\\Basket\\BasketAppRequestBuilder' => $baseDir . '/src/Builder/Basket/BasketAppRequestBuilder.php',
'izi\\prestashop\\Builder\\Basket\\BasketAppRequestBuilderInterface' => $baseDir . '/src/Builder/Basket/BasketAppRequestBuilderInterface.php',
'izi\\prestashop\\Builder\\Basket\\BasketBuilderFactory' => $baseDir . '/src/Builder/Basket/BasketBuilderFactory.php',
'izi\\prestashop\\Builder\\Basket\\BasketBuilderFactoryInterface' => $baseDir . '/src/Builder/Basket/BasketBuilderFactoryInterface.php',
'izi\\prestashop\\Builder\\Basket\\BasketBuilderInterface' => $baseDir . '/src/Builder/Basket/BasketBuilderInterface.php',
'izi\\prestashop\\Builder\\Basket\\DeliveryFactory' => $baseDir . '/src/Builder/Basket/DeliveryFactory.php',
'izi\\prestashop\\Builder\\Basket\\MerchantApiResponseBuilder' => $baseDir . '/src/Builder/Basket/MerchantApiResponseBuilder.php',
'izi\\prestashop\\Builder\\Basket\\MerchantApiResponseBuilderInterface' => $baseDir . '/src/Builder/Basket/MerchantApiResponseBuilderInterface.php',
'izi\\prestashop\\Builder\\Basket\\ProductDeliveryFactory' => $baseDir . '/src/Builder/Basket/ProductDeliveryFactory.php',
'izi\\prestashop\\Builder\\Order\\OrderEventBuilder' => $baseDir . '/src/Builder/Order/OrderEventBuilder.php',
'izi\\prestashop\\Builder\\Order\\OrderEventBuilderFactory' => $baseDir . '/src/Builder/Order/OrderEventBuilderFactory.php',
'izi\\prestashop\\Builder\\Order\\OrderEventBuilderFactoryInterface' => $baseDir . '/src/Builder/Order/OrderEventBuilderFactoryInterface.php',
'izi\\prestashop\\Builder\\Order\\OrderEventBuilderInterface' => $baseDir . '/src/Builder/Order/OrderEventBuilderInterface.php',
'izi\\prestashop\\Builder\\Order\\OrderStatusDescriptionProvider' => $baseDir . '/src/Builder/Order/OrderStatusDescriptionProvider.php',
'izi\\prestashop\\Builder\\PriceFactory' => $baseDir . '/src/Builder/PriceFactory.php',
'izi\\prestashop\\CacheClearer\\BindingKeysCacheClearer' => $baseDir . '/src/CacheClearer/BindingKeysCacheClearer.php',
'izi\\prestashop\\CacheClearer\\CacheClearerInterface' => $baseDir . '/src/CacheClearer/CacheClearerInterface.php',
'izi\\prestashop\\CacheClearer\\ChainCacheClearer' => $baseDir . '/src/CacheClearer/ChainCacheClearer.php',
'izi\\prestashop\\CacheClearer\\Psr16CacheClearer' => $baseDir . '/src/CacheClearer/Psr16CacheClearer.php',
'izi\\prestashop\\Cache\\ConfigurationCache' => $baseDir . '/src/Cache/ConfigurationCache.php',
'izi\\prestashop\\Cache\\Exception\\InvalidArgumentException' => $baseDir . '/src/Cache/Exception/InvalidArgumentException.php',
'izi\\prestashop\\Cache\\Exception\\RuntimeException' => $baseDir . '/src/Cache/Exception/RuntimeException.php',
'izi\\prestashop\\Cart\\Exception\\ProductAlreadyInCartException' => $baseDir . '/src/Cart/Exception/ProductAlreadyInCartException.php',
'izi\\prestashop\\Cart\\Util\\ProductHelper' => $baseDir . '/src/Cart/Util/ProductHelper.php',
'izi\\prestashop\\Clock\\SystemClock' => $baseDir . '/src/Clock/SystemClock.php',
'izi\\prestashop\\CommandBus' => $baseDir . '/src/CommandBus.php',
'izi\\prestashop\\CommandBusInterface' => $baseDir . '/src/CommandBusInterface.php',
'izi\\prestashop\\Command\\Config\\CheckStatusCommand' => $baseDir . '/src/Command/Config/CheckStatusCommand.php',
'izi\\prestashop\\Command\\Config\\DownloadModuleDataCommand' => $baseDir . '/src/Command/Config/DownloadModuleDataCommand.php',
'izi\\prestashop\\Command\\Config\\UpdateAdvancedConfigurationCommand' => $baseDir . '/src/Command/Config/UpdateAdvancedConfigurationCommand.php',
'izi\\prestashop\\Command\\Config\\UpdateCartRuleOptionsCommand' => $baseDir . '/src/Command/Config/UpdateCartRuleOptionsCommand.php',
'izi\\prestashop\\Command\\Config\\UpdateConsentsConfigurationCommand' => $baseDir . '/src/Command/Config/UpdateConsentsConfigurationCommand.php',
'izi\\prestashop\\Command\\Config\\UpdateGeneralConfigurationCommand' => $baseDir . '/src/Command/Config/UpdateGeneralConfigurationCommand.php',
'izi\\prestashop\\Command\\Config\\UpdateGeneralConfigurationCommandFactory' => $baseDir . '/src/Command/Config/UpdateGeneralConfigurationCommandFactory.php',
'izi\\prestashop\\Command\\Config\\UpdateGuiConfigurationCommand' => $baseDir . '/src/Command/Config/UpdateGuiConfigurationCommand.php',
'izi\\prestashop\\Command\\Config\\UpdateShippingConfigurationCommand' => $baseDir . '/src/Command/Config/UpdateShippingConfigurationCommand.php',
'izi\\prestashop\\Command\\GetBasketBindingKeyCommand' => $baseDir . '/src/Command/GetBasketBindingKeyCommand.php',
'izi\\prestashop\\Command\\GetOrderConfirmationUrlCommand' => $baseDir . '/src/Command/GetOrderConfirmationUrlCommand.php',
'izi\\prestashop\\Command\\UnbindBasketCommand' => $baseDir . '/src/Command/UnbindBasketCommand.php',
'izi\\prestashop\\Command\\UpdateBasketCommand' => $baseDir . '/src/Command/UpdateBasketCommand.php',
'izi\\prestashop\\Command\\UpdateOrderAddressDeliveryCommand' => $baseDir . '/src/Command/UpdateOrderAddressDeliveryCommand.php',
'izi\\prestashop\\Command\\UpdateOrderStatusCommand' => $baseDir . '/src/Command/UpdateOrderStatusCommand.php',
'izi\\prestashop\\Command\\UpdateOrderTrackingNumbersCommand' => $baseDir . '/src/Command/UpdateOrderTrackingNumbersCommand.php',
'izi\\prestashop\\Common\\Basket\\AvailablePromotion' => $baseDir . '/src/Common/Basket/AvailablePromotion.php',
'izi\\prestashop\\Common\\Basket\\Consent' => $baseDir . '/src/Common/Basket/Consent.php',
'izi\\prestashop\\Common\\Basket\\ConsentLink' => $baseDir . '/src/Common/Basket/ConsentLink.php',
'izi\\prestashop\\Common\\Basket\\ConsentRequirementType' => $baseDir . '/src/Common/Basket/ConsentRequirementType.php',
'izi\\prestashop\\Common\\Basket\\DeliveryOption' => $baseDir . '/src/Common/Basket/DeliveryOption.php',
'izi\\prestashop\\Common\\Basket\\Notice' => $baseDir . '/src/Common/Basket/Notice.php',
'izi\\prestashop\\Common\\Basket\\NoticeType' => $baseDir . '/src/Common/Basket/NoticeType.php',
'izi\\prestashop\\Common\\Basket\\Product' => $baseDir . '/src/Common/Basket/Product.php',
'izi\\prestashop\\Common\\Basket\\PromoDetails' => $baseDir . '/src/Common/Basket/PromoDetails.php',
'izi\\prestashop\\Common\\Basket\\PromotionType' => $baseDir . '/src/Common/Basket/PromotionType.php',
'izi\\prestashop\\Common\\Basket\\Quantity' => $baseDir . '/src/Common/Basket/Quantity.php',
'izi\\prestashop\\Common\\Basket\\Summary' => $baseDir . '/src/Common/Basket/Summary.php',
'izi\\prestashop\\Common\\BindingPlace' => $baseDir . '/src/Common/BindingPlace.php',
'izi\\prestashop\\Common\\Currency' => $baseDir . '/src/Common/Currency.php',
'izi\\prestashop\\Common\\Customer\\AccountInfo' => $baseDir . '/src/Common/Customer/AccountInfo.php',
'izi\\prestashop\\Common\\Customer\\ClientAddress' => $baseDir . '/src/Common/Customer/ClientAddress.php',
'izi\\prestashop\\Common\\Customer\\InvoiceDetails' => $baseDir . '/src/Common/Customer/InvoiceDetails.php',
'izi\\prestashop\\Common\\Customer\\LegalForm' => $baseDir . '/src/Common/Customer/LegalForm.php',
'izi\\prestashop\\Common\\Delivery\\DeliveryType' => $baseDir . '/src/Common/Delivery/DeliveryType.php',
'izi\\prestashop\\Common\\Delivery\\OptionalService' => $baseDir . '/src/Common/Delivery/OptionalService.php',
'izi\\prestashop\\Common\\Delivery\\ServiceCode' => $baseDir . '/src/Common/Delivery/ServiceCode.php',
'izi\\prestashop\\Common\\Dimensions' => $baseDir . '/src/Common/Dimensions.php',
'izi\\prestashop\\Common\\Error\\Error' => $baseDir . '/src/Common/Error/Error.php',
'izi\\prestashop\\Common\\HotProduct\\IdentifiableProduct' => $baseDir . '/src/Common/HotProduct/IdentifiableProduct.php',
'izi\\prestashop\\Common\\HotProduct\\Product' => $baseDir . '/src/Common/HotProduct/Product.php',
'izi\\prestashop\\Common\\HotProduct\\ProductAvailability' => $baseDir . '/src/Common/HotProduct/ProductAvailability.php',
'izi\\prestashop\\Common\\HotProduct\\ProductTrait' => $baseDir . '/src/Common/HotProduct/ProductTrait.php',
'izi\\prestashop\\Common\\HotProduct\\Quantity' => $baseDir . '/src/Common/HotProduct/Quantity.php',
'izi\\prestashop\\Common\\Order\\Consent' => $baseDir . '/src/Common/Order/Consent.php',
'izi\\prestashop\\Common\\Order\\DeliveryAddress' => $baseDir . '/src/Common/Order/DeliveryAddress.php',
'izi\\prestashop\\Common\\Order\\MerchantOrderStatus' => $baseDir . '/src/Common/Order/MerchantOrderStatus.php',
'izi\\prestashop\\Common\\Order\\OrderAdditionalParameter' => $baseDir . '/src/Common/Order/OrderAdditionalParameter.php',
'izi\\prestashop\\Common\\Order\\OrderAdditionalParameters' => $baseDir . '/src/Common/Order/OrderAdditionalParameters.php',
'izi\\prestashop\\Common\\Order\\Product' => $baseDir . '/src/Common/Order/Product.php',
'izi\\prestashop\\Common\\Order\\Quantity' => $baseDir . '/src/Common/Order/Quantity.php',
'izi\\prestashop\\Common\\PaymentType' => $baseDir . '/src/Common/PaymentType.php',
'izi\\prestashop\\Common\\PhoneNumber' => $baseDir . '/src/Common/PhoneNumber.php',
'izi\\prestashop\\Common\\Price' => $baseDir . '/src/Common/Price.php',
'izi\\prestashop\\Common\\PriceAmount' => $baseDir . '/src/Common/PriceAmount.php',
'izi\\prestashop\\Common\\Product\\DeliveryProduct' => $baseDir . '/src/Common/Product/DeliveryProduct.php',
'izi\\prestashop\\Common\\Product\\DeliveryRelatedProducts' => $baseDir . '/src/Common/Product/DeliveryRelatedProducts.php',
'izi\\prestashop\\Common\\Product\\ProductAttribute' => $baseDir . '/src/Common/Product/ProductAttribute.php',
'izi\\prestashop\\Common\\Product\\ProductImage' => $baseDir . '/src/Common/Product/ProductImage.php',
'izi\\prestashop\\Common\\Product\\ProductVariant' => $baseDir . '/src/Common/Product/ProductVariant.php',
'izi\\prestashop\\Common\\PromoCode' => $baseDir . '/src/Common/PromoCode.php',
'izi\\prestashop\\Common\\QuantityType' => $baseDir . '/src/Common/QuantityType.php',
'izi\\prestashop\\Common\\Weight' => $baseDir . '/src/Common/Weight.php',
'izi\\prestashop\\Configuration\\Adapter\\Configuration' => $baseDir . '/src/Configuration/Adapter/Configuration.php',
'izi\\prestashop\\Configuration\\AdvancedConfiguration' => $baseDir . '/src/Configuration/AdvancedConfiguration.php',
'izi\\prestashop\\Configuration\\AdvancedConfigurationInterface' => $baseDir . '/src/Configuration/AdvancedConfigurationInterface.php',
'izi\\prestashop\\Configuration\\ApiConfiguration' => $baseDir . '/src/Configuration/ApiConfiguration.php',
'izi\\prestashop\\Configuration\\ApiConfigurationInterface' => $baseDir . '/src/Configuration/ApiConfigurationInterface.php',
'izi\\prestashop\\Configuration\\ConfigurationInterface' => $baseDir . '/src/Configuration/ConfigurationInterface.php',
'izi\\prestashop\\Configuration\\ConsentsConfiguration' => $baseDir . '/src/Configuration/ConsentsConfiguration.php',
'izi\\prestashop\\Configuration\\ConsentsConfigurationInterface' => $baseDir . '/src/Configuration/ConsentsConfigurationInterface.php',
'izi\\prestashop\\Configuration\\DTO\\AdvancedConfiguration' => $baseDir . '/src/Configuration/DTO/AdvancedConfiguration.php',
'izi\\prestashop\\Configuration\\DTO\\ApiConfiguration' => $baseDir . '/src/Configuration/DTO/ApiConfiguration.php',
'izi\\prestashop\\Configuration\\DTO\\Consent' => $baseDir . '/src/Configuration/DTO/Consent.php',
'izi\\prestashop\\Configuration\\DTO\\ConsentLink' => $baseDir . '/src/Configuration/DTO/ConsentLink.php',
'izi\\prestashop\\Configuration\\DTO\\GeneralConfiguration' => $baseDir . '/src/Configuration/DTO/GeneralConfiguration.php',
'izi\\prestashop\\Configuration\\DTO\\GuiConfiguration' => $baseDir . '/src/Configuration/DTO/GuiConfiguration.php',
'izi\\prestashop\\Configuration\\DTO\\HtmlStyles' => $baseDir . '/src/Configuration/DTO/HtmlStyles.php',
'izi\\prestashop\\Configuration\\DTO\\Order\\MessageOptions' => $baseDir . '/src/Configuration/DTO/Order/MessageOptions.php',
'izi\\prestashop\\Configuration\\DTO\\OrdersConfiguration' => $baseDir . '/src/Configuration/DTO/OrdersConfiguration.php',
'izi\\prestashop\\Configuration\\DTO\\ProductConfiguration' => $baseDir . '/src/Configuration/DTO/ProductConfiguration.php',
'izi\\prestashop\\Configuration\\DTO\\ProductPageDisplayConfiguration' => $baseDir . '/src/Configuration/DTO/ProductPageDisplayConfiguration.php',
'izi\\prestashop\\Configuration\\DTO\\Product\\ProductRestrictions' => $baseDir . '/src/Configuration/DTO/Product/ProductRestrictions.php',
'izi\\prestashop\\Configuration\\DTO\\Product\\ProductRestrictionsCache' => $baseDir . '/src/Configuration/DTO/Product/ProductRestrictionsCache.php',
'izi\\prestashop\\Configuration\\DTO\\ShippingConfiguration' => $baseDir . '/src/Configuration/DTO/ShippingConfiguration.php',
'izi\\prestashop\\Configuration\\DTO\\Shipping\\CarrierMapping' => $baseDir . '/src/Configuration/DTO/Shipping/CarrierMapping.php',
'izi\\prestashop\\Configuration\\DTO\\Shipping\\ServiceOptions' => $baseDir . '/src/Configuration/DTO/Shipping/ServiceOptions.php',
'izi\\prestashop\\Configuration\\DTO\\Shipping\\ShippingOptions' => $baseDir . '/src/Configuration/DTO/Shipping/ShippingOptions.php',
'izi\\prestashop\\Configuration\\DTO\\Shipping\\TimeOfWeek' => $baseDir . '/src/Configuration/DTO/Shipping/TimeOfWeek.php',
'izi\\prestashop\\Configuration\\DTO\\Shipping\\TimeOfWeekRange' => $baseDir . '/src/Configuration/DTO/Shipping/TimeOfWeekRange.php',
'izi\\prestashop\\Configuration\\DTO\\Shipping\\WeekDay' => $baseDir . '/src/Configuration/DTO/Shipping/WeekDay.php',
'izi\\prestashop\\Configuration\\DTO\\WidgetDisplayConfiguration' => $baseDir . '/src/Configuration/DTO/WidgetDisplayConfiguration.php',
'izi\\prestashop\\Configuration\\GeneralConfiguration' => $baseDir . '/src/Configuration/GeneralConfiguration.php',
'izi\\prestashop\\Configuration\\GeneralConfigurationInterface' => $baseDir . '/src/Configuration/GeneralConfigurationInterface.php',
'izi\\prestashop\\Configuration\\GuiConfiguration' => $baseDir . '/src/Configuration/GuiConfiguration.php',
'izi\\prestashop\\Configuration\\GuiConfigurationInterface' => $baseDir . '/src/Configuration/GuiConfigurationInterface.php',
'izi\\prestashop\\Configuration\\Initializer\\AnnotationsConfigInitializer' => $baseDir . '/src/Configuration/Initializer/AnnotationsConfigInitializer.php',
'izi\\prestashop\\Configuration\\Initializer\\AssetPackageInitializer' => $baseDir . '/src/Configuration/Initializer/AssetPackageInitializer.php',
'izi\\prestashop\\Configuration\\Initializer\\ConfigurationInitializerInterface' => $baseDir . '/src/Configuration/Initializer/ConfigurationInitializerInterface.php',
'izi\\prestashop\\Configuration\\Initializer\\TwigConfigInitializer' => $baseDir . '/src/Configuration/Initializer/TwigConfigInitializer.php',
'izi\\prestashop\\Configuration\\LanguageAwareConfigurationInterface' => $baseDir . '/src/Configuration/LanguageAwareConfigurationInterface.php',
'izi\\prestashop\\Configuration\\OrdersConfiguration' => $baseDir . '/src/Configuration/OrdersConfiguration.php',
'izi\\prestashop\\Configuration\\OrdersConfigurationInterface' => $baseDir . '/src/Configuration/OrdersConfigurationInterface.php',
'izi\\prestashop\\Configuration\\PersistentConfigurationInterface' => $baseDir . '/src/Configuration/PersistentConfigurationInterface.php',
'izi\\prestashop\\Configuration\\PrestaShopConfiguration' => $baseDir . '/src/Configuration/PrestaShopConfiguration.php',
'izi\\prestashop\\Configuration\\ProductAwareWidgetDisplayConfigurationInterface' => $baseDir . '/src/Configuration/ProductAwareWidgetDisplayConfigurationInterface.php',
'izi\\prestashop\\Configuration\\ProductConfiguration' => $baseDir . '/src/Configuration/ProductConfiguration.php',
'izi\\prestashop\\Configuration\\ProductConfigurationInterface' => $baseDir . '/src/Configuration/ProductConfigurationInterface.php',
'izi\\prestashop\\Configuration\\ProductPageDisplayConfiguration' => $baseDir . '/src/Configuration/ProductPageDisplayConfiguration.php',
'izi\\prestashop\\Configuration\\ProductRestrictionsConfigurationInterface' => $baseDir . '/src/Configuration/ProductRestrictionsConfigurationInterface.php',
'izi\\prestashop\\Configuration\\ProductRestrictionsProviderInterface' => $baseDir . '/src/Configuration/ProductRestrictionsProviderInterface.php',
'izi\\prestashop\\Configuration\\PromoCodesConfigurationInterface' => $baseDir . '/src/Configuration/PromoCodesConfigurationInterface.php',
'izi\\prestashop\\Configuration\\ShippingConfiguration' => $baseDir . '/src/Configuration/ShippingConfiguration.php',
'izi\\prestashop\\Configuration\\ShippingConfigurationInterface' => $baseDir . '/src/Configuration/ShippingConfigurationInterface.php',
'izi\\prestashop\\Configuration\\ShopAwareConfigurationInterface' => $baseDir . '/src/Configuration/ShopAwareConfigurationInterface.php',
'izi\\prestashop\\Configuration\\WidgetDisplayConfigurationInterface' => $baseDir . '/src/Configuration/WidgetDisplayConfigurationInterface.php',
'izi\\prestashop\\ContextManager' => $baseDir . '/src/ContextManager.php',
'izi\\prestashop\\Controller\\Admin\\AbstractConfigurationController' => $baseDir . '/src/Controller/Admin/AbstractConfigurationController.php',
'izi\\prestashop\\Controller\\Admin\\AbstractController' => $baseDir . '/src/Controller/Admin/AbstractController.php',
'izi\\prestashop\\Controller\\Admin\\ConfigurationController' => $baseDir . '/src/Controller/Admin/ConfigurationController.php',
'izi\\prestashop\\Controller\\Admin\\HotProductController' => $baseDir . '/src/Controller/Admin/HotProductController.php',
'izi\\prestashop\\Controller\\Api\\AbstractApiController' => $baseDir . '/src/Controller/Api/AbstractApiController.php',
'izi\\prestashop\\Controller\\Api\\BasketController' => $baseDir . '/src/Controller/Api/BasketController.php',
'izi\\prestashop\\Controller\\Api\\OrderController' => $baseDir . '/src/Controller/Api/OrderController.php',
'izi\\prestashop\\Controller\\Api\\ProductController' => $baseDir . '/src/Controller/Api/ProductController.php',
'izi\\prestashop\\Controller\\WidgetController' => $baseDir . '/src/Controller/WidgetController.php',
'izi\\prestashop\\Currency\\PriceConverter' => $baseDir . '/src/Currency/PriceConverter.php',
'izi\\prestashop\\Currency\\PriceConverterInterface' => $baseDir . '/src/Currency/PriceConverterInterface.php',
'izi\\prestashop\\Database\\Connection' => $baseDir . '/src/Database/Connection.php',
'izi\\prestashop\\DependencyInjection\\Argument\\ServiceClosureArgument' => $baseDir . '/src/DependencyInjection/Argument/ServiceClosureArgument.php',
'izi\\prestashop\\DependencyInjection\\Compiler\\AnalyzeServiceReferencesPass' => $baseDir . '/src/DependencyInjection/Compiler/AnalyzeServiceReferencesPass.php',
'izi\\prestashop\\DependencyInjection\\Compiler\\ProvideServiceLocatorFactoriesPass' => $baseDir . '/src/DependencyInjection/Compiler/ProvideServiceLocatorFactoriesPass.php',
'izi\\prestashop\\DependencyInjection\\Compiler\\TaggedIteratorsCollectorPass' => $baseDir . '/src/DependencyInjection/Compiler/TaggedIteratorsCollectorPass.php',
'izi\\prestashop\\DependencyInjection\\ContainerBuilder' => $baseDir . '/src/DependencyInjection/ContainerBuilder.php',
'izi\\prestashop\\DependencyInjection\\ContainerFactory' => $baseDir . '/src/DependencyInjection/ContainerFactory.php',
'izi\\prestashop\\DependencyInjection\\Dumper\\PhpDumper' => $baseDir . '/src/DependencyInjection/Dumper/PhpDumper.php',
'izi\\prestashop\\DependencyInjection\\Exception\\ContainerNotFoundException' => $baseDir . '/src/DependencyInjection/Exception/ContainerNotFoundException.php',
'izi\\prestashop\\DependencyInjection\\ServiceLocator' => $baseDir . '/src/DependencyInjection/ServiceLocator.php',
'izi\\prestashop\\DependencyInjection\\ServiceSubscriberInterface' => $baseDir . '/src/DependencyInjection/ServiceSubscriberInterface.php',
'izi\\prestashop\\DependencyInjection\\TypedReference' => $baseDir . '/src/DependencyInjection/TypedReference.php',
'izi\\prestashop\\Entities\\BasketInterface' => $baseDir . '/src/Entities/BasketInterface.php',
'izi\\prestashop\\Entities\\BasketSession' => $baseDir . '/src/Entities/BasketSession.php',
'izi\\prestashop\\Entities\\BasketSessionInterface' => $baseDir . '/src/Entities/BasketSessionInterface.php',
'izi\\prestashop\\Entities\\Cart' => $baseDir . '/src/Entities/Cart.php',
'izi\\prestashop\\Entities\\CartProxy' => $baseDir . '/src/Entities/CartProxy.php',
'izi\\prestashop\\Entities\\SwitchableBasketSessionInterface' => $baseDir . '/src/Entities/SwitchableBasketSessionInterface.php',
'izi\\prestashop\\Enum\\Enum' => $baseDir . '/src/Enum/Enum.php',
'izi\\prestashop\\Enum\\IntEnum' => $baseDir . '/src/Enum/IntEnum.php',
'izi\\prestashop\\Enum\\StringEnum' => $baseDir . '/src/Enum/StringEnum.php',
'izi\\prestashop\\Environment\\AuthServerUriCollection' => $baseDir . '/src/Environment/AuthServerUriCollection.php',
'izi\\prestashop\\Environment\\EnvironmentFactory' => $baseDir . '/src/Environment/EnvironmentFactory.php',
'izi\\prestashop\\Environment\\EnvironmentFactoryInterface' => $baseDir . '/src/Environment/EnvironmentFactoryInterface.php',
'izi\\prestashop\\Environment\\EnvironmentInterface' => $baseDir . '/src/Environment/EnvironmentInterface.php',
'izi\\prestashop\\Environment\\EnvironmentType' => $baseDir . '/src/Environment/EnvironmentType.php',
'izi\\prestashop\\Environment\\ProductionEnvironment' => $baseDir . '/src/Environment/ProductionEnvironment.php',
'izi\\prestashop\\Environment\\SandboxEnvironment' => $baseDir . '/src/Environment/SandboxEnvironment.php',
'izi\\prestashop\\EventListener\\CartListener' => $baseDir . '/src/EventListener/CartListener.php',
'izi\\prestashop\\EventListener\\CreateShipmentListener' => $baseDir . '/src/EventListener/CreateShipmentListener.php',
'izi\\prestashop\\EventListener\\OrderListener' => $baseDir . '/src/EventListener/OrderListener.php',
'izi\\prestashop\\EventListener\\ShipmentListener' => $baseDir . '/src/EventListener/ShipmentListener.php',
'izi\\prestashop\\Event\\Adapter\\EventDispatcher' => $baseDir . '/src/Event/Adapter/EventDispatcher.php',
'izi\\prestashop\\Event\\CartUpdatedEvent' => $baseDir . '/src/Event/CartUpdatedEvent.php',
'izi\\prestashop\\Event\\CreateShipmentRequestEvent' => $baseDir . '/src/Event/CreateShipmentRequestEvent.php',
'izi\\prestashop\\Event\\CreateShipmentRequestProcessedEvent' => $baseDir . '/src/Event/CreateShipmentRequestProcessedEvent.php',
'izi\\prestashop\\Event\\Event' => $baseDir . '/src/Event/Event.php',
'izi\\prestashop\\Event\\EventDispatcherFactory' => $baseDir . '/src/Event/EventDispatcherFactory.php',
'izi\\prestashop\\Event\\EventDispatcherInterface' => $baseDir . '/src/Event/EventDispatcherInterface.php',
'izi\\prestashop\\Event\\OrderEvent' => $baseDir . '/src/Event/OrderEvent.php',
'izi\\prestashop\\Event\\OrderStatusUpdatedEvent' => $baseDir . '/src/Event/OrderStatusUpdatedEvent.php',
'izi\\prestashop\\Event\\ShipmentEvent' => $baseDir . '/src/Event/ShipmentEvent.php',
'izi\\prestashop\\Event\\ValidateOrderEvent' => $baseDir . '/src/Event/ValidateOrderEvent.php',
'izi\\prestashop\\Form\\BasketAppClientProvider' => $baseDir . '/src/Form/BasketAppClientProvider.php',
'izi\\prestashop\\Form\\ChoiceList\\AvailablePaymentOptionChoiceLoader' => $baseDir . '/src/Form/ChoiceList/AvailablePaymentOptionChoiceLoader.php',
'izi\\prestashop\\Form\\ChoiceList\\CarrierChoiceLoader' => $baseDir . '/src/Form/ChoiceList/CarrierChoiceLoader.php',
'izi\\prestashop\\Form\\ChoiceList\\LazyChoiceLoader' => $baseDir . '/src/Form/ChoiceList/LazyChoiceLoader.php',
'izi\\prestashop\\Form\\ChoiceList\\ObjectModelChoiceLoader' => $baseDir . '/src/Form/ChoiceList/ObjectModelChoiceLoader.php',
'izi\\prestashop\\Form\\ChoiceList\\OrderStateChoiceLoader' => $baseDir . '/src/Form/ChoiceList/OrderStateChoiceLoader.php',
'izi\\prestashop\\Form\\ChoiceList\\ProductImageTypeChoiceLoader' => $baseDir . '/src/Form/ChoiceList/ProductImageTypeChoiceLoader.php',
'izi\\prestashop\\Form\\DataMapper\\ClientCredentialsDataMapper' => $baseDir . '/src/Form/DataMapper/ClientCredentialsDataMapper.php',
'izi\\prestashop\\Form\\DataTransformer\\CombinationToAttributeIdsTransformer' => $baseDir . '/src/Form/DataTransformer/CombinationToAttributeIdsTransformer.php',
'izi\\prestashop\\Form\\DataTransformer\\DateTimeImmutableToDateTimeTransformer' => $baseDir . '/src/Form/DataTransformer/DateTimeImmutableToDateTimeTransformer.php',
'izi\\prestashop\\Form\\DataTransformer\\EnumDataTransformer' => $baseDir . '/src/Form/DataTransformer/EnumDataTransformer.php',
'izi\\prestashop\\Form\\DataTransformer\\ObjectModelCollectionToIdsTransformer' => $baseDir . '/src/Form/DataTransformer/ObjectModelCollectionToIdsTransformer.php',
'izi\\prestashop\\Form\\DataTransformer\\ObjectModelToIdTransformer' => $baseDir . '/src/Form/DataTransformer/ObjectModelToIdTransformer.php',
'izi\\prestashop\\Form\\EventListener\\ReindexDataListener' => $baseDir . '/src/Form/EventListener/ReindexDataListener.php',
'izi\\prestashop\\Form\\Event\\ApiConfigurationValidatedEvent' => $baseDir . '/src/Form/Event/ApiConfigurationValidatedEvent.php',
'izi\\prestashop\\Form\\Extension\\DependencyInjectionExtension' => $baseDir . '/src/Form/Extension/DependencyInjectionExtension.php',
'izi\\prestashop\\Form\\FormFactoryFactory' => $baseDir . '/src/Form/FormFactoryFactory.php',
'izi\\prestashop\\Form\\TypeExtension\\ChoicesAsValuesTypeExtension' => $baseDir . '/src/Form/TypeExtension/ChoicesAsValuesTypeExtension.php',
'izi\\prestashop\\Form\\TypeExtension\\DatePickerCompatibilityTypeExtension' => $baseDir . '/src/Form/TypeExtension/DatePickerCompatibilityTypeExtension.php',
'izi\\prestashop\\Form\\TypeExtension\\DateTimeImmutableTimeTypeExtension' => $baseDir . '/src/Form/TypeExtension/DateTimeImmutableTimeTypeExtension.php',
'izi\\prestashop\\Form\\TypeExtension\\HelpTextExtension' => $baseDir . '/src/Form/TypeExtension/HelpTextExtension.php',
'izi\\prestashop\\Form\\TypeExtension\\UnitTypeExtension' => $baseDir . '/src/Form/TypeExtension/UnitTypeExtension.php',
'izi\\prestashop\\Form\\Type\\AdvancedConfigurationType' => $baseDir . '/src/Form/Type/AdvancedConfigurationType.php',
'izi\\prestashop\\Form\\Type\\ApiConfigurationType' => $baseDir . '/src/Form/Type/ApiConfigurationType.php',
'izi\\prestashop\\Form\\Type\\CartRuleOptionsType' => $baseDir . '/src/Form/Type/CartRuleOptionsType.php',
'izi\\prestashop\\Form\\Type\\ClientCredentialsType' => $baseDir . '/src/Form/Type/ClientCredentialsType.php',
'izi\\prestashop\\Form\\Type\\Compatibility\\CategoryChoiceTreeType' => $baseDir . '/src/Form/Type/Compatibility/CategoryChoiceTreeType.php',
'izi\\prestashop\\Form\\Type\\Consent\\ConsentLinkType' => $baseDir . '/src/Form/Type/Consent/ConsentLinkType.php',
'izi\\prestashop\\Form\\Type\\Consent\\ConsentRequirementChoiceType' => $baseDir . '/src/Form/Type/Consent/ConsentRequirementChoiceType.php',
'izi\\prestashop\\Form\\Type\\Consent\\ConsentType' => $baseDir . '/src/Form/Type/Consent/ConsentType.php',
'izi\\prestashop\\Form\\Type\\ConsentsConfigurationType' => $baseDir . '/src/Form/Type/ConsentsConfigurationType.php',
'izi\\prestashop\\Form\\Type\\EnvironmentChoiceType' => $baseDir . '/src/Form/Type/EnvironmentChoiceType.php',
'izi\\prestashop\\Form\\Type\\GeneralConfigurationType' => $baseDir . '/src/Form/Type/GeneralConfigurationType.php',
'izi\\prestashop\\Form\\Type\\GuiConfigurationType' => $baseDir . '/src/Form/Type/GuiConfigurationType.php',
'izi\\prestashop\\Form\\Type\\Image\\ImageTypeChoiceType' => $baseDir . '/src/Form/Type/Image/ImageTypeChoiceType.php',
'izi\\prestashop\\Form\\Type\\MaskedPasswordType' => $baseDir . '/src/Form/Type/MaskedPasswordType.php',
'izi\\prestashop\\Form\\Type\\ObjectModelAutocompleteType' => $baseDir . '/src/Form/Type/ObjectModelAutocompleteType.php',
'izi\\prestashop\\Form\\Type\\ObjectModelType' => $baseDir . '/src/Form/Type/ObjectModelType.php',
'izi\\prestashop\\Form\\Type\\OrderStateChoiceType' => $baseDir . '/src/Form/Type/OrderStateChoiceType.php',
'izi\\prestashop\\Form\\Type\\OrderStatusDescriptionMapType' => $baseDir . '/src/Form/Type/OrderStatusDescriptionMapType.php',
'izi\\prestashop\\Form\\Type\\Order\\AvailablePaymentOptionsChoiceType' => $baseDir . '/src/Form/Type/Order/AvailablePaymentOptionsChoiceType.php',
'izi\\prestashop\\Form\\Type\\Order\\MessageOptionsType' => $baseDir . '/src/Form/Type/Order/MessageOptionsType.php',
'izi\\prestashop\\Form\\Type\\OrdersConfigurationType' => $baseDir . '/src/Form/Type/OrdersConfigurationType.php',
'izi\\prestashop\\Form\\Type\\ProductConfigurationType' => $baseDir . '/src/Form/Type/ProductConfigurationType.php',
'izi\\prestashop\\Form\\Type\\Product\\CombinationByAttributesChoiceType' => $baseDir . '/src/Form/Type/Product/CombinationByAttributesChoiceType.php',
'izi\\prestashop\\Form\\Type\\Product\\ProductRestrictionsType' => $baseDir . '/src/Form/Type/Product/ProductRestrictionsType.php',
'izi\\prestashop\\Form\\Type\\ShippingConfigurationType' => $baseDir . '/src/Form/Type/ShippingConfigurationType.php',
'izi\\prestashop\\Form\\Type\\Shipping\\CarrierChoiceType' => $baseDir . '/src/Form/Type/Shipping/CarrierChoiceType.php',
'izi\\prestashop\\Form\\Type\\Shipping\\CarrierMappingType' => $baseDir . '/src/Form/Type/Shipping/CarrierMappingType.php',
'izi\\prestashop\\Form\\Type\\Shipping\\CarrierMappingsType' => $baseDir . '/src/Form/Type/Shipping/CarrierMappingsType.php',
'izi\\prestashop\\Form\\Type\\Shipping\\OptionalServicesType' => $baseDir . '/src/Form/Type/Shipping/OptionalServicesType.php',
'izi\\prestashop\\Form\\Type\\Shipping\\ServiceOptionsType' => $baseDir . '/src/Form/Type/Shipping/ServiceOptionsType.php',
'izi\\prestashop\\Form\\Type\\Shipping\\ShippingOptionsType' => $baseDir . '/src/Form/Type/Shipping/ShippingOptionsType.php',
'izi\\prestashop\\Form\\Type\\Shipping\\TimeOfWeekRangeType' => $baseDir . '/src/Form/Type/Shipping/TimeOfWeekRangeType.php',
'izi\\prestashop\\Form\\Type\\Shipping\\TimeOfWeekType' => $baseDir . '/src/Form/Type/Shipping/TimeOfWeekType.php',
'izi\\prestashop\\Form\\Type\\Shipping\\WeekDayChoiceType' => $baseDir . '/src/Form/Type/Shipping/WeekDayChoiceType.php',
'izi\\prestashop\\Form\\Type\\SwitchType' => $baseDir . '/src/Form/Type/SwitchType.php',
'izi\\prestashop\\Form\\Type\\TranslatableType' => $baseDir . '/src/Form/Type/TranslatableType.php',
'izi\\prestashop\\Form\\Type\\Widget\\HtmlStylesType' => $baseDir . '/src/Form/Type/Widget/HtmlStylesType.php',
'izi\\prestashop\\Form\\Type\\Widget\\ProductPageDisplayConfigurationType' => $baseDir . '/src/Form/Type/Widget/ProductPageDisplayConfigurationType.php',
'izi\\prestashop\\Form\\Type\\Widget\\WidgetConfigurationType' => $baseDir . '/src/Form/Type/Widget/WidgetConfigurationType.php',
'izi\\prestashop\\Form\\Type\\Widget\\WidgetDisplayConfigurationType' => $baseDir . '/src/Form/Type/Widget/WidgetDisplayConfigurationType.php',
'izi\\prestashop\\Form\\Type\\Widget\\WidgetFrameStyleChoiceType' => $baseDir . '/src/Form/Type/Widget/WidgetFrameStyleChoiceType.php',
'izi\\prestashop\\Form\\Type\\Widget\\WidgetSizeChoiceType' => $baseDir . '/src/Form/Type/Widget/WidgetSizeChoiceType.php',
'izi\\prestashop\\Form\\Type\\Widget\\WidgetVariantChoiceType' => $baseDir . '/src/Form/Type/Widget/WidgetVariantChoiceType.php',
'izi\\prestashop\\Handler\\CommandHandlerTrait' => $baseDir . '/src/Handler/CommandHandlerTrait.php',
'izi\\prestashop\\Handler\\Config\\CheckStatusHandler' => $baseDir . '/src/Handler/Config/CheckStatusHandler.php',
'izi\\prestashop\\Handler\\Config\\CheckStatusHandlerInterface' => $baseDir . '/src/Handler/Config/CheckStatusHandlerInterface.php',
'izi\\prestashop\\Handler\\Config\\DownloadModuleDataHandler' => $baseDir . '/src/Handler/Config/DownloadModuleDataHandler.php',
'izi\\prestashop\\Handler\\Config\\DownloadModuleDataHandlerInterface' => $baseDir . '/src/Handler/Config/DownloadModuleDataHandlerInterface.php',
'izi\\prestashop\\Handler\\Config\\ModuleStatus' => $baseDir . '/src/Handler/Config/ModuleStatus.php',
'izi\\prestashop\\Handler\\Config\\Status\\CacheStatusChecker' => $baseDir . '/src/Handler/Config/Status/CacheStatusChecker.php',
'izi\\prestashop\\Handler\\Config\\Status\\ConfigurationStatusChecker' => $baseDir . '/src/Handler/Config/Status/ConfigurationStatusChecker.php',
'izi\\prestashop\\Handler\\Config\\Status\\DeliveryOptionsStatusChecker' => $baseDir . '/src/Handler/Config/Status/DeliveryOptionsStatusChecker.php',
'izi\\prestashop\\Handler\\Config\\Status\\StatusCheckerInterface' => $baseDir . '/src/Handler/Config/Status/StatusCheckerInterface.php',
'izi\\prestashop\\Handler\\Config\\UpdateAdvancedConfigurationHandler' => $baseDir . '/src/Handler/Config/UpdateAdvancedConfigurationHandler.php',
'izi\\prestashop\\Handler\\Config\\UpdateAdvancedConfigurationHandlerInterface' => $baseDir . '/src/Handler/Config/UpdateAdvancedConfigurationHandlerInterface.php',
'izi\\prestashop\\Handler\\Config\\UpdateCartRuleOptionsHandler' => $baseDir . '/src/Handler/Config/UpdateCartRuleOptionsHandler.php',
'izi\\prestashop\\Handler\\Config\\UpdateCartRuleOptionsHandlerInterface' => $baseDir . '/src/Handler/Config/UpdateCartRuleOptionsHandlerInterface.php',
'izi\\prestashop\\Handler\\Config\\UpdateConsentsConfigurationHandler' => $baseDir . '/src/Handler/Config/UpdateConsentsConfigurationHandler.php',
'izi\\prestashop\\Handler\\Config\\UpdateConsentsConfigurationHandlerInterface' => $baseDir . '/src/Handler/Config/UpdateConsentsConfigurationHandlerInterface.php',
'izi\\prestashop\\Handler\\Config\\UpdateGeneralConfigurationHandler' => $baseDir . '/src/Handler/Config/UpdateGeneralConfigurationHandler.php',
'izi\\prestashop\\Handler\\Config\\UpdateGeneralConfigurationHandlerInterface' => $baseDir . '/src/Handler/Config/UpdateGeneralConfigurationHandlerInterface.php',
'izi\\prestashop\\Handler\\Config\\UpdateGuiConfigurationHandler' => $baseDir . '/src/Handler/Config/UpdateGuiConfigurationHandler.php',
'izi\\prestashop\\Handler\\Config\\UpdateGuiConfigurationHandlerInterface' => $baseDir . '/src/Handler/Config/UpdateGuiConfigurationHandlerInterface.php',
'izi\\prestashop\\Handler\\Config\\UpdateShippingConfigurationHandler' => $baseDir . '/src/Handler/Config/UpdateShippingConfigurationHandler.php',
'izi\\prestashop\\Handler\\Config\\UpdateShippingConfigurationHandlerInterface' => $baseDir . '/src/Handler/Config/UpdateShippingConfigurationHandlerInterface.php',
'izi\\prestashop\\Handler\\GetBasketBindingKeyHandler' => $baseDir . '/src/Handler/GetBasketBindingKeyHandler.php',
'izi\\prestashop\\Handler\\GetBasketBindingKeyHandlerInterface' => $baseDir . '/src/Handler/GetBasketBindingKeyHandlerInterface.php',
'izi\\prestashop\\Handler\\GetOrderConfirmationUrlHandler' => $baseDir . '/src/Handler/GetOrderConfirmationUrlHandler.php',
'izi\\prestashop\\Handler\\GetOrderConfirmationUrlHandlerInterface' => $baseDir . '/src/Handler/GetOrderConfirmationUrlHandlerInterface.php',
'izi\\prestashop\\Handler\\Result\\BasketBindingKey' => $baseDir . '/src/Handler/Result/BasketBindingKey.php',
'izi\\prestashop\\Handler\\UnbindBasketHandler' => $baseDir . '/src/Handler/UnbindBasketHandler.php',
'izi\\prestashop\\Handler\\UnbindBasketHandlerInterface' => $baseDir . '/src/Handler/UnbindBasketHandlerInterface.php',
'izi\\prestashop\\Handler\\UpdateBasketHandler' => $baseDir . '/src/Handler/UpdateBasketHandler.php',
'izi\\prestashop\\Handler\\UpdateBasketHandlerInterface' => $baseDir . '/src/Handler/UpdateBasketHandlerInterface.php',
'izi\\prestashop\\Handler\\UpdateOrderAddressDeliveryHandler' => $baseDir . '/src/Handler/UpdateOrderAddressDeliveryHandler.php',
'izi\\prestashop\\Handler\\UpdateOrderAddressDeliveryHandlerInterface' => $baseDir . '/src/Handler/UpdateOrderAddressDeliveryHandlerInterface.php',
'izi\\prestashop\\Handler\\UpdateOrderStatusHandler' => $baseDir . '/src/Handler/UpdateOrderStatusHandler.php',
'izi\\prestashop\\Handler\\UpdateOrderStatusHandlerInterface' => $baseDir . '/src/Handler/UpdateOrderStatusHandlerInterface.php',
'izi\\prestashop\\Handler\\UpdateOrderTrackingNumbersHandler' => $baseDir . '/src/Handler/UpdateOrderTrackingNumbersHandler.php',
'izi\\prestashop\\Handler\\UpdateOrderTrackingNumbersHandlerInterface' => $baseDir . '/src/Handler/UpdateOrderTrackingNumbersHandlerInterface.php',
'izi\\prestashop\\Hook\\Adapter\\HookDispatcher' => $baseDir . '/src/Hook/Adapter/HookDispatcher.php',
'izi\\prestashop\\Hook\\Admin\\ActionAdminCartRuleSaveAfter' => $baseDir . '/src/Hook/Admin/ActionAdminCartRuleSaveAfter.php',
'izi\\prestashop\\Hook\\Admin\\ActionAdminControllerSetMedia' => $baseDir . '/src/Hook/Admin/ActionAdminControllerSetMedia.php',
'izi\\prestashop\\Hook\\Admin\\ActionAdminInPostConfirmedShipmentsControllerAfter' => $baseDir . '/src/Hook/Admin/ActionAdminInPostConfirmedShipmentsControllerAfter.php',
'izi\\prestashop\\Hook\\Admin\\ActionAdminInPostConfirmedShipmentsControllerBefore' => $baseDir . '/src/Hook/Admin/ActionAdminInPostConfirmedShipmentsControllerBefore.php',
'izi\\prestashop\\Hook\\Admin\\DisplayAdminOrderLeft' => $baseDir . '/src/Hook/Admin/DisplayAdminOrderLeft.php',
'izi\\prestashop\\Hook\\Admin\\DisplayAdminOrderSide' => $baseDir . '/src/Hook/Admin/DisplayAdminOrderSide.php',
'izi\\prestashop\\Hook\\Admin\\DisplayBackOfficeHeader' => $baseDir . '/src/Hook/Admin/DisplayBackOfficeHeader.php',
'izi\\prestashop\\Hook\\AliasedHookInterface' => $baseDir . '/src/Hook/AliasedHookInterface.php',
'izi\\prestashop\\Hook\\AssetRegistryUpdaterTrait' => $baseDir . '/src/Hook/AssetRegistryUpdaterTrait.php',
'izi\\prestashop\\Hook\\Common\\ActionCartDeleteBefore' => $baseDir . '/src/Hook/Common/ActionCartDeleteBefore.php',
'izi\\prestashop\\Hook\\Common\\ActionCartUpdateAfter' => $baseDir . '/src/Hook/Common/ActionCartUpdateAfter.php',
'izi\\prestashop\\Hook\\Common\\ActionEmailSendBefore' => $baseDir . '/src/Hook/Common/ActionEmailSendBefore.php',
'izi\\prestashop\\Hook\\Common\\ActionObjectOrderUpdateAfter' => $baseDir . '/src/Hook/Common/ActionObjectOrderUpdateAfter.php',
'izi\\prestashop\\Hook\\Common\\ActionObjectOrderUpdateBefore' => $baseDir . '/src/Hook/Common/ActionObjectOrderUpdateBefore.php',
'izi\\prestashop\\Hook\\Common\\ActionOrderStatusPostUpdate' => $baseDir . '/src/Hook/Common/ActionOrderStatusPostUpdate.php',
'izi\\prestashop\\Hook\\Common\\ActionShipmentAddAfter' => $baseDir . '/src/Hook/Common/ActionShipmentAddAfter.php',
'izi\\prestashop\\Hook\\Common\\ActionShipmentUpdateAfter' => $baseDir . '/src/Hook/Common/ActionShipmentUpdateAfter.php',
'izi\\prestashop\\Hook\\Common\\ActionShipmentUpdateBefore' => $baseDir . '/src/Hook/Common/ActionShipmentUpdateBefore.php',
'izi\\prestashop\\Hook\\Common\\ActionValidateOrder' => $baseDir . '/src/Hook/Common/ActionValidateOrder.php',
'izi\\prestashop\\Hook\\Common\\Product\\ActionCombinationDeleteAfter' => $baseDir . '/src/Hook/Common/Product/ActionCombinationDeleteAfter.php',
'izi\\prestashop\\Hook\\Common\\Product\\ActionCombinationDeleteBefore' => $baseDir . '/src/Hook/Common/Product/ActionCombinationDeleteBefore.php',
'izi\\prestashop\\Hook\\Common\\Product\\ActionCombinationUpdateAfter' => $baseDir . '/src/Hook/Common/Product/ActionCombinationUpdateAfter.php',
'izi\\prestashop\\Hook\\Common\\Product\\ActionImageAddAfter' => $baseDir . '/src/Hook/Common/Product/ActionImageAddAfter.php',
'izi\\prestashop\\Hook\\Common\\Product\\ActionImageDeleteAfter' => $baseDir . '/src/Hook/Common/Product/ActionImageDeleteAfter.php',
'izi\\prestashop\\Hook\\Common\\Product\\ActionProductDeleteAfter' => $baseDir . '/src/Hook/Common/Product/ActionProductDeleteAfter.php',
'izi\\prestashop\\Hook\\Common\\Product\\ActionProductDeleteBefore' => $baseDir . '/src/Hook/Common/Product/ActionProductDeleteBefore.php',
'izi\\prestashop\\Hook\\Common\\Product\\ActionProductUpdateAfter' => $baseDir . '/src/Hook/Common/Product/ActionProductUpdateAfter.php',
'izi\\prestashop\\Hook\\Common\\Product\\ActionSpecificPriceAddAfter' => $baseDir . '/src/Hook/Common/Product/ActionSpecificPriceAddAfter.php',
'izi\\prestashop\\Hook\\Common\\Product\\ActionSpecificPriceDeleteAfter' => $baseDir . '/src/Hook/Common/Product/ActionSpecificPriceDeleteAfter.php',
'izi\\prestashop\\Hook\\Common\\Product\\ActionSpecificPriceUpdateAfter' => $baseDir . '/src/Hook/Common/Product/ActionSpecificPriceUpdateAfter.php',
'izi\\prestashop\\Hook\\Common\\Product\\ActionUpdateQuantity' => $baseDir . '/src/Hook/Common/Product/ActionUpdateQuantity.php',
'izi\\prestashop\\Hook\\Exception\\HookExceptionInterface' => $baseDir . '/src/Hook/Exception/HookExceptionInterface.php',
'izi\\prestashop\\Hook\\Exception\\HookExceptionTrait' => $baseDir . '/src/Hook/Exception/HookExceptionTrait.php',
'izi\\prestashop\\Hook\\Exception\\HookNotFoundException' => $baseDir . '/src/Hook/Exception/HookNotFoundException.php',
'izi\\prestashop\\Hook\\Exception\\HookNotImplementedException' => $baseDir . '/src/Hook/Exception/HookNotImplementedException.php',
'izi\\prestashop\\Hook\\Front\\ActionCartControllerAjaxUpdateResponse' => $baseDir . '/src/Hook/Front/ActionCartControllerAjaxUpdateResponse.php',
'izi\\prestashop\\Hook\\Front\\ActionFrontControllerSetMedia' => $baseDir . '/src/Hook/Front/ActionFrontControllerSetMedia.php',
'izi\\prestashop\\Hook\\Front\\ActionGetPaymentOptions' => $baseDir . '/src/Hook/Front/ActionGetPaymentOptions.php',
'izi\\prestashop\\Hook\\Front\\ButtonWidgetRendererTrait' => $baseDir . '/src/Hook/Front/ButtonWidgetRendererTrait.php',
'izi\\prestashop\\Hook\\Front\\DisplayCheckoutSummaryTop' => $baseDir . '/src/Hook/Front/DisplayCheckoutSummaryTop.php',
'izi\\prestashop\\Hook\\Front\\DisplayCustomerAccountFormTop' => $baseDir . '/src/Hook/Front/DisplayCustomerAccountFormTop.php',
'izi\\prestashop\\Hook\\Front\\DisplayCustomerLoginFormAfter' => $baseDir . '/src/Hook/Front/DisplayCustomerLoginFormAfter.php',
'izi\\prestashop\\Hook\\Front\\DisplayExpressCheckout' => $baseDir . '/src/Hook/Front/DisplayExpressCheckout.php',
'izi\\prestashop\\Hook\\Front\\DisplayHeader' => $baseDir . '/src/Hook/Front/DisplayHeader.php',
'izi\\prestashop\\Hook\\Front\\DisplayIziCartPreviewButton' => $baseDir . '/src/Hook/Front/DisplayIziCartPreviewButton.php',
'izi\\prestashop\\Hook\\Front\\DisplayIziCheckoutButton' => $baseDir . '/src/Hook/Front/DisplayIziCheckoutButton.php',
'izi\\prestashop\\Hook\\Front\\DisplayIziThankYou' => $baseDir . '/src/Hook/Front/DisplayIziThankYou.php',
'izi\\prestashop\\Hook\\Front\\DisplayOrderConfirmation' => $baseDir . '/src/Hook/Front/DisplayOrderConfirmation.php',
'izi\\prestashop\\Hook\\Front\\DisplayPaymentReturn' => $baseDir . '/src/Hook/Front/DisplayPaymentReturn.php',
'izi\\prestashop\\Hook\\Front\\DisplayProductActions' => $baseDir . '/src/Hook/Front/DisplayProductActions.php',
'izi\\prestashop\\Hook\\Front\\DisplayProductAdditionalInfo' => $baseDir . '/src/Hook/Front/DisplayProductAdditionalInfo.php',
'izi\\prestashop\\Hook\\Front\\DisplayShoppingCart' => $baseDir . '/src/Hook/Front/DisplayShoppingCart.php',
'izi\\prestashop\\Hook\\Front\\DisplayShoppingCartFooter' => $baseDir . '/src/Hook/Front/DisplayShoppingCartFooter.php',
'izi\\prestashop\\Hook\\Front\\ProductWidgetRendererTrait' => $baseDir . '/src/Hook/Front/ProductWidgetRendererTrait.php',
'izi\\prestashop\\Hook\\Front\\ThankYouWidgetRendererTrait' => $baseDir . '/src/Hook/Front/ThankYouWidgetRendererTrait.php',
'izi\\prestashop\\Hook\\HookDispatcherInterface' => $baseDir . '/src/Hook/HookDispatcherInterface.php',
'izi\\prestashop\\Hook\\HookExecutor' => $baseDir . '/src/Hook/HookExecutor.php',
'izi\\prestashop\\Hook\\HookExecutorInterface' => $baseDir . '/src/Hook/HookExecutorInterface.php',
'izi\\prestashop\\Hook\\HookInterface' => $baseDir . '/src/Hook/HookInterface.php',
'izi\\prestashop\\Hook\\PrestaShopVersionAwareHookInterface' => $baseDir . '/src/Hook/PrestaShopVersionAwareHookInterface.php',
'izi\\prestashop\\Hook\\VersionRange' => $baseDir . '/src/Hook/VersionRange.php',
'izi\\prestashop\\Hook\\Widget' => $baseDir . '/src/Hook/Widget.php',
'izi\\prestashop\\Hook\\WidgetParametersProvider' => $baseDir . '/src/Hook/WidgetParametersProvider.php',
'izi\\prestashop\\Hook\\WidgetParametersProviderInterface' => $baseDir . '/src/Hook/WidgetParametersProviderInterface.php',
'izi\\prestashop\\HotProduct\\EventListener\\UpdateHotProductsListener' => $baseDir . '/src/HotProduct/EventListener/UpdateHotProductsListener.php',
'izi\\prestashop\\HotProduct\\Exception\\HotProductExceptionInterface' => $baseDir . '/src/HotProduct/Exception/HotProductExceptionInterface.php',
'izi\\prestashop\\HotProduct\\Exception\\HotProductExistsException' => $baseDir . '/src/HotProduct/Exception/HotProductExistsException.php',
'izi\\prestashop\\HotProduct\\Exception\\HotProductNotFoundException' => $baseDir . '/src/HotProduct/Exception/HotProductNotFoundException.php',
'izi\\prestashop\\HotProduct\\Exception\\InvalidProductDataException' => $baseDir . '/src/HotProduct/Exception/InvalidProductDataException.php',
'izi\\prestashop\\HotProduct\\Form\\CreateHotProductType' => $baseDir . '/src/HotProduct/Form/CreateHotProductType.php',
'izi\\prestashop\\HotProduct\\Form\\UpdateHotProductType' => $baseDir . '/src/HotProduct/Form/UpdateHotProductType.php',
'izi\\prestashop\\HotProduct\\HotProduct' => $baseDir . '/src/HotProduct/HotProduct.php',
'izi\\prestashop\\HotProduct\\HotProductDataMapper' => $baseDir . '/src/HotProduct/HotProductDataMapper.php',
'izi\\prestashop\\HotProduct\\HotProductDataMapperInterface' => $baseDir . '/src/HotProduct/HotProductDataMapperInterface.php',
'izi\\prestashop\\HotProduct\\HotProductRepository' => $baseDir . '/src/HotProduct/HotProductRepository.php',
'izi\\prestashop\\HotProduct\\HotProductRepositoryInterface' => $baseDir . '/src/HotProduct/HotProductRepositoryInterface.php',
'izi\\prestashop\\HotProduct\\HotProductValidator' => $baseDir . '/src/HotProduct/HotProductValidator.php',
'izi\\prestashop\\HotProduct\\MessageHandler\\CreateHotProductHandler' => $baseDir . '/src/HotProduct/MessageHandler/CreateHotProductHandler.php',
'izi\\prestashop\\HotProduct\\MessageHandler\\CreateHotProductHandlerInterface' => $baseDir . '/src/HotProduct/MessageHandler/CreateHotProductHandlerInterface.php',
'izi\\prestashop\\HotProduct\\MessageHandler\\DeleteHotProductHandler' => $baseDir . '/src/HotProduct/MessageHandler/DeleteHotProductHandler.php',
'izi\\prestashop\\HotProduct\\MessageHandler\\DeleteHotProductHandlerInterface' => $baseDir . '/src/HotProduct/MessageHandler/DeleteHotProductHandlerInterface.php',
'izi\\prestashop\\HotProduct\\MessageHandler\\DeleteRemoteProductHandler' => $baseDir . '/src/HotProduct/MessageHandler/DeleteRemoteProductHandler.php',
'izi\\prestashop\\HotProduct\\MessageHandler\\DeleteRemoteProductHandlerInterface' => $baseDir . '/src/HotProduct/MessageHandler/DeleteRemoteProductHandlerInterface.php',
'izi\\prestashop\\HotProduct\\MessageHandler\\ImportHotProductHandler' => $baseDir . '/src/HotProduct/MessageHandler/ImportHotProductHandler.php',
'izi\\prestashop\\HotProduct\\MessageHandler\\ImportHotProductHandlerInterface' => $baseDir . '/src/HotProduct/MessageHandler/ImportHotProductHandlerInterface.php',
'izi\\prestashop\\HotProduct\\MessageHandler\\UpdateHotProductHandler' => $baseDir . '/src/HotProduct/MessageHandler/UpdateHotProductHandler.php',
'izi\\prestashop\\HotProduct\\MessageHandler\\UpdateHotProductHandlerInterface' => $baseDir . '/src/HotProduct/MessageHandler/UpdateHotProductHandlerInterface.php',
'izi\\prestashop\\HotProduct\\Message\\CreateHotProductCommand' => $baseDir . '/src/HotProduct/Message/CreateHotProductCommand.php',
'izi\\prestashop\\HotProduct\\Message\\DeleteHotProductCommand' => $baseDir . '/src/HotProduct/Message/DeleteHotProductCommand.php',
'izi\\prestashop\\HotProduct\\Message\\DeleteRemoteProductCommand' => $baseDir . '/src/HotProduct/Message/DeleteRemoteProductCommand.php',
'izi\\prestashop\\HotProduct\\Message\\ImportHotProductCommand' => $baseDir . '/src/HotProduct/Message/ImportHotProductCommand.php',
'izi\\prestashop\\HotProduct\\Message\\UpdateHotProductCommand' => $baseDir . '/src/HotProduct/Message/UpdateHotProductCommand.php',
'izi\\prestashop\\HotProduct\\View\\HotProductListView' => $baseDir . '/src/HotProduct/View/HotProductListView.php',
'izi\\prestashop\\HotProduct\\View\\HotProductView' => $baseDir . '/src/HotProduct/View/HotProductView.php',
'izi\\prestashop\\HotProduct\\View\\HotProductViewDataFactory' => $baseDir . '/src/HotProduct/View/HotProductViewDataFactory.php',
'izi\\prestashop\\HttpKernel\\ServiceParamConverter' => $baseDir . '/src/HttpKernel/ServiceParamConverter.php',
'izi\\prestashop\\Http\\Client\\Adapter\\Guzzle5Adapter' => $baseDir . '/src/Http/Client/Adapter/Guzzle5Adapter.php',
'izi\\prestashop\\Http\\Client\\Adapter\\NetworkException' => $baseDir . '/src/Http/Client/Adapter/NetworkException.php',
'izi\\prestashop\\Http\\Client\\Adapter\\RequestException' => $baseDir . '/src/Http/Client/Adapter/RequestException.php',
'izi\\prestashop\\Http\\Client\\AuthorizingClient' => $baseDir . '/src/Http/Client/AuthorizingClient.php',
'izi\\prestashop\\Http\\Client\\Factory\\ClientFactoryInterface' => $baseDir . '/src/Http/Client/Factory/ClientFactoryInterface.php',
'izi\\prestashop\\Http\\Client\\Factory\\GuzzleClientFactory' => $baseDir . '/src/Http/Client/Factory/GuzzleClientFactory.php',
'izi\\prestashop\\Http\\Client\\LoggingClient' => $baseDir . '/src/Http/Client/LoggingClient.php',
'izi\\prestashop\\Http\\Client\\ModuleVersionInfoProvidingClient' => $baseDir . '/src/Http/Client/ModuleVersionInfoProvidingClient.php',
'izi\\prestashop\\Http\\Exception\\ClientException' => $baseDir . '/src/Http/Exception/ClientException.php',
'izi\\prestashop\\Http\\Exception\\HttpExceptionInterface' => $baseDir . '/src/Http/Exception/HttpExceptionInterface.php',
'izi\\prestashop\\Http\\Exception\\HttpExceptionTrait' => $baseDir . '/src/Http/Exception/HttpExceptionTrait.php',
'izi\\prestashop\\Http\\Exception\\RedirectionException' => $baseDir . '/src/Http/Exception/RedirectionException.php',
'izi\\prestashop\\Http\\Exception\\ServerException' => $baseDir . '/src/Http/Exception/ServerException.php',
'izi\\prestashop\\Http\\Response\\EventStreamResponse' => $baseDir . '/src/Http/Response/EventStreamResponse.php',
'izi\\prestashop\\Http\\Response\\ServerSentEvent' => $baseDir . '/src/Http/Response/ServerSentEvent.php',
'izi\\prestashop\\Http\\Response\\ServerSentEventBuilder' => $baseDir . '/src/Http/Response/ServerSentEventBuilder.php',
'izi\\prestashop\\Http\\Util\\UriResolver' => $baseDir . '/src/Http/Util/UriResolver.php',
'izi\\prestashop\\Installer\\DatabaseInstaller' => $baseDir . '/src/Installer/DatabaseInstaller.php',
'izi\\prestashop\\Installer\\DatabaseMigrationInterface' => $baseDir . '/src/Installer/DatabaseMigrationInterface.php',
'izi\\prestashop\\Installer\\Database\\AbstractMigration' => $baseDir . '/src/Installer/Database/AbstractMigration.php',
'izi\\prestashop\\Installer\\Database\\Version_1_0_0' => $baseDir . '/src/Installer/Database/Version_1_0_0.php',
'izi\\prestashop\\Installer\\Database\\Version_1_11_0' => $baseDir . '/src/Installer/Database/Version_1_11_0.php',
'izi\\prestashop\\Installer\\Database\\Version_1_4_0' => $baseDir . '/src/Installer/Database/Version_1_4_0.php',
'izi\\prestashop\\Installer\\Database\\Version_1_9_0' => $baseDir . '/src/Installer/Database/Version_1_9_0.php',
'izi\\prestashop\\Installer\\Database\\Version_2_0_0' => $baseDir . '/src/Installer/Database/Version_2_0_0.php',
'izi\\prestashop\\Installer\\Database\\Version_2_1_0' => $baseDir . '/src/Installer/Database/Version_2_1_0.php',
'izi\\prestashop\\Installer\\Database\\Version_2_2_0' => $baseDir . '/src/Installer/Database/Version_2_2_0.php',
'izi\\prestashop\\Log\\Handler\\AbstractHandlerFactory' => $baseDir . '/src/Log/Handler/AbstractHandlerFactory.php',
'izi\\prestashop\\Log\\Handler\\HandlerFactoryInterface' => $baseDir . '/src/Log/Handler/HandlerFactoryInterface.php',
'izi\\prestashop\\Log\\Handler\\RotatingFileHandlerFactory' => $baseDir . '/src/Log/Handler/RotatingFileHandlerFactory.php',
'izi\\prestashop\\Log\\LoggerFactoryInterface' => $baseDir . '/src/Log/LoggerFactoryInterface.php',
'izi\\prestashop\\Log\\MonologLoggerFactory' => $baseDir . '/src/Log/MonologLoggerFactory.php',
'izi\\prestashop\\Mail\\Dto\\MailRecipient' => $baseDir . '/src/Mail/Dto/MailRecipient.php',
'izi\\prestashop\\Mail\\EventListener\\ReplaceOrderNotificationRecipientListener' => $baseDir . '/src/Mail/EventListener/ReplaceOrderNotificationRecipientListener.php',
'izi\\prestashop\\Mail\\Event\\SendEmailEvent' => $baseDir . '/src/Mail/Event/SendEmailEvent.php',
'izi\\prestashop\\Mail\\Resolver\\OrderMailRecipientResolver' => $baseDir . '/src/Mail/Resolver/OrderMailRecipientResolver.php',
'izi\\prestashop\\MerchantApi\\Command\\AddProductToBasketCommand' => $baseDir . '/src/MerchantApi/Command/AddProductToBasketCommand.php',
'izi\\prestashop\\MerchantApi\\Command\\Basket\\AddProductToCartCommand' => $baseDir . '/src/MerchantApi/Command/Basket/AddProductToCartCommand.php',
'izi\\prestashop\\MerchantApi\\Command\\Basket\\CreateCartCommand' => $baseDir . '/src/MerchantApi/Command/Basket/CreateCartCommand.php',
'izi\\prestashop\\MerchantApi\\Command\\Basket\\IncrementCartQuantityCommand' => $baseDir . '/src/MerchantApi/Command/Basket/IncrementCartQuantityCommand.php',
'izi\\prestashop\\MerchantApi\\Command\\ConfirmBasketBindingCommand' => $baseDir . '/src/MerchantApi/Command/ConfirmBasketBindingCommand.php',
'izi\\prestashop\\MerchantApi\\Command\\CreateOrderCommand' => $baseDir . '/src/MerchantApi/Command/CreateOrderCommand.php',
'izi\\prestashop\\MerchantApi\\Command\\DeleteBasketBindingCommand' => $baseDir . '/src/MerchantApi/Command/DeleteBasketBindingCommand.php',
'izi\\prestashop\\MerchantApi\\Command\\GetBasketCommand' => $baseDir . '/src/MerchantApi/Command/GetBasketCommand.php',
'izi\\prestashop\\MerchantApi\\Command\\GetOrderCommand' => $baseDir . '/src/MerchantApi/Command/GetOrderCommand.php',
'izi\\prestashop\\MerchantApi\\Command\\GetProductsCommand' => $baseDir . '/src/MerchantApi/Command/GetProductsCommand.php',
'izi\\prestashop\\MerchantApi\\Command\\Order\\UpdateCartMessageCommand' => $baseDir . '/src/MerchantApi/Command/Order/UpdateCartMessageCommand.php',
'izi\\prestashop\\MerchantApi\\Command\\UpdateBasketCommand' => $baseDir . '/src/MerchantApi/Command/UpdateBasketCommand.php',
'izi\\prestashop\\MerchantApi\\Command\\UpdateOrderCommand' => $baseDir . '/src/MerchantApi/Command/UpdateOrderCommand.php',
'izi\\prestashop\\MerchantApi\\EventListener\\UpdateCartRulesListener' => $baseDir . '/src/MerchantApi/EventListener/UpdateCartRulesListener.php',
'izi\\prestashop\\MerchantApi\\Event\\CartUpdatedEvent' => $baseDir . '/src/MerchantApi/Event/CartUpdatedEvent.php',
'izi\\prestashop\\MerchantApi\\Exception\\ApiException' => $baseDir . '/src/MerchantApi/Exception/ApiException.php',
'izi\\prestashop\\MerchantApi\\Exception\\BadGatewayException' => $baseDir . '/src/MerchantApi/Exception/BadGatewayException.php',
'izi\\prestashop\\MerchantApi\\Exception\\BadRequestException' => $baseDir . '/src/MerchantApi/Exception/BadRequestException.php',
'izi\\prestashop\\MerchantApi\\Exception\\BasketNotFoundException' => $baseDir . '/src/MerchantApi/Exception/BasketNotFoundException.php',
'izi\\prestashop\\MerchantApi\\Exception\\CannotAddProductException' => $baseDir . '/src/MerchantApi/Exception/CannotAddProductException.php',
'izi\\prestashop\\MerchantApi\\Exception\\CannotCreateBasketException' => $baseDir . '/src/MerchantApi/Exception/CannotCreateBasketException.php',
'izi\\prestashop\\MerchantApi\\Exception\\CannotCreateOrderException' => $baseDir . '/src/MerchantApi/Exception/CannotCreateOrderException.php',
'izi\\prestashop\\MerchantApi\\Exception\\InternalServerErrorException' => $baseDir . '/src/MerchantApi/Exception/InternalServerErrorException.php',
'izi\\prestashop\\MerchantApi\\Exception\\InvalidSignatureException' => $baseDir . '/src/MerchantApi/Exception/InvalidSignatureException.php',
'izi\\prestashop\\MerchantApi\\Exception\\MalformedRequestException' => $baseDir . '/src/MerchantApi/Exception/MalformedRequestException.php',
'izi\\prestashop\\MerchantApi\\Exception\\OrderExistsException' => $baseDir . '/src/MerchantApi/Exception/OrderExistsException.php',
'izi\\prestashop\\MerchantApi\\Exception\\OrderNotFoundException' => $baseDir . '/src/MerchantApi/Exception/OrderNotFoundException.php',
'izi\\prestashop\\MerchantApi\\Exception\\ProductNotFoundException' => $baseDir . '/src/MerchantApi/Exception/ProductNotFoundException.php',
'izi\\prestashop\\MerchantApi\\Exception\\ProductOutOfStockException' => $baseDir . '/src/MerchantApi/Exception/ProductOutOfStockException.php',
'izi\\prestashop\\MerchantApi\\Exception\\ServiceUnavailableException' => $baseDir . '/src/MerchantApi/Exception/ServiceUnavailableException.php',
'izi\\prestashop\\MerchantApi\\Firewall\\MerchantApiAuthenticator' => $baseDir . '/src/MerchantApi/Firewall/MerchantApiAuthenticator.php',
'izi\\prestashop\\MerchantApi\\Firewall\\SigningKeysService' => $baseDir . '/src/MerchantApi/Firewall/SigningKeysService.php',
'izi\\prestashop\\MerchantApi\\Firewall\\SigningKeysServiceInterface' => $baseDir . '/src/MerchantApi/Firewall/SigningKeysServiceInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\AddProductToBasketHandler' => $baseDir . '/src/MerchantApi/Handler/AddProductToBasketHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\AddProductToBasketHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/AddProductToBasketHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\Basket\\AddProductToCartHandler' => $baseDir . '/src/MerchantApi/Handler/Basket/AddProductToCartHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\Basket\\AddProductToCartHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/Basket/AddProductToCartHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\Basket\\BasketEventHandler' => $baseDir . '/src/MerchantApi/Handler/Basket/BasketEventHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\Basket\\BasketEventHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/Basket/BasketEventHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\Basket\\CreateCartHandler' => $baseDir . '/src/MerchantApi/Handler/Basket/CreateCartHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\Basket\\CreateCartHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/Basket/CreateCartHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\Basket\\IncrementCartQuantityHandler' => $baseDir . '/src/MerchantApi/Handler/Basket/IncrementCartQuantityHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\Basket\\IncrementCartQuantityHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/Basket/IncrementCartQuantityHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\Basket\\ProductsQuantityEventHandler' => $baseDir . '/src/MerchantApi/Handler/Basket/ProductsQuantityEventHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\Basket\\PromoCodesEventHandler' => $baseDir . '/src/MerchantApi/Handler/Basket/PromoCodesEventHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\Basket\\RelatedProductsEventHandler' => $baseDir . '/src/MerchantApi/Handler/Basket/RelatedProductsEventHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\ConfirmBasketBindingHandler' => $baseDir . '/src/MerchantApi/Handler/ConfirmBasketBindingHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\ConfirmBasketBindingHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/ConfirmBasketBindingHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\CreateOrderHandler' => $baseDir . '/src/MerchantApi/Handler/CreateOrderHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\CreateOrderHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/CreateOrderHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\DeleteBasketBindingHandler' => $baseDir . '/src/MerchantApi/Handler/DeleteBasketBindingHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\DeleteBasketBindingHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/DeleteBasketBindingHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\GetBasketHandler' => $baseDir . '/src/MerchantApi/Handler/GetBasketHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\GetBasketHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/GetBasketHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\GetOrderHandler' => $baseDir . '/src/MerchantApi/Handler/GetOrderHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\GetOrderHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/GetOrderHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\GetProductsHandler' => $baseDir . '/src/MerchantApi/Handler/GetProductsHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\GetProductsHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/GetProductsHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\Order\\UpdateCartMessageHandler' => $baseDir . '/src/MerchantApi/Handler/Order/UpdateCartMessageHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\Order\\UpdateCartMessageHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/Order/UpdateCartMessageHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\UpdateBasketHandler' => $baseDir . '/src/MerchantApi/Handler/UpdateBasketHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\UpdateBasketHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/UpdateBasketHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Handler\\UpdateOrderHandler' => $baseDir . '/src/MerchantApi/Handler/UpdateOrderHandler.php',
'izi\\prestashop\\MerchantApi\\Handler\\UpdateOrderHandlerInterface' => $baseDir . '/src/MerchantApi/Handler/UpdateOrderHandlerInterface.php',
'izi\\prestashop\\MerchantApi\\Model\\Basket\\Request\\BasketEvent' => $baseDir . '/src/MerchantApi/Model/Basket/Request/BasketEvent.php',
'izi\\prestashop\\MerchantApi\\Model\\Basket\\Request\\BasketId' => $baseDir . '/src/MerchantApi/Model/Basket/Request/BasketId.php',
'izi\\prestashop\\MerchantApi\\Model\\Basket\\Request\\BindingConfirmation' => $baseDir . '/src/MerchantApi/Model/Basket/Request/BindingConfirmation.php',
'izi\\prestashop\\MerchantApi\\Model\\Basket\\Request\\BindingStatus' => $baseDir . '/src/MerchantApi/Model/Basket/Request/BindingStatus.php',
'izi\\prestashop\\MerchantApi\\Model\\Basket\\Request\\Browser' => $baseDir . '/src/MerchantApi/Model/Basket/Request/Browser.php',
'izi\\prestashop\\MerchantApi\\Model\\Basket\\Request\\EventType' => $baseDir . '/src/MerchantApi/Model/Basket/Request/EventType.php',
'izi\\prestashop\\MerchantApi\\Model\\Basket\\Request\\Quantity' => $baseDir . '/src/MerchantApi/Model/Basket/Request/Quantity.php',
'izi\\prestashop\\MerchantApi\\Model\\Basket\\Request\\QuantityData' => $baseDir . '/src/MerchantApi/Model/Basket/Request/QuantityData.php',
'izi\\prestashop\\MerchantApi\\Model\\Basket\\Request\\RelatedProductData' => $baseDir . '/src/MerchantApi/Model/Basket/Request/RelatedProductData.php',
'izi\\prestashop\\MerchantApi\\Model\\Basket\\Response\\Basket' => $baseDir . '/src/MerchantApi/Model/Basket/Response/Basket.php',
'izi\\prestashop\\MerchantApi\\Model\\Basket\\Response\\BasketTrait' => $baseDir . '/src/MerchantApi/Model/Basket/Response/BasketTrait.php',
'izi\\prestashop\\MerchantApi\\Model\\Basket\\Response\\IdentifiableBasket' => $baseDir . '/src/MerchantApi/Model/Basket/Response/IdentifiableBasket.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Request\\AccountInfo' => $baseDir . '/src/MerchantApi/Model/Order/Request/AccountInfo.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Request\\AddressDetails' => $baseDir . '/src/MerchantApi/Model/Order/Request/AddressDetails.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Request\\ClientAddress' => $baseDir . '/src/MerchantApi/Model/Order/Request/ClientAddress.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Request\\CreateOrderRequest' => $baseDir . '/src/MerchantApi/Model/Order/Request/CreateOrderRequest.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Request\\Delivery' => $baseDir . '/src/MerchantApi/Model/Order/Request/Delivery.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Request\\DeliveryAddress' => $baseDir . '/src/MerchantApi/Model/Order/Request/DeliveryAddress.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Request\\EventData' => $baseDir . '/src/MerchantApi/Model/Order/Request/EventData.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Request\\OrderDetails' => $baseDir . '/src/MerchantApi/Model/Order/Request/OrderDetails.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Request\\OrderEvent' => $baseDir . '/src/MerchantApi/Model/Order/Request/OrderEvent.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Request\\OrderStatus' => $baseDir . '/src/MerchantApi/Model/Order/Request/OrderStatus.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Request\\PaymentStatus' => $baseDir . '/src/MerchantApi/Model/Order/Request/PaymentStatus.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Response\\Delivery' => $baseDir . '/src/MerchantApi/Model/Order/Response/Delivery.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Response\\Order' => $baseDir . '/src/MerchantApi/Model/Order/Response/Order.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Response\\OrderDetails' => $baseDir . '/src/MerchantApi/Model/Order/Response/OrderDetails.php',
'izi\\prestashop\\MerchantApi\\Model\\Order\\Response\\OrderStatusData' => $baseDir . '/src/MerchantApi/Model/Order/Response/OrderStatusData.php',
'izi\\prestashop\\MerchantApi\\Model\\Product\\Response\\Products' => $baseDir . '/src/MerchantApi/Model/Product/Response/Products.php',
'izi\\prestashop\\Module\\Exception\\ModuleErrorInterface' => $baseDir . '/src/Module/Exception/ModuleErrorInterface.php',
'izi\\prestashop\\Module\\Exception\\PrestaShopModuleErrorException' => $baseDir . '/src/Module/Exception/PrestaShopModuleErrorException.php',
'izi\\prestashop\\Module\\ModuleRepository' => $baseDir . '/src/Module/ModuleRepository.php',
'izi\\prestashop\\OAuth2\\Authentication\\AuthenticationMethodInterface' => $baseDir . '/src/OAuth2/Authentication/AuthenticationMethodInterface.php',
'izi\\prestashop\\OAuth2\\Authentication\\ClientCredentials' => $baseDir . '/src/OAuth2/Authentication/ClientCredentials.php',
'izi\\prestashop\\OAuth2\\Authentication\\ClientCredentialsInterface' => $baseDir . '/src/OAuth2/Authentication/ClientCredentialsInterface.php',
'izi\\prestashop\\OAuth2\\Authentication\\ClientCredentialsRepositoryInterface' => $baseDir . '/src/OAuth2/Authentication/ClientCredentialsRepositoryInterface.php',
'izi\\prestashop\\OAuth2\\Authentication\\ClientSecretPost' => $baseDir . '/src/OAuth2/Authentication/ClientSecretPost.php',
'izi\\prestashop\\OAuth2\\Authentication\\None' => $baseDir . '/src/OAuth2/Authentication/None.php',
'izi\\prestashop\\OAuth2\\AuthorizationProvider' => $baseDir . '/src/OAuth2/AuthorizationProvider.php',
'izi\\prestashop\\OAuth2\\AuthorizationProviderFactoryInterface' => $baseDir . '/src/OAuth2/AuthorizationProviderFactoryInterface.php',
'izi\\prestashop\\OAuth2\\AuthorizationProviderInterface' => $baseDir . '/src/OAuth2/AuthorizationProviderInterface.php',
'izi\\prestashop\\OAuth2\\AuthorizationServerClient' => $baseDir . '/src/OAuth2/AuthorizationServerClient.php',
'izi\\prestashop\\OAuth2\\AuthorizationServerClientInterface' => $baseDir . '/src/OAuth2/AuthorizationServerClientInterface.php',
'izi\\prestashop\\OAuth2\\Exception\\AccessTokenRequestException' => $baseDir . '/src/OAuth2/Exception/AccessTokenRequestException.php',
'izi\\prestashop\\OAuth2\\Exception\\NetworkException' => $baseDir . '/src/OAuth2/Exception/NetworkException.php',
'izi\\prestashop\\OAuth2\\Exception\\OAuth2ExceptionInterface' => $baseDir . '/src/OAuth2/Exception/OAuth2ExceptionInterface.php',
'izi\\prestashop\\OAuth2\\Exception\\UnexpectedValueException' => $baseDir . '/src/OAuth2/Exception/UnexpectedValueException.php',
'izi\\prestashop\\OAuth2\\Grant\\AbstractGrant' => $baseDir . '/src/OAuth2/Grant/AbstractGrant.php',
'izi\\prestashop\\OAuth2\\Grant\\ClientCredentialsGrant' => $baseDir . '/src/OAuth2/Grant/ClientCredentialsGrant.php',
'izi\\prestashop\\OAuth2\\Grant\\GrantTypeInterface' => $baseDir . '/src/OAuth2/Grant/GrantTypeInterface.php',
'izi\\prestashop\\OAuth2\\Grant\\RefreshTokenGrant' => $baseDir . '/src/OAuth2/Grant/RefreshTokenGrant.php',
'izi\\prestashop\\OAuth2\\LazyAuthorizationProvider' => $baseDir . '/src/OAuth2/LazyAuthorizationProvider.php',
'izi\\prestashop\\OAuth2\\Token\\AccessTokenFactoryInterface' => $baseDir . '/src/OAuth2/Token/AccessTokenFactoryInterface.php',
'izi\\prestashop\\OAuth2\\Token\\AccessTokenFactoryTrait' => $baseDir . '/src/OAuth2/Token/AccessTokenFactoryTrait.php',
'izi\\prestashop\\OAuth2\\Token\\AccessTokenInterface' => $baseDir . '/src/OAuth2/Token/AccessTokenInterface.php',
'izi\\prestashop\\OAuth2\\Token\\AccessTokenRepositoryInterface' => $baseDir . '/src/OAuth2/Token/AccessTokenRepositoryInterface.php',
'izi\\prestashop\\OAuth2\\Token\\AccessTokenTrait' => $baseDir . '/src/OAuth2/Token/AccessTokenTrait.php',
'izi\\prestashop\\OAuth2\\Token\\BearerToken' => $baseDir . '/src/OAuth2/Token/BearerToken.php',
'izi\\prestashop\\OAuth2\\Token\\BearerTokenFactory' => $baseDir . '/src/OAuth2/Token/BearerTokenFactory.php',
'izi\\prestashop\\OAuth2\\Token\\InMemoryTokenRepository' => $baseDir . '/src/OAuth2/Token/InMemoryTokenRepository.php',
'izi\\prestashop\\OAuth2\\UriCollection' => $baseDir . '/src/OAuth2/UriCollection.php',
'izi\\prestashop\\OAuth2\\UriCollectionInterface' => $baseDir . '/src/OAuth2/UriCollectionInterface.php',
'izi\\prestashop\\ObjectModel\\Entity\\InPostIziBasketSession' => $baseDir . '/src/ObjectModel/Entity/InPostIziBasketSession.php',
'izi\\prestashop\\ObjectModel\\Exception\\InvalidDataException' => $baseDir . '/src/ObjectModel/Exception/InvalidDataException.php',
'izi\\prestashop\\ObjectModel\\Hydrator' => $baseDir . '/src/ObjectModel/Hydrator.php',
'izi\\prestashop\\ObjectModel\\HydratorInterface' => $baseDir . '/src/ObjectModel/HydratorInterface.php',
'izi\\prestashop\\ObjectModel\\ObjectManager' => $baseDir . '/src/ObjectModel/ObjectManager.php',
'izi\\prestashop\\ObjectModel\\ObjectManagerInterface' => $baseDir . '/src/ObjectModel/ObjectManagerInterface.php',
'izi\\prestashop\\ObjectModel\\OrderMaintainingLoaderTrait' => $baseDir . '/src/ObjectModel/OrderMaintainingLoaderTrait.php',
'izi\\prestashop\\ObjectModel\\Query' => $baseDir . '/src/ObjectModel/Query.php',
'izi\\prestashop\\ObjectModel\\QueryBuilder' => $baseDir . '/src/ObjectModel/QueryBuilder.php',
'izi\\prestashop\\ObjectModel\\Repository\\CarrierRepository' => $baseDir . '/src/ObjectModel/Repository/CarrierRepository.php',
'izi\\prestashop\\ObjectModel\\Repository\\CartRuleRepository' => $baseDir . '/src/ObjectModel/Repository/CartRuleRepository.php',
'izi\\prestashop\\ObjectModel\\Repository\\CmsPageRepository' => $baseDir . '/src/ObjectModel/Repository/CmsPageRepository.php',
'izi\\prestashop\\ObjectModel\\Repository\\CombinationRepository' => $baseDir . '/src/ObjectModel/Repository/CombinationRepository.php',
'izi\\prestashop\\ObjectModel\\Repository\\ConfigurationRepository' => $baseDir . '/src/ObjectModel/Repository/ConfigurationRepository.php',
'izi\\prestashop\\ObjectModel\\Repository\\CurrencyRepository' => $baseDir . '/src/ObjectModel/Repository/CurrencyRepository.php',
'izi\\prestashop\\ObjectModel\\Repository\\HookRepository' => $baseDir . '/src/ObjectModel/Repository/HookRepository.php',
'izi\\prestashop\\ObjectModel\\Repository\\ImageTypeRepository' => $baseDir . '/src/ObjectModel/Repository/ImageTypeRepository.php',
'izi\\prestashop\\ObjectModel\\Repository\\ObjectRepository' => $baseDir . '/src/ObjectModel/Repository/ObjectRepository.php',
'izi\\prestashop\\ObjectModel\\Repository\\ObjectRepositoryFactory' => $baseDir . '/src/ObjectModel/Repository/ObjectRepositoryFactory.php',
'izi\\prestashop\\ObjectModel\\Repository\\ObjectRepositoryFactoryInterface' => $baseDir . '/src/ObjectModel/Repository/ObjectRepositoryFactoryInterface.php',
'izi\\prestashop\\ObjectModel\\Repository\\ObjectRepositoryInterface' => $baseDir . '/src/ObjectModel/Repository/ObjectRepositoryInterface.php',
'izi\\prestashop\\ObjectModel\\Repository\\ProductRepository' => $baseDir . '/src/ObjectModel/Repository/ProductRepository.php',
'izi\\prestashop\\ObjectModel\\Repository\\RangePriceRepository' => $baseDir . '/src/ObjectModel/Repository/RangePriceRepository.php',
'izi\\prestashop\\ObjectModel\\Repository\\RangeWeightRepository' => $baseDir . '/src/ObjectModel/Repository/RangeWeightRepository.php',
'izi\\prestashop\\ObjectModel\\Repository\\ShipmentRepository' => $baseDir . '/src/ObjectModel/Repository/ShipmentRepository.php',
'izi\\prestashop\\Order\\Address\\AddressDataMapper' => $baseDir . '/src/Order/Address/AddressDataMapper.php',
'izi\\prestashop\\Order\\ContextCustomerUpdater' => $baseDir . '/src/Order/ContextCustomerUpdater.php',
'izi\\prestashop\\Order\\Message\\ExpressionLanguage' => $baseDir . '/src/Order/Message/ExpressionLanguage.php',
'izi\\prestashop\\Order\\Message\\Message' => $baseDir . '/src/Order/Message/Message.php',
'izi\\prestashop\\Order\\Message\\MessageFormatter' => $baseDir . '/src/Order/Message/MessageFormatter.php',
'izi\\prestashop\\Order\\Message\\MessageFormatterInterface' => $baseDir . '/src/Order/Message/MessageFormatterInterface.php',
'izi\\prestashop\\Order\\Message\\ParameterDescriptorInterface' => $baseDir . '/src/Order/Message/ParameterDescriptorInterface.php',
'izi\\prestashop\\Order\\Message\\ParametersExtractor' => $baseDir . '/src/Order/Message/ParametersExtractor.php',
'izi\\prestashop\\Order\\Message\\ParametersExtractorInterface' => $baseDir . '/src/Order/Message/ParametersExtractorInterface.php',
'izi\\prestashop\\Order\\Message\\Processor\\ConditionalBlockProcessor' => $baseDir . '/src/Order/Message/Processor/ConditionalBlockProcessor.php',
'izi\\prestashop\\Order\\Message\\Processor\\ExpressionLanguageProcessor' => $baseDir . '/src/Order/Message/Processor/ExpressionLanguageProcessor.php',
'izi\\prestashop\\Order\\Message\\Processor\\ParameterReplacementProcessor' => $baseDir . '/src/Order/Message/Processor/ParameterReplacementProcessor.php',
'izi\\prestashop\\Order\\Message\\Processor\\ProcessorInterface' => $baseDir . '/src/Order/Message/Processor/ProcessorInterface.php',
'izi\\prestashop\\Payment\\PaymentCurrencyChecker' => $baseDir . '/src/Payment/PaymentCurrencyChecker.php',
'izi\\prestashop\\PrestashopOrder' => $baseDir . '/src/PrestashopOrder.php',
'izi\\prestashop\\Product\\Event\\CombinationEvent' => $baseDir . '/src/Product/Event/CombinationEvent.php',
'izi\\prestashop\\Product\\Event\\ImageEvent' => $baseDir . '/src/Product/Event/ImageEvent.php',
'izi\\prestashop\\Product\\Event\\ProductEvent' => $baseDir . '/src/Product/Event/ProductEvent.php',
'izi\\prestashop\\Product\\Event\\SpecificPriceEvent' => $baseDir . '/src/Product/Event/SpecificPriceEvent.php',
'izi\\prestashop\\Product\\Event\\StockQuantityUpdatedEvent' => $baseDir . '/src/Product/Event/StockQuantityUpdatedEvent.php',
'izi\\prestashop\\Product\\Image\\ImageUrls' => $baseDir . '/src/Product/Image/ImageUrls.php',
'izi\\prestashop\\Product\\Image\\ImageUrlsProvider' => $baseDir . '/src/Product/Image/ImageUrlsProvider.php',
'izi\\prestashop\\Product\\Image\\ImageUrlsProviderInterface' => $baseDir . '/src/Product/Image/ImageUrlsProviderInterface.php',
'izi\\prestashop\\Product\\Price\\BatchLowestPriceProviderInterface' => $baseDir . '/src/Product/Price/BatchLowestPriceProviderInterface.php',
'izi\\prestashop\\Product\\Price\\CalculationParameters' => $baseDir . '/src/Product/Price/CalculationParameters.php',
'izi\\prestashop\\Product\\Price\\ErrorHandlingLowestPriceProvider' => $baseDir . '/src/Product/Price/ErrorHandlingLowestPriceProvider.php',
'izi\\prestashop\\Product\\Price\\LowestPriceProviderFactory' => $baseDir . '/src/Product/Price/LowestPriceProviderFactory.php',
'izi\\prestashop\\Product\\Price\\LowestPriceProviderInterface' => $baseDir . '/src/Product/Price/LowestPriceProviderInterface.php',
'izi\\prestashop\\Product\\Price\\LowestPriceQuery' => $baseDir . '/src/Product/Price/LowestPriceQuery.php',
'izi\\prestashop\\Product\\Price\\NullLowestPriceProvider' => $baseDir . '/src/Product/Price/NullLowestPriceProvider.php',
'izi\\prestashop\\Product\\Price\\PriceCalculator' => $baseDir . '/src/Product/Price/PriceCalculator.php',
'izi\\prestashop\\Product\\Price\\PriceCalculatorInterface' => $baseDir . '/src/Product/Price/PriceCalculatorInterface.php',
'izi\\prestashop\\Product\\Price\\PriceQuery' => $baseDir . '/src/Product/Price/PriceQuery.php',
'izi\\prestashop\\Product\\Price\\X13PriceHistoryLowestPriceProvider' => $baseDir . '/src/Product/Price/X13PriceHistoryLowestPriceProvider.php',
'izi\\prestashop\\Product\\ProductAttribute' => $baseDir . '/src/Product/ProductAttribute.php',
'izi\\prestashop\\Product\\ProductType' => $baseDir . '/src/Product/ProductType.php',
'izi\\prestashop\\Product\\ProductWithCombination' => $baseDir . '/src/Product/ProductWithCombination.php',
'izi\\prestashop\\Product\\ReferenceId' => $baseDir . '/src/Product/ReferenceId.php',
'izi\\prestashop\\Product\\Util\\AttributeListParser' => $baseDir . '/src/Product/Util/AttributeListParser.php',
'izi\\prestashop\\Product\\Util\\DescriptionFormatter' => $baseDir . '/src/Product/Util/DescriptionFormatter.php',
'izi\\prestashop\\PromoCode\\AvailableCartRulesProvider' => $baseDir . '/src/PromoCode/AvailableCartRulesProvider.php',
'izi\\prestashop\\PromoCode\\AvailablePromotionsProviderInterface' => $baseDir . '/src/PromoCode/AvailablePromotionsProviderInterface.php',
'izi\\prestashop\\PromoCode\\CartRuleOptions' => $baseDir . '/src/PromoCode/CartRuleOptions.php',
'izi\\prestashop\\PromoCode\\CartRuleOptionsRepository' => $baseDir . '/src/PromoCode/CartRuleOptionsRepository.php',
'izi\\prestashop\\PromoCode\\CartRuleOptionsRepositoryInterface' => $baseDir . '/src/PromoCode/CartRuleOptionsRepositoryInterface.php',
'izi\\prestashop\\PromoCode\\CartRulePromoCodeProvider' => $baseDir . '/src/PromoCode/CartRulePromoCodeProvider.php',
'izi\\prestashop\\PromoCode\\NullAvailablePromotionsProvider' => $baseDir . '/src/PromoCode/NullAvailablePromotionsProvider.php',
'izi\\prestashop\\PromoCode\\PromoCodeProviderInterface' => $baseDir . '/src/PromoCode/PromoCodeProviderInterface.php',
'izi\\prestashop\\Repository\\BasketSessionRepository' => $baseDir . '/src/Repository/BasketSessionRepository.php',
'izi\\prestashop\\Repository\\BasketSessionRepositoryInterface' => $baseDir . '/src/Repository/BasketSessionRepositoryInterface.php',
'izi\\prestashop\\Repository\\CartRuleRepository' => $baseDir . '/src/Repository/CartRuleRepository.php',
'izi\\prestashop\\Repository\\CartRuleRepositoryInterface' => $baseDir . '/src/Repository/CartRuleRepositoryInterface.php',
'izi\\prestashop\\Repository\\OrderDataRepositoryInterface' => $baseDir . '/src/Repository/OrderDataRepositoryInterface.php',
'izi\\prestashop\\Repository\\ProductRestrictionsRepository' => $baseDir . '/src/Repository/ProductRestrictionsRepository.php',
'izi\\prestashop\\Repository\\ProductRestrictionsRepositoryInterface' => $baseDir . '/src/Repository/ProductRestrictionsRepositoryInterface.php',
'izi\\prestashop\\Repository\\Product\\AttributeRestrictionsRepositoryInterface' => $baseDir . '/src/Repository/Product/AttributeRestrictionsRepositoryInterface.php',
'izi\\prestashop\\Repository\\Product\\CategoryRestrictionsRepositoryInterface' => $baseDir . '/src/Repository/Product/CategoryRestrictionsRepositoryInterface.php',
'izi\\prestashop\\Repository\\Product\\FeatureRestrictionsRepositoryInterface' => $baseDir . '/src/Repository/Product/FeatureRestrictionsRepositoryInterface.php',
'izi\\prestashop\\Repository\\Product\\ManufacturerRestrictionsRepositoryInterface' => $baseDir . '/src/Repository/Product/ManufacturerRestrictionsRepositoryInterface.php',
'izi\\prestashop\\Routing\\AdminUrlGenerator' => $baseDir . '/src/Routing/AdminUrlGenerator.php',
'izi\\prestashop\\Routing\\AnnotationDirectoryLoader' => $baseDir . '/src/Routing/AnnotationDirectoryLoader.php',
'izi\\prestashop\\Security\\AuthorizationChecker' => $baseDir . '/src/Security/AuthorizationChecker.php',
'izi\\prestashop\\Security\\EmployeeAuthenticator' => $baseDir . '/src/Security/EmployeeAuthenticator.php',
'izi\\prestashop\\Security\\LazyUserProvider' => $baseDir . '/src/Security/LazyUserProvider.php',
'izi\\prestashop\\Security\\Voter\\BindingWidgetVoter' => $baseDir . '/src/Security/Voter/BindingWidgetVoter.php',
'izi\\prestashop\\Serializer\\Exception\\MissingConstructorArgumentsException' => $baseDir . '/src/Serializer/Exception/MissingConstructorArgumentsException.php',
'izi\\prestashop\\Serializer\\Normalizer\\BasketAppPaginationPageDenormalizer' => $baseDir . '/src/Serializer/Normalizer/BasketAppPaginationPageDenormalizer.php',
'izi\\prestashop\\Serializer\\Normalizer\\CustomDenormalizer' => $baseDir . '/src/Serializer/Normalizer/CustomDenormalizer.php',
'izi\\prestashop\\Serializer\\Normalizer\\DateTimeNormalizer' => $baseDir . '/src/Serializer/Normalizer/DateTimeNormalizer.php',
'izi\\prestashop\\Serializer\\Normalizer\\DenormalizableInterface' => $baseDir . '/src/Serializer/Normalizer/DenormalizableInterface.php',
'izi\\prestashop\\Serializer\\Normalizer\\EnumDenormalizer' => $baseDir . '/src/Serializer/Normalizer/EnumDenormalizer.php',
'izi\\prestashop\\Serializer\\Normalizer\\JsonSerializableNormalizer' => $baseDir . '/src/Serializer/Normalizer/JsonSerializableNormalizer.php',
'izi\\prestashop\\Serializer\\Normalizer\\ObjectNormalizer' => $baseDir . '/src/Serializer/Normalizer/ObjectNormalizer.php',
'izi\\prestashop\\Serializer\\Normalizer\\PriceAmountNormalizer' => $baseDir . '/src/Serializer/Normalizer/PriceAmountNormalizer.php',
'izi\\prestashop\\Serializer\\Normalizer\\PriceNormalizer' => $baseDir . '/src/Serializer/Normalizer/PriceNormalizer.php',
'izi\\prestashop\\Serializer\\PropertyDocBlockTypeExtractor' => $baseDir . '/src/Serializer/PropertyDocBlockTypeExtractor.php',
'izi\\prestashop\\Serializer\\SafeDeserializerTrait' => $baseDir . '/src/Serializer/SafeDeserializerTrait.php',
'izi\\prestashop\\Serializer\\SerializerFactory' => $baseDir . '/src/Serializer/SerializerFactory.php',
'izi\\prestashop\\Shipping\\CarrierModuleTrackingNumberProvider' => $baseDir . '/src/Shipping/CarrierModuleTrackingNumberProvider.php',
'izi\\prestashop\\Shipping\\CartTotal\\CartTotalDeliveryStrategyInterface' => $baseDir . '/src/Shipping/CartTotal/CartTotalDeliveryStrategyInterface.php',
'izi\\prestashop\\Shipping\\CartTotal\\GenericStrategy' => $baseDir . '/src/Shipping/CartTotal/GenericStrategy.php',
'izi\\prestashop\\Shipping\\CartTotal\\PriceRangeStrategy' => $baseDir . '/src/Shipping/CartTotal/PriceRangeStrategy.php',
'izi\\prestashop\\Shipping\\CartWeight\\CartWeightDeliveryStrategyInterface' => $baseDir . '/src/Shipping/CartWeight/CartWeightDeliveryStrategyInterface.php',
'izi\\prestashop\\Shipping\\CartWeight\\GenericStrategy' => $baseDir . '/src/Shipping/CartWeight/GenericStrategy.php',
'izi\\prestashop\\Shipping\\CartWeight\\WeightRangeStrategy' => $baseDir . '/src/Shipping/CartWeight/WeightRangeStrategy.php',
'izi\\prestashop\\Shipping\\DeliveryPriceCalculator' => $baseDir . '/src/Shipping/DeliveryPriceCalculator.php',
'izi\\prestashop\\Shipping\\DeliveryPriceCalculatorInterface' => $baseDir . '/src/Shipping/DeliveryPriceCalculatorInterface.php',
'izi\\prestashop\\Shipping\\Exception\\UnavailableDeliveryOptionException' => $baseDir . '/src/Shipping/Exception/UnavailableDeliveryOptionException.php',
'izi\\prestashop\\Shipping\\FreeDelivery\\GenericStrategy' => $baseDir . '/src/Shipping/FreeDelivery/GenericStrategy.php',
'izi\\prestashop\\Shipping\\FreeDelivery\\MinAmountCalculationStrategyInterface' => $baseDir . '/src/Shipping/FreeDelivery/MinAmountCalculationStrategyInterface.php',
'izi\\prestashop\\Shipping\\FreeDelivery\\NullStrategy' => $baseDir . '/src/Shipping/FreeDelivery/NullStrategy.php',
'izi\\prestashop\\Shipping\\FreeDelivery\\PriceRangeStrategy' => $baseDir . '/src/Shipping/FreeDelivery/PriceRangeStrategy.php',
'izi\\prestashop\\Shipping\\ProductDimensions\\GenericStrategy' => $baseDir . '/src/Shipping/ProductDimensions/GenericStrategy.php',
'izi\\prestashop\\Shipping\\ProductDimensions\\ProductDimensionsDeliveryStrategyInterface' => $baseDir . '/src/Shipping/ProductDimensions/ProductDimensionsDeliveryStrategyInterface.php',
'izi\\prestashop\\Shipping\\ProductRestriction\\ProductRestrictionDelivery' => $baseDir . '/src/Shipping/ProductRestriction/ProductRestrictionDelivery.php',
'izi\\prestashop\\Shipping\\ProductRestriction\\ProductRestrictionDeliveryInterface' => $baseDir . '/src/Shipping/ProductRestriction/ProductRestrictionDeliveryInterface.php',
'izi\\prestashop\\Shipping\\TrackingNumberProviderInterface' => $baseDir . '/src/Shipping/TrackingNumberProviderInterface.php',
'izi\\prestashop\\Translation\\DomainNormalizingTranslator' => $baseDir . '/src/Translation/DomainNormalizingTranslator.php',
'izi\\prestashop\\Translation\\LegacyTranslator' => $baseDir . '/src/Translation/LegacyTranslator.php',
'izi\\prestashop\\Translation\\PaymentTypeTranslator' => $baseDir . '/src/Translation/PaymentTypeTranslator.php',
'izi\\prestashop\\Translation\\ServiceNameTranslator' => $baseDir . '/src/Translation/ServiceNameTranslator.php',
'izi\\prestashop\\Twig\\Extension\\LegacyTranslationExtension' => $baseDir . '/src/Twig/Extension/LegacyTranslationExtension.php',
'izi\\prestashop\\Twig\\Loader\\TemplateNameMappingLoader' => $baseDir . '/src/Twig/Loader/TemplateNameMappingLoader.php',
'izi\\prestashop\\Uuid\\Uuid' => $baseDir . '/src/Uuid/Uuid.php',
'izi\\prestashop\\Uuid\\UuidV4' => $baseDir . '/src/Uuid/UuidV4.php',
'izi\\prestashop\\Validator\\Cart\\Bindable' => $baseDir . '/src/Validator/Cart/Bindable.php',
'izi\\prestashop\\Validator\\Cart\\BindableValidator' => $baseDir . '/src/Validator/Cart/BindableValidator.php',
'izi\\prestashop\\Validator\\Cart\\HasProducts' => $baseDir . '/src/Validator/Cart/HasProducts.php',
'izi\\prestashop\\Validator\\Cart\\HasProductsValidator' => $baseDir . '/src/Validator/Cart/HasProductsValidator.php',
'izi\\prestashop\\Validator\\Cart\\HasUnrestrictedProduct' => $baseDir . '/src/Validator/Cart/HasUnrestrictedProduct.php',
'izi\\prestashop\\Validator\\Cart\\HasUnrestrictedProductValidator' => $baseDir . '/src/Validator/Cart/HasUnrestrictedProductValidator.php',
'izi\\prestashop\\Validator\\Cart\\PaymentInCurrencyAvailable' => $baseDir . '/src/Validator/Cart/PaymentInCurrencyAvailable.php',
'izi\\prestashop\\Validator\\Cart\\PaymentInCurrencyAvailableValidator' => $baseDir . '/src/Validator/Cart/PaymentInCurrencyAvailableValidator.php',
'izi\\prestashop\\Validator\\Consent\\DescriptionUsesIdPlaceholders' => $baseDir . '/src/Validator/Consent/DescriptionUsesIdPlaceholders.php',
'izi\\prestashop\\Validator\\Consent\\DescriptionUsesIdPlaceholdersValidator' => $baseDir . '/src/Validator/Consent/DescriptionUsesIdPlaceholdersValidator.php',
'izi\\prestashop\\Validator\\Consent\\UniqueIdentifiers' => $baseDir . '/src/Validator/Consent/UniqueIdentifiers.php',
'izi\\prestashop\\Validator\\Consent\\UniqueIdentifiersValidator' => $baseDir . '/src/Validator/Consent/UniqueIdentifiersValidator.php',
'izi\\prestashop\\Validator\\ConstraintValidatorFactory' => $baseDir . '/src/Validator/ConstraintValidatorFactory.php',
'izi\\prestashop\\Validator\\InPostApiCredentials' => $baseDir . '/src/Validator/InPostApiCredentials.php',
'izi\\prestashop\\Validator\\InPostApiCredentialsValidator' => $baseDir . '/src/Validator/InPostApiCredentialsValidator.php',
'izi\\prestashop\\Validator\\NotBlankInDefaultLanguage' => $baseDir . '/src/Validator/NotBlankInDefaultLanguage.php',
'izi\\prestashop\\Validator\\NotBlankInDefaultLanguageValidator' => $baseDir . '/src/Validator/NotBlankInDefaultLanguageValidator.php',
'izi\\prestashop\\Validator\\ProcessableMessageFormat' => $baseDir . '/src/Validator/ProcessableMessageFormat.php',
'izi\\prestashop\\Validator\\ProcessableMessageFormatValidator' => $baseDir . '/src/Validator/ProcessableMessageFormatValidator.php',
'izi\\prestashop\\Validator\\Product\\NotFromRestrictedManufacturer' => $baseDir . '/src/Validator/Product/NotFromRestrictedManufacturer.php',
'izi\\prestashop\\Validator\\Product\\NotFromRestrictedManufacturerValidator' => $baseDir . '/src/Validator/Product/NotFromRestrictedManufacturerValidator.php',
'izi\\prestashop\\Validator\\Product\\NotInRestrictedCategory' => $baseDir . '/src/Validator/Product/NotInRestrictedCategory.php',
'izi\\prestashop\\Validator\\Product\\NotInRestrictedCategoryValidator' => $baseDir . '/src/Validator/Product/NotInRestrictedCategoryValidator.php',
'izi\\prestashop\\Validator\\Product\\NotOfType' => $baseDir . '/src/Validator/Product/NotOfType.php',
'izi\\prestashop\\Validator\\Product\\NotOfTypeValidator' => $baseDir . '/src/Validator/Product/NotOfTypeValidator.php',
'izi\\prestashop\\Validator\\Product\\NotWithRestrictedAttributes' => $baseDir . '/src/Validator/Product/NotWithRestrictedAttributes.php',
'izi\\prestashop\\Validator\\Product\\NotWithRestrictedAttributesValidator' => $baseDir . '/src/Validator/Product/NotWithRestrictedAttributesValidator.php',
'izi\\prestashop\\Validator\\Product\\NotWithRestrictedFeatures' => $baseDir . '/src/Validator/Product/NotWithRestrictedFeatures.php',
'izi\\prestashop\\Validator\\Product\\NotWithRestrictedFeaturesValidator' => $baseDir . '/src/Validator/Product/NotWithRestrictedFeaturesValidator.php',
'izi\\prestashop\\Validator\\Product\\Unrestricted' => $baseDir . '/src/Validator/Product/Unrestricted.php',
'izi\\prestashop\\Validator\\Product\\UnrestrictedValidator' => $baseDir . '/src/Validator/Product/UnrestrictedValidator.php',
'izi\\prestashop\\Validator\\Sequentially' => $baseDir . '/src/Validator/Sequentially.php',
'izi\\prestashop\\Validator\\SequentiallyValidator' => $baseDir . '/src/Validator/SequentiallyValidator.php',
'izi\\prestashop\\Validator\\Unique' => $baseDir . '/src/Validator/Unique.php',
'izi\\prestashop\\Validator\\UniqueValidator' => $baseDir . '/src/Validator/UniqueValidator.php',
'izi\\prestashop\\Validator\\ValidatorFactory' => $baseDir . '/src/Validator/ValidatorFactory.php',
'izi\\prestashop\\View\\Asset\\AbstractAssetManager' => $baseDir . '/src/View/Asset/AbstractAssetManager.php',
'izi\\prestashop\\View\\Asset\\AdminAssetManager' => $baseDir . '/src/View/Asset/AdminAssetManager.php',
'izi\\prestashop\\View\\Asset\\AssetManagerInterface' => $baseDir . '/src/View/Asset/AssetManagerInterface.php',
'izi\\prestashop\\View\\Asset\\FrontAssetManager' => $baseDir . '/src/View/Asset/FrontAssetManager.php',
'izi\\prestashop\\View\\Asset\\Provider\\Admin\\CartRulesAssetsProvider' => $baseDir . '/src/View/Asset/Provider/Admin/CartRulesAssetsProvider.php',
'izi\\prestashop\\View\\Asset\\Provider\\AssetsProviderInterface' => $baseDir . '/src/View/Asset/Provider/AssetsProviderInterface.php',
'izi\\prestashop\\View\\Asset\\Provider\\DTO\\Assets' => $baseDir . '/src/View/Asset/Provider/DTO/Assets.php',
'izi\\prestashop\\View\\Asset\\Provider\\Front\\CommonAssetsProvider' => $baseDir . '/src/View/Asset/Provider/Front/CommonAssetsProvider.php',
'izi\\prestashop\\View\\Asset\\Provider\\Front\\ProductPageAssetsProvider' => $baseDir . '/src/View/Asset/Provider/Front/ProductPageAssetsProvider.php',
'izi\\prestashop\\View\\Asset\\Provider\\Front\\WidgetConfigurationProvider' => $baseDir . '/src/View/Asset/Provider/Front/WidgetConfigurationProvider.php',
'izi\\prestashop\\View\\Asset\\VersionStrategy\\JsonManifestVersionStrategy' => $baseDir . '/src/View/Asset/VersionStrategy/JsonManifestVersionStrategy.php',
'izi\\prestashop\\View\\Templating\\RendererInterface' => $baseDir . '/src/View/Templating/RendererInterface.php',
'izi\\prestashop\\View\\Templating\\SmartyRenderer' => $baseDir . '/src/View/Templating/SmartyRenderer.php',
'izi\\prestashop\\View\\Widget\\FrameStyle' => $baseDir . '/src/View/Widget/FrameStyle.php',
'izi\\prestashop\\View\\Widget\\Size' => $baseDir . '/src/View/Widget/Size.php',
'izi\\prestashop\\View\\Widget\\Variant' => $baseDir . '/src/View/Widget/Variant.php',
'izi\\prestashop\\View\\Widget\\WidgetConfiguration' => $baseDir . '/src/View/Widget/WidgetConfiguration.php',
'izi\\prestashop\\View\\Widget\\WidgetConfigurationInterface' => $baseDir . '/src/View/Widget/WidgetConfigurationInterface.php',
'izi\\prestashop\\View\\Widget\\WidgetConfigurationResolver' => $baseDir . '/src/View/Widget/WidgetConfigurationResolver.php',
'izi\\prestashop\\View\\Widget\\WidgetConfigurationResolverInterface' => $baseDir . '/src/View/Widget/WidgetConfigurationResolverInterface.php',
'izi\\prestashop\\rest\\order\\Create' => $baseDir . '/src/rest/order/Create.php',
);

View File

@@ -0,0 +1,11 @@
<?php
// autoload_files.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/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,22 @@
<?php
// autoload_psr4.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'izi\\prestashop\\' => array($baseDir . '/src'),
'ZipStream\\' => array($vendorDir . '/maennchen/zipstream-php/src'),
'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'),
'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
'Symfony\\Contracts\\Service\\' => array($vendorDir . '/symfony/service-contracts'),
'Psr\\SimpleCache\\' => array($vendorDir . '/psr/simple-cache/src'),
'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src', $vendorDir . '/psr/http-factory/src'),
'Psr\\Http\\Client\\' => array($vendorDir . '/psr/http-client/src'),
'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
'Psr\\Clock\\' => array($vendorDir . '/psr/clock/src'),
'Nyholm\\Psr7\\' => array($vendorDir . '/nyholm/psr7/src'),
'MyCLabs\\Enum\\' => array($vendorDir . '/myclabs/php-enum/src'),
'Http\\Message\\' => array($vendorDir . '/php-http/message-factory/src'),
);

View File

@@ -0,0 +1,48 @@
<?php
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit3582376b22b8ed8077843f108d3dc00a
{
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;
}
spl_autoload_register(array('ComposerAutoloaderInit3582376b22b8ed8077843f108d3dc00a', 'loadClassLoader'), true, false);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInit3582376b22b8ed8077843f108d3dc00a', 'loadClassLoader'));
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit3582376b22b8ed8077843f108d3dc00a::getInitializer($loader));
$loader->register(false);
$filesToLoad = \Composer\Autoload\ComposerStaticInit3582376b22b8ed8077843f108d3dc00a::$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;
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,864 @@
{
"packages": [
{
"name": "maennchen/zipstream-php",
"version": "2.1.0",
"version_normalized": "2.1.0.0",
"source": {
"type": "git",
"url": "https://github.com/maennchen/ZipStream-PHP.git",
"reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
"reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
"shasum": ""
},
"require": {
"myclabs/php-enum": "^1.5",
"php": ">= 7.1",
"psr/http-message": "^1.0",
"symfony/polyfill-mbstring": "^1.0"
},
"require-dev": {
"ext-zip": "*",
"guzzlehttp/guzzle": ">= 6.3",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": ">= 7.5"
},
"time": "2020-05-30T13:11:16+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"ZipStream\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Paul Duncan",
"email": "pabs@pablotron.org"
},
{
"name": "Jonatan Männchen",
"email": "jonatan@maennchen.ch"
},
{
"name": "Jesse Donat",
"email": "donatj@gmail.com"
},
{
"name": "András Kolesár",
"email": "kolesar@kolesar.hu"
}
],
"description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
"keywords": [
"stream",
"zip"
],
"support": {
"issues": "https://github.com/maennchen/ZipStream-PHP/issues",
"source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0"
},
"funding": [
{
"url": "https://github.com/maennchen",
"type": "github"
},
{
"url": "https://opencollective.com/zipstream",
"type": "open_collective"
}
],
"install-path": "../maennchen/zipstream-php"
},
{
"name": "myclabs/php-enum",
"version": "1.7.7",
"version_normalized": "1.7.7.0",
"source": {
"type": "git",
"url": "https://github.com/myclabs/php-enum.git",
"reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
"reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
"shasum": ""
},
"require": {
"ext-json": "*",
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "1.*",
"vimeo/psalm": "^3.8"
},
"time": "2020-11-14T18:14:52+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"MyCLabs\\Enum\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP Enum contributors",
"homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
}
],
"description": "PHP Enum implementation",
"homepage": "http://github.com/myclabs/php-enum",
"keywords": [
"enum"
],
"support": {
"issues": "https://github.com/myclabs/php-enum/issues",
"source": "https://github.com/myclabs/php-enum/tree/1.7.7"
},
"funding": [
{
"url": "https://github.com/mnapoli",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
"type": "tidelift"
}
],
"install-path": "../myclabs/php-enum"
},
{
"name": "nyholm/psr7",
"version": "1.6.1",
"version_normalized": "1.6.1.0",
"source": {
"type": "git",
"url": "https://github.com/Nyholm/psr7.git",
"reference": "e874c8c4286a1e010fb4f385f3a55ac56a05cc93"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/Nyholm/psr7/zipball/e874c8c4286a1e010fb4f385f3a55ac56a05cc93",
"reference": "e874c8c4286a1e010fb4f385f3a55ac56a05cc93",
"shasum": ""
},
"require": {
"php": ">=7.1",
"php-http/message-factory": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"provide": {
"php-http/message-factory-implementation": "1.0",
"psr/http-factory-implementation": "1.0",
"psr/http-message-implementation": "1.0"
},
"require-dev": {
"http-interop/http-factory-tests": "^0.9",
"php-http/psr7-integration-tests": "^1.0",
"phpunit/phpunit": "^7.5 || 8.5 || 9.4",
"symfony/error-handler": "^4.4"
},
"time": "2023-04-17T16:03:48+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.6-dev"
}
},
"installation-source": "dist",
"autoload": {
"psr-4": {
"Nyholm\\Psr7\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com"
},
{
"name": "Martijn van der Ven",
"email": "martijn@vanderven.se"
}
],
"description": "A fast PHP7 implementation of PSR-7",
"homepage": "https://tnyholm.se",
"keywords": [
"psr-17",
"psr-7"
],
"support": {
"issues": "https://github.com/Nyholm/psr7/issues",
"source": "https://github.com/Nyholm/psr7/tree/1.6.1"
},
"funding": [
{
"url": "https://github.com/Zegnat",
"type": "github"
},
{
"url": "https://github.com/nyholm",
"type": "github"
}
],
"install-path": "../nyholm/psr7"
},
{
"name": "php-http/message-factory",
"version": "1.1.0",
"version_normalized": "1.1.0.0",
"source": {
"type": "git",
"url": "https://github.com/php-http/message-factory.git",
"reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-http/message-factory/zipball/4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
"reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
"shasum": ""
},
"require": {
"php": ">=5.4",
"psr/http-message": "^1.0 || ^2.0"
},
"time": "2023-04-14T14:16:17+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"installation-source": "dist",
"autoload": {
"psr-4": {
"Http\\Message\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Márk Sági-Kazár",
"email": "mark.sagikazar@gmail.com"
}
],
"description": "Factory interfaces for PSR-7 HTTP Message",
"homepage": "http://php-http.org",
"keywords": [
"factory",
"http",
"message",
"stream",
"uri"
],
"support": {
"issues": "https://github.com/php-http/message-factory/issues",
"source": "https://github.com/php-http/message-factory/tree/1.1.0"
},
"abandoned": "psr/http-factory",
"install-path": "../php-http/message-factory"
},
{
"name": "psr/clock",
"version": "1.0.0",
"version_normalized": "1.0.0.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/clock.git",
"reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
"reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
"shasum": ""
},
"require": {
"php": "^7.0 || ^8.0"
},
"time": "2022-11-25T14:36:26+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"Psr\\Clock\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for reading the clock.",
"homepage": "https://github.com/php-fig/clock",
"keywords": [
"clock",
"now",
"psr",
"psr-20",
"time"
],
"support": {
"issues": "https://github.com/php-fig/clock/issues",
"source": "https://github.com/php-fig/clock/tree/1.0.0"
},
"install-path": "../psr/clock"
},
{
"name": "psr/container",
"version": "1.0.0",
"version_normalized": "1.0.0.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/container.git",
"reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
"reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"time": "2017-02-14T16:28:37+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"installation-source": "dist",
"autoload": {
"psr-4": {
"Psr\\Container\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "http://www.php-fig.org/"
}
],
"description": "Common Container Interface (PHP FIG PSR-11)",
"homepage": "https://github.com/php-fig/container",
"keywords": [
"PSR-11",
"container",
"container-interface",
"container-interop",
"psr"
],
"support": {
"issues": "https://github.com/php-fig/container/issues",
"source": "https://github.com/php-fig/container/tree/master"
},
"install-path": "../psr/container"
},
{
"name": "psr/http-client",
"version": "1.0.3",
"version_normalized": "1.0.3.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/http-client.git",
"reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
"reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
"shasum": ""
},
"require": {
"php": "^7.0 || ^8.0",
"psr/http-message": "^1.0 || ^2.0"
},
"time": "2023-09-23T14:17:50+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"installation-source": "dist",
"autoload": {
"psr-4": {
"Psr\\Http\\Client\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for HTTP clients",
"homepage": "https://github.com/php-fig/http-client",
"keywords": [
"http",
"http-client",
"psr",
"psr-18"
],
"support": {
"source": "https://github.com/php-fig/http-client"
},
"install-path": "../psr/http-client"
},
{
"name": "psr/http-factory",
"version": "1.0.2",
"version_normalized": "1.0.2.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/http-factory.git",
"reference": "e616d01114759c4c489f93b099585439f795fe35"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
"reference": "e616d01114759c4c489f93b099585439f795fe35",
"shasum": ""
},
"require": {
"php": ">=7.0.0",
"psr/http-message": "^1.0 || ^2.0"
},
"time": "2023-04-10T20:10:41+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"installation-source": "dist",
"autoload": {
"psr-4": {
"Psr\\Http\\Message\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/"
}
],
"description": "Common interfaces for PSR-7 HTTP message factories",
"keywords": [
"factory",
"http",
"message",
"psr",
"psr-17",
"psr-7",
"request",
"response"
],
"support": {
"source": "https://github.com/php-fig/http-factory/tree/1.0.2"
},
"install-path": "../psr/http-factory"
},
{
"name": "psr/http-message",
"version": "1.0.1",
"version_normalized": "1.0.1.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/http-message.git",
"reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
"reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"time": "2016-08-06T14:39:51+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"installation-source": "dist",
"autoload": {
"psr-4": {
"Psr\\Http\\Message\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "http://www.php-fig.org/"
}
],
"description": "Common interface for HTTP messages",
"homepage": "https://github.com/php-fig/http-message",
"keywords": [
"http",
"http-message",
"psr",
"psr-7",
"request",
"response"
],
"support": {
"source": "https://github.com/php-fig/http-message/tree/master"
},
"install-path": "../psr/http-message"
},
{
"name": "psr/simple-cache",
"version": "1.0.1",
"version_normalized": "1.0.1.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/simple-cache.git",
"reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
"reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"time": "2017-10-23T01:57:42+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"installation-source": "dist",
"autoload": {
"psr-4": {
"Psr\\SimpleCache\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "http://www.php-fig.org/"
}
],
"description": "Common interfaces for simple caching",
"keywords": [
"cache",
"caching",
"psr",
"psr-16",
"simple-cache"
],
"support": {
"source": "https://github.com/php-fig/simple-cache/tree/master"
},
"install-path": "../psr/simple-cache"
},
{
"name": "symfony/polyfill-mbstring",
"version": "v1.29.0",
"version_normalized": "1.29.0.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git",
"reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
"reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"provide": {
"ext-mbstring": "*"
},
"suggest": {
"ext-mbstring": "For best performance"
},
"time": "2024-01-29T20:11:03+00:00",
"type": "library",
"extra": {
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"installation-source": "dist",
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Mbstring\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill for the Mbstring extension",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"mbstring",
"polyfill",
"portable",
"shim"
],
"support": {
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"install-path": "../symfony/polyfill-mbstring"
},
{
"name": "symfony/polyfill-php80",
"version": "v1.29.0",
"version_normalized": "1.29.0.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php80.git",
"reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
"reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"time": "2024-01-29T20:11:03+00:00",
"type": "library",
"extra": {
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"installation-source": "dist",
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Php80\\": ""
},
"classmap": [
"Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Ion Bazan",
"email": "ion.bazan@gmail.com"
},
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"polyfill",
"portable",
"shim"
],
"support": {
"source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"install-path": "../symfony/polyfill-php80"
},
{
"name": "symfony/service-contracts",
"version": "v1.10.0",
"version_normalized": "1.10.0.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/service-contracts.git",
"reference": "afa00c500c2d6aea6e3b2f4862355f507bc5ebb4"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/afa00c500c2d6aea6e3b2f4862355f507bc5ebb4",
"reference": "afa00c500c2d6aea6e3b2f4862355f507bc5ebb4",
"shasum": ""
},
"require": {
"php": ">=7.1.3",
"psr/container": "^1.0"
},
"suggest": {
"symfony/service-implementation": ""
},
"time": "2022-05-27T14:01:05+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.1-dev"
},
"thanks": {
"name": "symfony/contracts",
"url": "https://github.com/symfony/contracts"
}
},
"installation-source": "dist",
"autoload": {
"psr-4": {
"Symfony\\Contracts\\Service\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Generic abstractions related to writing services",
"homepage": "https://symfony.com",
"keywords": [
"abstractions",
"contracts",
"decoupling",
"interfaces",
"interoperability",
"standards"
],
"support": {
"source": "https://github.com/symfony/service-contracts/tree/v1.10.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"install-path": "../symfony/service-contracts"
}
],
"dev": false,
"dev-package-names": []
}

View File

@@ -0,0 +1,158 @@
<?php return array(
'root' => array(
'name' => 'inpost-izi-prestashop/inpostizi',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '14efe961af288b0e825052bdcc93d29781661b8f',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev' => false,
),
'versions' => array(
'inpost-izi-prestashop/inpostizi' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '14efe961af288b0e825052bdcc93d29781661b8f',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev_requirement' => false,
),
'maennchen/zipstream-php' => array(
'pretty_version' => '2.1.0',
'version' => '2.1.0.0',
'reference' => 'c4c5803cc1f93df3d2448478ef79394a5981cc58',
'type' => 'library',
'install_path' => __DIR__ . '/../maennchen/zipstream-php',
'aliases' => array(),
'dev_requirement' => false,
),
'myclabs/php-enum' => array(
'pretty_version' => '1.7.7',
'version' => '1.7.7.0',
'reference' => 'd178027d1e679832db9f38248fcc7200647dc2b7',
'type' => 'library',
'install_path' => __DIR__ . '/../myclabs/php-enum',
'aliases' => array(),
'dev_requirement' => false,
),
'nyholm/psr7' => array(
'pretty_version' => '1.6.1',
'version' => '1.6.1.0',
'reference' => 'e874c8c4286a1e010fb4f385f3a55ac56a05cc93',
'type' => 'library',
'install_path' => __DIR__ . '/../nyholm/psr7',
'aliases' => array(),
'dev_requirement' => false,
),
'php-http/message-factory' => array(
'pretty_version' => '1.1.0',
'version' => '1.1.0.0',
'reference' => '4d8778e1c7d405cbb471574821c1ff5b68cc8f57',
'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',
),
),
'psr/clock' => array(
'pretty_version' => '1.0.0',
'version' => '1.0.0.0',
'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d',
'type' => 'library',
'install_path' => __DIR__ . '/../psr/clock',
'aliases' => array(),
'dev_requirement' => false,
),
'psr/container' => array(
'pretty_version' => '1.0.0',
'version' => '1.0.0.0',
'reference' => 'b7ce3b176482dbbc1245ebf52b181af44c2cf55f',
'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-factory' => array(
'pretty_version' => '1.0.2',
'version' => '1.0.2.0',
'reference' => 'e616d01114759c4c489f93b099585439f795fe35',
'type' => 'library',
'install_path' => __DIR__ . '/../psr/http-factory',
'aliases' => array(),
'dev_requirement' => false,
),
'psr/http-factory-implementation' => array(
'dev_requirement' => false,
'provided' => array(
0 => '1.0',
),
),
'psr/http-message' => array(
'pretty_version' => '1.0.1',
'version' => '1.0.1.0',
'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
'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/simple-cache' => array(
'pretty_version' => '1.0.1',
'version' => '1.0.1.0',
'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b',
'type' => 'library',
'install_path' => __DIR__ . '/../psr/simple-cache',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/polyfill-mbstring' => array(
'pretty_version' => 'v1.29.0',
'version' => '1.29.0.0',
'reference' => '9773676c8a1bb1f8d4340a62efe641cf76eda7ec',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/polyfill-php80' => array(
'pretty_version' => 'v1.29.0',
'version' => '1.29.0.0',
'reference' => '87b68208d5c1188808dd7839ee1e6c8ec3b02f1b',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/polyfill-php80',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/service-contracts' => array(
'pretty_version' => 'v1.10.0',
'version' => '1.10.0.0',
'reference' => 'afa00c500c2d6aea6e3b2f4862355f507bc5ebb4',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/service-contracts',
'aliases' => array(),
'dev_requirement' => false,
),
),
);