Subida del módulo y tema de PrestaShop

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

View File

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

View File

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

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,457 @@
<?php
// autoload_classmap.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'AdminAjaxPsAccountsController' => $baseDir . '/controllers/admin/AdminAjaxPsAccountsController.php',
'AdminAjaxV2PsAccountsController' => $baseDir . '/controllers/admin/AdminAjaxV2PsAccountsController.php',
'AdminDebugPsAccountsController' => $baseDir . '/controllers/admin/AdminDebugPsAccountsController.php',
'AdminLoginController' => $baseDir . '/controllers/admin/AdminLoginController.php',
'AdminLoginPsAccountsController' => $baseDir . '/controllers/admin/AdminLoginPsAccountsController.php',
'AdminOAuth2PsAccountsController' => $baseDir . '/controllers/admin/AdminOAuth2PsAccountsController.php',
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\Exception\\AccountLoginException' => $baseDir . '/src/AccountLogin/Exception/AccountLoginException.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\Exception\\EmailNotVerifiedException' => $baseDir . '/src/AccountLogin/Exception/EmailNotVerifiedException.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\Exception\\EmployeeNotFoundException' => $baseDir . '/src/AccountLogin/Exception/EmployeeNotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\Exception\\Oauth2LoginException' => $baseDir . '/src/AccountLogin/Exception/Oauth2LoginException.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\Middleware\\Oauth2Middleware' => $baseDir . '/src/AccountLogin/Middleware/Oauth2Middleware.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\OAuth2LoginTrait' => $baseDir . '/src/AccountLogin/OAuth2LoginTrait.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\OAuth2LogoutTrait' => $baseDir . '/src/AccountLogin/OAuth2LogoutTrait.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\OAuth2Session' => $baseDir . '/src/AccountLogin/OAuth2Session.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CachedShopStatus' => $baseDir . '/src/Account/CachedShopStatus.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\CleanupIdentityHandler' => $baseDir . '/src/Account/CommandHandler/CleanupIdentityHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\CreateIdentitiesHandler' => $baseDir . '/src/Account/CommandHandler/CreateIdentitiesHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\CreateIdentityHandler' => $baseDir . '/src/Account/CommandHandler/CreateIdentityHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\IdentifyContactHandler' => $baseDir . '/src/Account/CommandHandler/IdentifyContactHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\MigrateOrCreateIdentitiesV8Handler' => $baseDir . '/src/Account/CommandHandler/MigrateOrCreateIdentitiesV8Handler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\MigrateOrCreateIdentityV8Handler' => $baseDir . '/src/Account/CommandHandler/MigrateOrCreateIdentityV8Handler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\MultiShopHandler' => $baseDir . '/src/Account/CommandHandler/MultiShopHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\RestoreIdentityHandler' => $baseDir . '/src/Account/CommandHandler/RestoreIdentityHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\UpdateBackOfficeUrlHandler' => $baseDir . '/src/Account/CommandHandler/UpdateBackOfficeUrlHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\UpdateBackOfficeUrlsHandler' => $baseDir . '/src/Account/CommandHandler/UpdateBackOfficeUrlsHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\VerifyIdentitiesHandler' => $baseDir . '/src/Account/CommandHandler/VerifyIdentitiesHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\VerifyIdentityHandler' => $baseDir . '/src/Account/CommandHandler/VerifyIdentityHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\CleanupIdentityCommand' => $baseDir . '/src/Account/Command/CleanupIdentityCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\CreateIdentitiesCommand' => $baseDir . '/src/Account/Command/CreateIdentitiesCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\CreateIdentityCommand' => $baseDir . '/src/Account/Command/CreateIdentityCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\IdentifyContactCommand' => $baseDir . '/src/Account/Command/IdentifyContactCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\MigrateOrCreateIdentitiesV8Command' => $baseDir . '/src/Account/Command/MigrateOrCreateIdentitiesV8Command.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\MigrateOrCreateIdentityV8Command' => $baseDir . '/src/Account/Command/MigrateOrCreateIdentityV8Command.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\RestoreIdentityCommand' => $baseDir . '/src/Account/Command/RestoreIdentityCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\UpdateBackOfficeUrlCommand' => $baseDir . '/src/Account/Command/UpdateBackOfficeUrlCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\UpdateBackOfficeUrlsCommand' => $baseDir . '/src/Account/Command/UpdateBackOfficeUrlsCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\VerifyIdentitiesCommand' => $baseDir . '/src/Account/Command/VerifyIdentitiesCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\VerifyIdentityCommand' => $baseDir . '/src/Account/Command/VerifyIdentityCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Dto\\Shop' => $baseDir . '/src/Account/Dto/Shop.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Dto\\UpdateShop' => $baseDir . '/src/Account/Dto/UpdateShop.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Dto\\User' => $baseDir . '/src/Account/Dto/User.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Exception\\RefreshTokenException' => $baseDir . '/src/Account/Exception/RefreshTokenException.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Exception\\UnknownStatusException' => $baseDir . '/src/Account/Exception/UnknownStatusException.php',
'PrestaShop\\Module\\PsAccounts\\Account\\ProofManager' => $baseDir . '/src/Account/ProofManager.php',
'PrestaShop\\Module\\PsAccounts\\Account\\QueryHandler\\GetContextHandler' => $baseDir . '/src/Account/QueryHandler/GetContextHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Query\\GetContextQuery' => $baseDir . '/src/Account/Query/GetContextQuery.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Session\\Firebase\\FirebaseSession' => $baseDir . '/src/Account/Session/Firebase/FirebaseSession.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Session\\Firebase\\OwnerSession' => $baseDir . '/src/Account/Session/Firebase/OwnerSession.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Session\\Firebase\\ShopSession' => $baseDir . '/src/Account/Session/Firebase/ShopSession.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Session\\Session' => $baseDir . '/src/Account/Session/Session.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Session\\SessionInterface' => $baseDir . '/src/Account/Session/SessionInterface.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Session\\ShopSession' => $baseDir . '/src/Account/Session/ShopSession.php',
'PrestaShop\\Module\\PsAccounts\\Account\\ShopUrl' => $baseDir . '/src/Account/ShopUrl.php',
'PrestaShop\\Module\\PsAccounts\\Account\\StatusManager' => $baseDir . '/src/Account/StatusManager.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Token\\NullToken' => $baseDir . '/src/Account/Token/NullToken.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Token\\Token' => $baseDir . '/src/Account/Token/Token.php',
'PrestaShop\\Module\\PsAccounts\\Adapter\\Configuration' => $baseDir . '/src/Adapter/Configuration.php',
'PrestaShop\\Module\\PsAccounts\\Adapter\\ConfigurationKeys' => $baseDir . '/src/Adapter/ConfigurationKeys.php',
'PrestaShop\\Module\\PsAccounts\\Adapter\\Link' => $baseDir . '/src/Adapter/Link.php',
'PrestaShop\\Module\\PsAccounts\\Api\\Client\\AccountsClient' => $baseDir . '/src/Api/Client/AccountsClient.php',
'PrestaShop\\Module\\PsAccounts\\Api\\Client\\ExternalAssetsClient' => $baseDir . '/src/Api/Client/ExternalAssetsClient.php',
'PrestaShop\\Module\\PsAccounts\\Api\\Client\\ServicesBillingClient' => $baseDir . '/src/Api/Client/ServicesBillingClient.php',
'PrestaShop\\Module\\PsAccounts\\Context\\ShopContext' => $baseDir . '/src/Context/ShopContext.php',
'PrestaShop\\Module\\PsAccounts\\Controller\\Admin\\OAuth2Controller' => $baseDir . '/src/Controller/Admin/OAuth2Controller.php',
'PrestaShop\\Module\\PsAccounts\\Cqrs\\Bus' => $baseDir . '/src/Cqrs/Bus.php',
'PrestaShop\\Module\\PsAccounts\\Cqrs\\CommandBus' => $baseDir . '/src/Cqrs/CommandBus.php',
'PrestaShop\\Module\\PsAccounts\\Cqrs\\QueryBus' => $baseDir . '/src/Cqrs/QueryBus.php',
'PrestaShop\\Module\\PsAccounts\\Entity\\EmployeeAccount' => $baseDir . '/src/Entity/EmployeeAccount.php',
'PrestaShop\\Module\\PsAccounts\\Exception\\BillingException' => $baseDir . '/src/Exception/BillingException.php',
'PrestaShop\\Module\\PsAccounts\\Exception\\DtoException' => $baseDir . '/src/Exception/DtoException.php',
'PrestaShop\\Module\\PsAccounts\\Exception\\RefreshTokenException' => $baseDir . '/src/Exception/RefreshTokenException.php',
'PrestaShop\\Module\\PsAccounts\\Exception\\SshKeysNotFoundException' => $baseDir . '/src/Exception/SshKeysNotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionAdminControllerInitBefore' => $baseDir . '/src/Hook/ActionAdminControllerInitBefore.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionAdminControllerSetMedia' => $baseDir . '/src/Hook/ActionAdminControllerSetMedia.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionAdminLoginControllerLoginAfter' => $baseDir . '/src/Hook/ActionAdminLoginControllerLoginAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionAdminLoginControllerSetMedia' => $baseDir . '/src/Hook/ActionAdminLoginControllerSetMedia.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionObjectEmployeeDeleteAfter' => $baseDir . '/src/Hook/ActionObjectEmployeeDeleteAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionObjectShopAddAfter' => $baseDir . '/src/Hook/ActionObjectShopAddAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionObjectShopDeleteAfter' => $baseDir . '/src/Hook/ActionObjectShopDeleteAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionObjectShopDeleteBefore' => $baseDir . '/src/Hook/ActionObjectShopDeleteBefore.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionObjectShopUpdateAfter' => $baseDir . '/src/Hook/ActionObjectShopUpdateAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionObjectShopUrlUpdateAfter' => $baseDir . '/src/Hook/ActionObjectShopUrlUpdateAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionShopAccessTokenRefreshAfter' => $baseDir . '/src/Hook/ActionShopAccessTokenRefreshAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionShopAccountLinkAfter' => $baseDir . '/src/Hook/ActionShopAccountLinkAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionShopAccountUnlinkAfter' => $baseDir . '/src/Hook/ActionShopAccountUnlinkAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\DisplayAccountUpdateWarning' => $baseDir . '/src/Hook/DisplayAccountUpdateWarning.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\DisplayBackOfficeEmployeeMenu' => $baseDir . '/src/Hook/DisplayBackOfficeEmployeeMenu.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\DisplayBackOfficeHeader' => $baseDir . '/src/Hook/DisplayBackOfficeHeader.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\DisplayDashboardTop' => $baseDir . '/src/Hook/DisplayDashboardTop.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\Hook' => $baseDir . '/src/Hook/Hook.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\HookableTrait' => $baseDir . '/src/Hook/HookableTrait.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\CircuitBreaker\\CircuitBreaker' => $baseDir . '/src/Http/Client/CircuitBreaker/CircuitBreaker.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\CircuitBreaker\\CircuitBreakerException' => $baseDir . '/src/Http/Client/CircuitBreaker/CircuitBreakerException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\CircuitBreaker\\Factory' => $baseDir . '/src/Http/Client/CircuitBreaker/Factory.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\CircuitBreaker\\InMemoryCircuitBreaker' => $baseDir . '/src/Http/Client/CircuitBreaker/InMemoryCircuitBreaker.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\CircuitBreaker\\PersistentCircuitBreaker' => $baseDir . '/src/Http/Client/CircuitBreaker/PersistentCircuitBreaker.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\CircuitBreaker\\State' => $baseDir . '/src/Http/Client/CircuitBreaker/State.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\ClientConfig' => $baseDir . '/src/Http/Client/ClientConfig.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\ConfigObject' => $baseDir . '/src/Http/Client/ConfigObject.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Curl\\Client' => $baseDir . '/src/Http/Client/Curl/Client.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Exception\\ClientException' => $baseDir . '/src/Http/Client/Exception/ClientException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Exception\\ConnectException' => $baseDir . '/src/Http/Client/Exception/ConnectException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Exception\\RequiredPropertyException' => $baseDir . '/src/Http/Client/Exception/RequiredPropertyException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Exception\\UndefinedPropertyException' => $baseDir . '/src/Http/Client/Exception/UndefinedPropertyException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Factory' => $baseDir . '/src/Http/Client/Factory.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Request' => $baseDir . '/src/Http/Client/Request.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Response' => $baseDir . '/src/Http/Client/Response.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Controller\\AbstractAdminAjaxCorsController' => $baseDir . '/src/Http/Controller/AbstractAdminAjaxCorsController.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Controller\\AbstractV2RestController' => $baseDir . '/src/Http/Controller/AbstractV2RestController.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Controller\\AbstractV2ShopRestController' => $baseDir . '/src/Http/Controller/AbstractV2ShopRestController.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Controller\\GetHeader' => $baseDir . '/src/Http/Controller/GetHeader.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Controller\\RestMethod' => $baseDir . '/src/Http/Controller/RestMethod.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Exception\\BadRequestException' => $baseDir . '/src/Http/Exception/BadRequestException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Exception\\HttpException' => $baseDir . '/src/Http/Exception/HttpException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Exception\\InternalServerErrorException' => $baseDir . '/src/Http/Exception/InternalServerErrorException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Exception\\MethodNotAllowedException' => $baseDir . '/src/Http/Exception/MethodNotAllowedException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Exception\\NotFoundException' => $baseDir . '/src/Http/Exception/NotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Exception\\UnauthorizedException' => $baseDir . '/src/Http/Exception/UnauthorizedException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Request\\Request' => $baseDir . '/src/Http/Request/Request.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Request\\ShopHealthCheckRequest' => $baseDir . '/src/Http/Request/ShopHealthCheckRequest.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Request\\UpdateShopLinkAccountRequest' => $baseDir . '/src/Http/Request/UpdateShopLinkAccountRequest.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Request\\UpdateShopOauth2ClientRequest' => $baseDir . '/src/Http/Request/UpdateShopOauth2ClientRequest.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Resource\\Resource' => $baseDir . '/src/Http/Resource/Resource.php',
'PrestaShop\\Module\\PsAccounts\\Installer\\Installer' => $baseDir . '/src/Installer/Installer.php',
'PrestaShop\\Module\\PsAccounts\\Log\\Logger' => $baseDir . '/src/Log/Logger.php',
'PrestaShop\\Module\\PsAccounts\\Module\\Install' => $baseDir . '/src/Module/Install.php',
'PrestaShop\\Module\\PsAccounts\\Module\\Uninstall' => $baseDir . '/src/Module/Uninstall.php',
'PrestaShop\\Module\\PsAccounts\\Polyfill\\ConfigurationStorageSession' => $baseDir . '/src/Polyfill/ConfigurationStorageSession.php',
'PrestaShop\\Module\\PsAccounts\\Polyfill\\Traits\\AdminController\\IsAnonymousAllowed' => $baseDir . '/src/Polyfill/Traits/AdminController/IsAnonymousAllowed.php',
'PrestaShop\\Module\\PsAccounts\\Polyfill\\Traits\\Controller\\AjaxRender' => $baseDir . '/src/Polyfill/Traits/Controller/AjaxRender.php',
'PrestaShop\\Module\\PsAccounts\\Presenter\\DependenciesPresenter' => $baseDir . '/src/Presenter/DependenciesPresenter.php',
'PrestaShop\\Module\\PsAccounts\\Presenter\\PresenterInterface' => $baseDir . '/src/Presenter/PresenterInterface.php',
'PrestaShop\\Module\\PsAccounts\\Presenter\\PsAccountsPresenter' => $baseDir . '/src/Presenter/PsAccountsPresenter.php',
'PrestaShop\\Module\\PsAccounts\\Presenter\\Store\\Context\\ContextPresenter' => $baseDir . '/src/Presenter/Store/Context/ContextPresenter.php',
'PrestaShop\\Module\\PsAccounts\\Presenter\\Store\\StorePresenter' => $baseDir . '/src/Presenter/Store/StorePresenter.php',
'PrestaShop\\Module\\PsAccounts\\Provider\\OAuth2\\PrestaShopSession' => $baseDir . '/src/Provider/OAuth2/PrestaShopSession.php',
'PrestaShop\\Module\\PsAccounts\\Provider\\ShopProvider' => $baseDir . '/src/Provider/ShopProvider.php',
'PrestaShop\\Module\\PsAccounts\\Repository\\ConfigurationRepository' => $baseDir . '/src/Repository/ConfigurationRepository.php',
'PrestaShop\\Module\\PsAccounts\\Repository\\EmployeeAccountRepository' => $baseDir . '/src/Repository/EmployeeAccountRepository.php',
'PrestaShop\\Module\\PsAccounts\\Repository\\ShopTokenRepository' => $baseDir . '/src/Repository/ShopTokenRepository.php',
'PrestaShop\\Module\\PsAccounts\\Repository\\TokenRepository' => $baseDir . '/src/Repository/TokenRepository.php',
'PrestaShop\\Module\\PsAccounts\\Repository\\UserTokenRepository' => $baseDir . '/src/Repository/UserTokenRepository.php',
'PrestaShop\\Module\\PsAccounts\\ServiceContainer\\PsAccountsContainer' => $baseDir . '/src/ServiceContainer/PsAccountsContainer.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\ApiClientProvider' => $baseDir . '/src/ServiceProvider/ApiClientProvider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\CommandProvider' => $baseDir . '/src/ServiceProvider/CommandProvider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\DefaultProvider' => $baseDir . '/src/ServiceProvider/DefaultProvider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\OAuth2Provider' => $baseDir . '/src/ServiceProvider/OAuth2Provider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\QueryProvider' => $baseDir . '/src/ServiceProvider/QueryProvider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\RepositoryProvider' => $baseDir . '/src/ServiceProvider/RepositoryProvider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\SessionProvider' => $baseDir . '/src/ServiceProvider/SessionProvider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\StaticProvider' => $baseDir . '/src/ServiceProvider/StaticProvider.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\AccountsException' => $baseDir . '/src/Service/Accounts/AccountsException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\AccountsService' => $baseDir . '/src/Service/Accounts/AccountsService.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Exception\\ConnectException' => $baseDir . '/src/Service/Accounts/Exception/ConnectException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Exception\\StoreLegacyNotFoundException' => $baseDir . '/src/Service/Accounts/Exception/StoreLegacyNotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Resource\\FirebaseToken' => $baseDir . '/src/Service/Accounts/Resource/FirebaseToken.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Resource\\FirebaseTokens' => $baseDir . '/src/Service/Accounts/Resource/FirebaseTokens.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Resource\\IdentityCreated' => $baseDir . '/src/Service/Accounts/Resource/IdentityCreated.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Resource\\LegacyFirebaseToken' => $baseDir . '/src/Service/Accounts/Resource/LegacyFirebaseToken.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Resource\\ShopStatus' => $baseDir . '/src/Service/Accounts/Resource/ShopStatus.php',
'PrestaShop\\Module\\PsAccounts\\Service\\AdminTokenService' => $baseDir . '/src/Service/AdminTokenService.php',
'PrestaShop\\Module\\PsAccounts\\Service\\AnalyticsService' => $baseDir . '/src/Service/AnalyticsService.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\CachedFile' => $baseDir . '/src/Service/OAuth2/CachedFile.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Exception\\ConnectException' => $baseDir . '/src/Service/OAuth2/Exception/ConnectException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Exception\\InvalidRequestException' => $baseDir . '/src/Service/OAuth2/Exception/InvalidRequestException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Exception\\InvalidScopeException' => $baseDir . '/src/Service/OAuth2/Exception/InvalidScopeException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\OAuth2Client' => $baseDir . '/src/Service/OAuth2/OAuth2Client.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\OAuth2Exception' => $baseDir . '/src/Service/OAuth2/OAuth2Exception.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\OAuth2ServerException' => $baseDir . '/src/Service/OAuth2/OAuth2ServerException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\OAuth2Service' => $baseDir . '/src/Service/OAuth2/OAuth2Service.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Resource\\AccessToken' => $baseDir . '/src/Service/OAuth2/Resource/AccessToken.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Resource\\UserInfo' => $baseDir . '/src/Service/OAuth2/Resource/UserInfo.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Resource\\WellKnown' => $baseDir . '/src/Service/OAuth2/Resource/WellKnown.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Exception\\AudienceInvalidException' => $baseDir . '/src/Service/OAuth2/Token/Validator/Exception/AudienceInvalidException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Exception\\KidInvalidException' => $baseDir . '/src/Service/OAuth2/Token/Validator/Exception/KidInvalidException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Exception\\ScopeInvalidException' => $baseDir . '/src/Service/OAuth2/Token/Validator/Exception/ScopeInvalidException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Exception\\SignatureInvalidException' => $baseDir . '/src/Service/OAuth2/Token/Validator/Exception/SignatureInvalidException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Exception\\TokenExpiredException' => $baseDir . '/src/Service/OAuth2/Token/Validator/Exception/TokenExpiredException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Exception\\TokenInvalidException' => $baseDir . '/src/Service/OAuth2/Token/Validator/Exception/TokenInvalidException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Validator' => $baseDir . '/src/Service/OAuth2/Token/Validator/Validator.php',
'PrestaShop\\Module\\PsAccounts\\Service\\PsAccountsService' => $baseDir . '/src/Service/PsAccountsService.php',
'PrestaShop\\Module\\PsAccounts\\Service\\PsBillingService' => $baseDir . '/src/Service/PsBillingService.php',
'PrestaShop\\Module\\PsAccounts\\Service\\SentryService' => $baseDir . '/src/Service/SentryService.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Sentry\\ModuleFilteredRavenClient' => $baseDir . '/src/Service/Sentry/ModuleFilteredRavenClient.php',
'PrestaShop\\Module\\PsAccounts\\Service\\UpgradeService' => $baseDir . '/src/Service/UpgradeService.php',
'PrestaShop\\Module\\PsAccounts\\Settings\\SettingsForm' => $baseDir . '/src/Settings/SettingsForm.php',
'PrestaShop\\Module\\PsAccounts\\Traits\\WithOriginAndSourceTrait' => $baseDir . '/src/Traits/WithOriginAndSourceTrait.php',
'PrestaShop\\Module\\PsAccounts\\Traits\\WithPropertyTrait' => $baseDir . '/src/Traits/WithPropertyTrait.php',
'PrestaShop\\Module\\PsAccounts\\Translations\\SettingsTranslations' => $baseDir . '/src/Translations/SettingsTranslations.php',
'PrestaShop\\Module\\PsAccounts\\Type\\Dto' => $baseDir . '/src/Type/Dto.php',
'PrestaShop\\Module\\PsAccounts\\Type\\Enum' => $baseDir . '/src/Type/Enum.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\BeforeValidException' => $vendorDir . '/firebase/php-jwt/src/BeforeValidException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\ExpiredException' => $vendorDir . '/firebase/php-jwt/src/ExpiredException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\JWK' => $vendorDir . '/firebase/php-jwt/src/JWK.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\JWT' => $vendorDir . '/firebase/php-jwt/src/JWT.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\Key' => $vendorDir . '/firebase/php-jwt/src/Key.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\SignatureInvalidException' => $vendorDir . '/firebase/php-jwt/src/SignatureInvalidException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Builder' => $vendorDir . '/lcobucci/jwt/src/Builder.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim' => $vendorDir . '/lcobucci/jwt/src/Claim.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim\\Basic' => $vendorDir . '/lcobucci/jwt/src/Claim/Basic.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim\\EqualsTo' => $vendorDir . '/lcobucci/jwt/src/Claim/EqualsTo.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim\\Factory' => $vendorDir . '/lcobucci/jwt/src/Claim/Factory.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim\\GreaterOrEqualsTo' => $vendorDir . '/lcobucci/jwt/src/Claim/GreaterOrEqualsTo.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim\\LesserOrEqualsTo' => $vendorDir . '/lcobucci/jwt/src/Claim/LesserOrEqualsTo.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim\\Validatable' => $vendorDir . '/lcobucci/jwt/src/Claim/Validatable.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Configuration' => $vendorDir . '/lcobucci/jwt/src/Configuration.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Encoding\\CannotDecodeContent' => $vendorDir . '/lcobucci/jwt/src/Encoding/CannotDecodeContent.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Encoding\\CannotEncodeContent' => $vendorDir . '/lcobucci/jwt/src/Encoding/CannotEncodeContent.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Exception' => $vendorDir . '/lcobucci/jwt/src/Exception.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Parser' => $vendorDir . '/lcobucci/jwt/src/Parser.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Parsing\\Decoder' => $vendorDir . '/lcobucci/jwt/src/Parsing/Decoder.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Parsing\\Encoder' => $vendorDir . '/lcobucci/jwt/src/Parsing/Encoder.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signature' => $vendorDir . '/lcobucci/jwt/src/Signature.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer' => $vendorDir . '/lcobucci/jwt/src/Signer.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\BaseSigner' => $vendorDir . '/lcobucci/jwt/src/Signer/BaseSigner.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\CannotSignPayload' => $vendorDir . '/lcobucci/jwt/src/Signer/CannotSignPayload.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa' => $vendorDir . '/lcobucci/jwt/src/Signer/Ecdsa.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa\\ConversionFailed' => $vendorDir . '/lcobucci/jwt/src/Signer/Ecdsa/ConversionFailed.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa\\MultibyteStringConverter' => $vendorDir . '/lcobucci/jwt/src/Signer/Ecdsa/MultibyteStringConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa\\Sha256' => $vendorDir . '/lcobucci/jwt/src/Signer/Ecdsa/Sha256.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa\\Sha384' => $vendorDir . '/lcobucci/jwt/src/Signer/Ecdsa/Sha384.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa\\Sha512' => $vendorDir . '/lcobucci/jwt/src/Signer/Ecdsa/Sha512.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa\\SignatureConverter' => $vendorDir . '/lcobucci/jwt/src/Signer/Ecdsa/SignatureConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Hmac' => $vendorDir . '/lcobucci/jwt/src/Signer/Hmac.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Hmac\\Sha256' => $vendorDir . '/lcobucci/jwt/src/Signer/Hmac/Sha256.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Hmac\\Sha384' => $vendorDir . '/lcobucci/jwt/src/Signer/Hmac/Sha384.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Hmac\\Sha512' => $vendorDir . '/lcobucci/jwt/src/Signer/Hmac/Sha512.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\InvalidKeyProvided' => $vendorDir . '/lcobucci/jwt/src/Signer/InvalidKeyProvided.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Key' => $vendorDir . '/lcobucci/jwt/src/Signer/Key.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Key\\FileCouldNotBeRead' => $vendorDir . '/lcobucci/jwt/src/Signer/Key/FileCouldNotBeRead.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Key\\InMemory' => $vendorDir . '/lcobucci/jwt/src/Signer/Key/InMemory.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Key\\LocalFileReference' => $vendorDir . '/lcobucci/jwt/src/Signer/Key/LocalFileReference.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Keychain' => $vendorDir . '/lcobucci/jwt/src/Signer/Keychain.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\None' => $vendorDir . '/lcobucci/jwt/src/Signer/None.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\OpenSSL' => $vendorDir . '/lcobucci/jwt/src/Signer/OpenSSL.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Rsa' => $vendorDir . '/lcobucci/jwt/src/Signer/Rsa.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Rsa\\Sha256' => $vendorDir . '/lcobucci/jwt/src/Signer/Rsa/Sha256.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Rsa\\Sha384' => $vendorDir . '/lcobucci/jwt/src/Signer/Rsa/Sha384.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Rsa\\Sha512' => $vendorDir . '/lcobucci/jwt/src/Signer/Rsa/Sha512.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Token' => $vendorDir . '/lcobucci/jwt/src/Token.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Token\\DataSet' => $vendorDir . '/lcobucci/jwt/src/Token/DataSet.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Token\\InvalidTokenStructure' => $vendorDir . '/lcobucci/jwt/src/Token/InvalidTokenStructure.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Token\\RegisteredClaimGiven' => $vendorDir . '/lcobucci/jwt/src/Token/RegisteredClaimGiven.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Token\\RegisteredClaims' => $vendorDir . '/lcobucci/jwt/src/Token/RegisteredClaims.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Token\\UnsupportedHeaderFound' => $vendorDir . '/lcobucci/jwt/src/Token/UnsupportedHeaderFound.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\ValidationData' => $vendorDir . '/lcobucci/jwt/src/ValidationData.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint' => $vendorDir . '/lcobucci/jwt/src/Validation/Constraint.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\ConstraintViolation' => $vendorDir . '/lcobucci/jwt/src/Validation/ConstraintViolation.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\IdentifiedBy' => $vendorDir . '/lcobucci/jwt/src/Validation/Constraint/IdentifiedBy.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\IssuedBy' => $vendorDir . '/lcobucci/jwt/src/Validation/Constraint/IssuedBy.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\LeewayCannotBeNegative' => $vendorDir . '/lcobucci/jwt/src/Validation/Constraint/LeewayCannotBeNegative.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\PermittedFor' => $vendorDir . '/lcobucci/jwt/src/Validation/Constraint/PermittedFor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\RelatedTo' => $vendorDir . '/lcobucci/jwt/src/Validation/Constraint/RelatedTo.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\SignedWith' => $vendorDir . '/lcobucci/jwt/src/Validation/Constraint/SignedWith.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\ValidAt' => $vendorDir . '/lcobucci/jwt/src/Validation/Constraint/ValidAt.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\NoConstraintsGiven' => $vendorDir . '/lcobucci/jwt/src/Validation/NoConstraintsGiven.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\RequiredConstraintsViolated' => $vendorDir . '/lcobucci/jwt/src/Validation/RequiredConstraintsViolated.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Validator' => $vendorDir . '/lcobucci/jwt/src/Validation/Validator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validator' => $vendorDir . '/lcobucci/jwt/src/Validator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\ErrorHandler' => $vendorDir . '/monolog/monolog/src/Monolog/ErrorHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\ChromePHPFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\ElasticaFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\FlowdockFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\FluentdFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\FormatterInterface' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\GelfMessageFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\HtmlFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\JsonFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\LineFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LineFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\LogglyFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\LogstashFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\MongoDBFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\NormalizerFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\ScalarFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\WildfireFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\AbstractHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AbstractHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\AbstractProcessingHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\AbstractSyslogHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\AmqpHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AmqpHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\BrowserConsoleHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\BufferHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/BufferHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\ChromePHPHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\CouchDBHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\CubeHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/CubeHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\Curl\\Util' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/Curl/Util.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\DeduplicationHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\DoctrineCouchDBHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\DynamoDbHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\ElasticSearchHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\ErrorLogHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FilterHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FilterHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FingersCrossedHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FingersCrossed\\ActivationStrategyInterface' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FingersCrossed\\ChannelLevelActivationStrategy' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FingersCrossed\\ErrorLevelActivationStrategy' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FirePHPHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FleepHookHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FlowdockHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FormattableHandlerInterface' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FormattableHandlerTrait' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\GelfHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/GelfHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\GroupHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/GroupHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\HandlerInterface' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/HandlerInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\HandlerWrapper' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\HipChatHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/HipChatHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\IFTTTHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\InsightOpsHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\LogEntriesHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\LogglyHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/LogglyHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\MailHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MailHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\MandrillHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MandrillHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\MissingExtensionException' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\MongoDBHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\NativeMailerHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\NewRelicHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\NullHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NullHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\PHPConsoleHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\ProcessableHandlerInterface' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\ProcessableHandlerTrait' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\PsrHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/PsrHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\PushoverHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/PushoverHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\RavenHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RavenHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\RedisHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RedisHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\RollbarHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RollbarHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\RotatingFileHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SamplingHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SamplingHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SlackHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SlackHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SlackWebhookHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\Slack\\SlackRecord' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SlackbotHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SlackbotHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SocketHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SocketHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\StreamHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/StreamHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SwiftMailerHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SyslogHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SyslogHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SyslogUdpHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SyslogUdp\\UdpSocket' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\TestHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/TestHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\WhatFailureGroupHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\ZendMonitorHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Logger' => $vendorDir . '/monolog/monolog/src/Monolog/Logger.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\GitProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/GitProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\IntrospectionProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\MemoryPeakUsageProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\MemoryProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\MemoryUsageProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\MercurialProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\ProcessIdProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\ProcessorInterface' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\PsrLogMessageProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\TagProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/TagProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\UidProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/UidProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\WebProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/WebProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Registry' => $vendorDir . '/monolog/monolog/src/Monolog/Registry.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\ResettableInterface' => $vendorDir . '/monolog/monolog/src/Monolog/ResettableInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\SignalHandler' => $vendorDir . '/monolog/monolog/src/Monolog/SignalHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Utils' => $vendorDir . '/monolog/monolog/src/Monolog/Utils.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Contract\\IContainerLogger' => $vendorDir . '/prestashopcorp/lightweight-container/src/ServiceContainer/Contract/IContainerLogger.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Contract\\IServiceProvider' => $vendorDir . '/prestashopcorp/lightweight-container/src/ServiceContainer/Contract/IServiceProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Contract\\ISingletonService' => $vendorDir . '/prestashopcorp/lightweight-container/src/ServiceContainer/Contract/ISingletonService.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Exception\\ParameterNotFoundException' => $vendorDir . '/prestashopcorp/lightweight-container/src/ServiceContainer/Exception/ParameterNotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Exception\\ProviderNotFoundException' => $vendorDir . '/prestashopcorp/lightweight-container/src/ServiceContainer/Exception/ProviderNotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Exception\\ServiceNotFoundException' => $vendorDir . '/prestashopcorp/lightweight-container/src/ServiceContainer/Exception/ServiceNotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Provider\\ExampleProvider' => $vendorDir . '/prestashopcorp/lightweight-container/src/ServiceContainer/Provider/ExampleProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\ServiceContainer' => $vendorDir . '/prestashopcorp/lightweight-container/src/ServiceContainer/ServiceContainer.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\AbstractLogger' => $vendorDir . '/psr/log/Psr/Log/AbstractLogger.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\InvalidArgumentException' => $vendorDir . '/psr/log/Psr/Log/InvalidArgumentException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\LogLevel' => $vendorDir . '/psr/log/Psr/Log/LogLevel.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\LoggerAwareInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\LoggerAwareTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareTrait.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/DummyTest.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\Test\\LoggerInterfaceTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\Test\\TestLogger' => $vendorDir . '/psr/log/Psr/Log/Test/TestLogger.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\BinaryUtils' => $vendorDir . '/ramsey/uuid/src/BinaryUtils.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Builder\\DefaultUuidBuilder' => $vendorDir . '/ramsey/uuid/src/Builder/DefaultUuidBuilder.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Builder\\DegradedUuidBuilder' => $vendorDir . '/ramsey/uuid/src/Builder/DegradedUuidBuilder.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Builder\\UuidBuilderInterface' => $vendorDir . '/ramsey/uuid/src/Builder/UuidBuilderInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Codec\\CodecInterface' => $vendorDir . '/ramsey/uuid/src/Codec/CodecInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Codec\\GuidStringCodec' => $vendorDir . '/ramsey/uuid/src/Codec/GuidStringCodec.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Codec\\OrderedTimeCodec' => $vendorDir . '/ramsey/uuid/src/Codec/OrderedTimeCodec.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Codec\\StringCodec' => $vendorDir . '/ramsey/uuid/src/Codec/StringCodec.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Codec\\TimestampFirstCombCodec' => $vendorDir . '/ramsey/uuid/src/Codec/TimestampFirstCombCodec.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Codec\\TimestampLastCombCodec' => $vendorDir . '/ramsey/uuid/src/Codec/TimestampLastCombCodec.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\NumberConverterInterface' => $vendorDir . '/ramsey/uuid/src/Converter/NumberConverterInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\Number\\BigNumberConverter' => $vendorDir . '/ramsey/uuid/src/Converter/Number/BigNumberConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\Number\\DegradedNumberConverter' => $vendorDir . '/ramsey/uuid/src/Converter/Number/DegradedNumberConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\TimeConverterInterface' => $vendorDir . '/ramsey/uuid/src/Converter/TimeConverterInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\Time\\BigNumberTimeConverter' => $vendorDir . '/ramsey/uuid/src/Converter/Time/BigNumberTimeConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\Time\\DegradedTimeConverter' => $vendorDir . '/ramsey/uuid/src/Converter/Time/DegradedTimeConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\Time\\PhpTimeConverter' => $vendorDir . '/ramsey/uuid/src/Converter/Time/PhpTimeConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\DegradedUuid' => $vendorDir . '/ramsey/uuid/src/DegradedUuid.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Exception\\InvalidUuidStringException' => $vendorDir . '/ramsey/uuid/src/Exception/InvalidUuidStringException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Exception\\UnsatisfiedDependencyException' => $vendorDir . '/ramsey/uuid/src/Exception/UnsatisfiedDependencyException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Exception\\UnsupportedOperationException' => $vendorDir . '/ramsey/uuid/src/Exception/UnsupportedOperationException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\FeatureSet' => $vendorDir . '/ramsey/uuid/src/FeatureSet.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\CombGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/CombGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\DefaultTimeGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/DefaultTimeGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\MtRandGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/MtRandGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\OpenSslGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/OpenSslGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\PeclUuidRandomGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/PeclUuidRandomGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\PeclUuidTimeGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/PeclUuidTimeGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\RandomBytesGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/RandomBytesGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\RandomGeneratorFactory' => $vendorDir . '/ramsey/uuid/src/Generator/RandomGeneratorFactory.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\RandomGeneratorInterface' => $vendorDir . '/ramsey/uuid/src/Generator/RandomGeneratorInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\RandomLibAdapter' => $vendorDir . '/ramsey/uuid/src/Generator/RandomLibAdapter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\SodiumRandomGenerator' => $vendorDir . '/ramsey/uuid/src/Generator/SodiumRandomGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\TimeGeneratorFactory' => $vendorDir . '/ramsey/uuid/src/Generator/TimeGeneratorFactory.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\TimeGeneratorInterface' => $vendorDir . '/ramsey/uuid/src/Generator/TimeGeneratorInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\NodeProviderInterface' => $vendorDir . '/ramsey/uuid/src/Provider/NodeProviderInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\Node\\FallbackNodeProvider' => $vendorDir . '/ramsey/uuid/src/Provider/Node/FallbackNodeProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\Node\\RandomNodeProvider' => $vendorDir . '/ramsey/uuid/src/Provider/Node/RandomNodeProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\Node\\SystemNodeProvider' => $vendorDir . '/ramsey/uuid/src/Provider/Node/SystemNodeProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\TimeProviderInterface' => $vendorDir . '/ramsey/uuid/src/Provider/TimeProviderInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\Time\\FixedTimeProvider' => $vendorDir . '/ramsey/uuid/src/Provider/Time/FixedTimeProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\Time\\SystemTimeProvider' => $vendorDir . '/ramsey/uuid/src/Provider/Time/SystemTimeProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Uuid' => $vendorDir . '/ramsey/uuid/src/Uuid.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\UuidFactory' => $vendorDir . '/ramsey/uuid/src/UuidFactory.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\UuidFactoryInterface' => $vendorDir . '/ramsey/uuid/src/UuidFactoryInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\UuidInterface' => $vendorDir . '/ramsey/uuid/src/UuidInterface.php',
'Ps_accounts' => $baseDir . '/ps_accounts.php',
'Raven_Autoloader' => $vendorDir . '/sentry/sentry/lib/Raven/Autoloader.php',
'Raven_Breadcrumbs' => $vendorDir . '/sentry/sentry/lib/Raven/Breadcrumbs.php',
'Raven_Breadcrumbs_ErrorHandler' => $vendorDir . '/sentry/sentry/lib/Raven/Breadcrumbs/ErrorHandler.php',
'Raven_Breadcrumbs_MonologHandler' => $vendorDir . '/sentry/sentry/lib/Raven/Breadcrumbs/MonologHandler.php',
'Raven_Client' => $vendorDir . '/sentry/sentry/lib/Raven/Client.php',
'Raven_Compat' => $vendorDir . '/sentry/sentry/lib/Raven/Compat.php',
'Raven_Context' => $vendorDir . '/sentry/sentry/lib/Raven/Context.php',
'Raven_CurlHandler' => $vendorDir . '/sentry/sentry/lib/Raven/CurlHandler.php',
'Raven_ErrorHandler' => $vendorDir . '/sentry/sentry/lib/Raven/ErrorHandler.php',
'Raven_Exception' => $vendorDir . '/sentry/sentry/lib/Raven/Exception.php',
'Raven_Processor' => $vendorDir . '/sentry/sentry/lib/Raven/Processor.php',
'Raven_Processor_RemoveCookiesProcessor' => $vendorDir . '/sentry/sentry/lib/Raven/Processor/RemoveCookiesProcessor.php',
'Raven_Processor_RemoveHttpBodyProcessor' => $vendorDir . '/sentry/sentry/lib/Raven/Processor/RemoveHttpBodyProcessor.php',
'Raven_Processor_SanitizeDataProcessor' => $vendorDir . '/sentry/sentry/lib/Raven/Processor/SanitizeDataProcessor.php',
'Raven_Processor_SanitizeHttpHeadersProcessor' => $vendorDir . '/sentry/sentry/lib/Raven/Processor/SanitizeHttpHeadersProcessor.php',
'Raven_Processor_SanitizeStacktraceProcessor' => $vendorDir . '/sentry/sentry/lib/Raven/Processor/SanitizeStacktraceProcessor.php',
'Raven_ReprSerializer' => $vendorDir . '/sentry/sentry/lib/Raven/ReprSerializer.php',
'Raven_SanitizeDataProcessor' => $vendorDir . '/sentry/sentry/lib/Raven/SanitizeDataProcessor.php',
'Raven_Serializer' => $vendorDir . '/sentry/sentry/lib/Raven/Serializer.php',
'Raven_Stacktrace' => $vendorDir . '/sentry/sentry/lib/Raven/Stacktrace.php',
'Raven_TransactionStack' => $vendorDir . '/sentry/sentry/lib/Raven/TransactionStack.php',
'Raven_Util' => $vendorDir . '/sentry/sentry/lib/Raven/Util.php',
'Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php',
'ps_AccountsApiV2ShopHealthCheckModuleFrontController' => $baseDir . '/controllers/front/apiV2ShopHealthCheck.php',
'ps_AccountsApiV2ShopProofModuleFrontController' => $baseDir . '/controllers/front/apiV2ShopProof.php',
);

View File

@@ -0,0 +1,16 @@
<?php
// autoload_files.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'PsAccounts5255c38a0faeba867671b61dfda6d864' => $vendorDir . '/paragonie/random_compat/lib/random.php',
'PsAccounts320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
'PsAccounts256c1545158fc915c75e51a931bdba60' => $vendorDir . '/lcobucci/jwt/compat/class-aliases.php',
'PsAccounts0d273777b2b0d96e49fb3d800c6b0e81' => $vendorDir . '/lcobucci/jwt/compat/json-exception-polyfill.php',
'PsAccountsd6b246ac924292702635bb2349f4a64b' => $vendorDir . '/lcobucci/jwt/compat/lcobucci-clock-polyfill.php',
'PsAccountse39a8b23c42d4e1452234d762b03835a' => $vendorDir . '/ramsey/uuid/src/functions.php',
'2a9afd012ba84c341672875ae49cd5cd' => $vendorDir . '/segmentio/analytics-php/lib/Segment.php',
);

View File

@@ -0,0 +1,10 @@
<?php
// autoload_namespaces.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'Raven_' => array($vendorDir . '/sentry/sentry/lib'),
);

View File

@@ -0,0 +1,23 @@
<?php
// autoload_psr4.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
'Ramsey\\Uuid\\' => array($vendorDir . '/ramsey/uuid/src'),
'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\' => array($vendorDir . '/ramsey/uuid/src'),
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\' => array($vendorDir . '/prestashopcorp/lightweight-container/src'),
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'),
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\' => array($vendorDir . '/lcobucci/jwt/src'),
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
'PrestaShop\\Module\\PsAccounts\\' => array($baseDir . '/src'),
'PrestaShopCorp\\LightweightContainer\\' => array($vendorDir . '/prestashopcorp/lightweight-container/src'),
'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'),
'Lcobucci\\JWT\\' => array($vendorDir . '/lcobucci/jwt/src'),
'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
);

View File

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

View File

@@ -0,0 +1,584 @@
<?php
// autoload_static.php @generated by Composer
namespace Composer\Autoload;
class ComposerStaticInit8cf0e9751b64642799d08075e90841b5
{
public static $files = array (
'PsAccounts5255c38a0faeba867671b61dfda6d864' => __DIR__ . '/..' . '/paragonie/random_compat/lib/random.php',
'PsAccounts320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
'PsAccounts256c1545158fc915c75e51a931bdba60' => __DIR__ . '/..' . '/lcobucci/jwt/compat/class-aliases.php',
'PsAccounts0d273777b2b0d96e49fb3d800c6b0e81' => __DIR__ . '/..' . '/lcobucci/jwt/compat/json-exception-polyfill.php',
'PsAccountsd6b246ac924292702635bb2349f4a64b' => __DIR__ . '/..' . '/lcobucci/jwt/compat/lcobucci-clock-polyfill.php',
'PsAccountse39a8b23c42d4e1452234d762b03835a' => __DIR__ . '/..' . '/ramsey/uuid/src/functions.php',
'2a9afd012ba84c341672875ae49cd5cd' => __DIR__ . '/..' . '/segmentio/analytics-php/lib/Segment.php',
);
public static $prefixLengthsPsr4 = array (
'S' =>
array (
'Symfony\\Polyfill\\Ctype\\' => 23,
),
'R' =>
array (
'Ramsey\\Uuid\\' => 12,
),
'P' =>
array (
'Psr\\Log\\' => 8,
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\' => 48,
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\' => 44,
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\' => 72,
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\' => 44,
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\' => 49,
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\' => 49,
'PrestaShop\\Module\\PsAccounts\\' => 29,
'PrestaShopCorp\\LightweightContainer\\' => 36,
),
'M' =>
array (
'Monolog\\' => 8,
),
'L' =>
array (
'Lcobucci\\JWT\\' => 13,
),
'F' =>
array (
'Firebase\\JWT\\' => 13,
),
);
public static $prefixDirsPsr4 = array (
'Symfony\\Polyfill\\Ctype\\' =>
array (
0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
),
'Ramsey\\Uuid\\' =>
array (
0 => __DIR__ . '/..' . '/ramsey/uuid/src',
),
'Psr\\Log\\' =>
array (
0 => __DIR__ . '/..' . '/psr/log/Psr/Log',
),
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\' =>
array (
0 => __DIR__ . '/..' . '/ramsey/uuid/src',
),
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\' =>
array (
0 => __DIR__ . '/..' . '/psr/log/Psr/Log',
),
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\' =>
array (
0 => __DIR__ . '/..' . '/prestashopcorp/lightweight-container/src',
),
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\' =>
array (
0 => __DIR__ . '/..' . '/monolog/monolog/src/Monolog',
),
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\' =>
array (
0 => __DIR__ . '/..' . '/lcobucci/jwt/src',
),
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\' =>
array (
0 => __DIR__ . '/..' . '/firebase/php-jwt/src',
),
'PrestaShop\\Module\\PsAccounts\\' =>
array (
0 => __DIR__ . '/../..' . '/src',
),
'PrestaShopCorp\\LightweightContainer\\' =>
array (
0 => __DIR__ . '/..' . '/prestashopcorp/lightweight-container/src',
),
'Monolog\\' =>
array (
0 => __DIR__ . '/..' . '/monolog/monolog/src/Monolog',
),
'Lcobucci\\JWT\\' =>
array (
0 => __DIR__ . '/..' . '/lcobucci/jwt/src',
),
'Firebase\\JWT\\' =>
array (
0 => __DIR__ . '/..' . '/firebase/php-jwt/src',
),
);
public static $prefixesPsr0 = array (
'R' =>
array (
'Raven_' =>
array (
0 => __DIR__ . '/..' . '/sentry/sentry/lib',
),
),
);
public static $classMap = array (
'AdminAjaxPsAccountsController' => __DIR__ . '/../..' . '/controllers/admin/AdminAjaxPsAccountsController.php',
'AdminAjaxV2PsAccountsController' => __DIR__ . '/../..' . '/controllers/admin/AdminAjaxV2PsAccountsController.php',
'AdminDebugPsAccountsController' => __DIR__ . '/../..' . '/controllers/admin/AdminDebugPsAccountsController.php',
'AdminLoginController' => __DIR__ . '/../..' . '/controllers/admin/AdminLoginController.php',
'AdminLoginPsAccountsController' => __DIR__ . '/../..' . '/controllers/admin/AdminLoginPsAccountsController.php',
'AdminOAuth2PsAccountsController' => __DIR__ . '/../..' . '/controllers/admin/AdminOAuth2PsAccountsController.php',
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\Exception\\AccountLoginException' => __DIR__ . '/../..' . '/src/AccountLogin/Exception/AccountLoginException.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\Exception\\EmailNotVerifiedException' => __DIR__ . '/../..' . '/src/AccountLogin/Exception/EmailNotVerifiedException.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\Exception\\EmployeeNotFoundException' => __DIR__ . '/../..' . '/src/AccountLogin/Exception/EmployeeNotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\Exception\\Oauth2LoginException' => __DIR__ . '/../..' . '/src/AccountLogin/Exception/Oauth2LoginException.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\Middleware\\Oauth2Middleware' => __DIR__ . '/../..' . '/src/AccountLogin/Middleware/Oauth2Middleware.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\OAuth2LoginTrait' => __DIR__ . '/../..' . '/src/AccountLogin/OAuth2LoginTrait.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\OAuth2LogoutTrait' => __DIR__ . '/../..' . '/src/AccountLogin/OAuth2LogoutTrait.php',
'PrestaShop\\Module\\PsAccounts\\AccountLogin\\OAuth2Session' => __DIR__ . '/../..' . '/src/AccountLogin/OAuth2Session.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CachedShopStatus' => __DIR__ . '/../..' . '/src/Account/CachedShopStatus.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\CleanupIdentityHandler' => __DIR__ . '/../..' . '/src/Account/CommandHandler/CleanupIdentityHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\CreateIdentitiesHandler' => __DIR__ . '/../..' . '/src/Account/CommandHandler/CreateIdentitiesHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\CreateIdentityHandler' => __DIR__ . '/../..' . '/src/Account/CommandHandler/CreateIdentityHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\IdentifyContactHandler' => __DIR__ . '/../..' . '/src/Account/CommandHandler/IdentifyContactHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\MigrateOrCreateIdentitiesV8Handler' => __DIR__ . '/../..' . '/src/Account/CommandHandler/MigrateOrCreateIdentitiesV8Handler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\MigrateOrCreateIdentityV8Handler' => __DIR__ . '/../..' . '/src/Account/CommandHandler/MigrateOrCreateIdentityV8Handler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\MultiShopHandler' => __DIR__ . '/../..' . '/src/Account/CommandHandler/MultiShopHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\RestoreIdentityHandler' => __DIR__ . '/../..' . '/src/Account/CommandHandler/RestoreIdentityHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\UpdateBackOfficeUrlHandler' => __DIR__ . '/../..' . '/src/Account/CommandHandler/UpdateBackOfficeUrlHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\UpdateBackOfficeUrlsHandler' => __DIR__ . '/../..' . '/src/Account/CommandHandler/UpdateBackOfficeUrlsHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\VerifyIdentitiesHandler' => __DIR__ . '/../..' . '/src/Account/CommandHandler/VerifyIdentitiesHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\CommandHandler\\VerifyIdentityHandler' => __DIR__ . '/../..' . '/src/Account/CommandHandler/VerifyIdentityHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\CleanupIdentityCommand' => __DIR__ . '/../..' . '/src/Account/Command/CleanupIdentityCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\CreateIdentitiesCommand' => __DIR__ . '/../..' . '/src/Account/Command/CreateIdentitiesCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\CreateIdentityCommand' => __DIR__ . '/../..' . '/src/Account/Command/CreateIdentityCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\IdentifyContactCommand' => __DIR__ . '/../..' . '/src/Account/Command/IdentifyContactCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\MigrateOrCreateIdentitiesV8Command' => __DIR__ . '/../..' . '/src/Account/Command/MigrateOrCreateIdentitiesV8Command.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\MigrateOrCreateIdentityV8Command' => __DIR__ . '/../..' . '/src/Account/Command/MigrateOrCreateIdentityV8Command.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\RestoreIdentityCommand' => __DIR__ . '/../..' . '/src/Account/Command/RestoreIdentityCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\UpdateBackOfficeUrlCommand' => __DIR__ . '/../..' . '/src/Account/Command/UpdateBackOfficeUrlCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\UpdateBackOfficeUrlsCommand' => __DIR__ . '/../..' . '/src/Account/Command/UpdateBackOfficeUrlsCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\VerifyIdentitiesCommand' => __DIR__ . '/../..' . '/src/Account/Command/VerifyIdentitiesCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Command\\VerifyIdentityCommand' => __DIR__ . '/../..' . '/src/Account/Command/VerifyIdentityCommand.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Dto\\Shop' => __DIR__ . '/../..' . '/src/Account/Dto/Shop.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Dto\\UpdateShop' => __DIR__ . '/../..' . '/src/Account/Dto/UpdateShop.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Dto\\User' => __DIR__ . '/../..' . '/src/Account/Dto/User.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Exception\\RefreshTokenException' => __DIR__ . '/../..' . '/src/Account/Exception/RefreshTokenException.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Exception\\UnknownStatusException' => __DIR__ . '/../..' . '/src/Account/Exception/UnknownStatusException.php',
'PrestaShop\\Module\\PsAccounts\\Account\\ProofManager' => __DIR__ . '/../..' . '/src/Account/ProofManager.php',
'PrestaShop\\Module\\PsAccounts\\Account\\QueryHandler\\GetContextHandler' => __DIR__ . '/../..' . '/src/Account/QueryHandler/GetContextHandler.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Query\\GetContextQuery' => __DIR__ . '/../..' . '/src/Account/Query/GetContextQuery.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Session\\Firebase\\FirebaseSession' => __DIR__ . '/../..' . '/src/Account/Session/Firebase/FirebaseSession.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Session\\Firebase\\OwnerSession' => __DIR__ . '/../..' . '/src/Account/Session/Firebase/OwnerSession.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Session\\Firebase\\ShopSession' => __DIR__ . '/../..' . '/src/Account/Session/Firebase/ShopSession.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Session\\Session' => __DIR__ . '/../..' . '/src/Account/Session/Session.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Session\\SessionInterface' => __DIR__ . '/../..' . '/src/Account/Session/SessionInterface.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Session\\ShopSession' => __DIR__ . '/../..' . '/src/Account/Session/ShopSession.php',
'PrestaShop\\Module\\PsAccounts\\Account\\ShopUrl' => __DIR__ . '/../..' . '/src/Account/ShopUrl.php',
'PrestaShop\\Module\\PsAccounts\\Account\\StatusManager' => __DIR__ . '/../..' . '/src/Account/StatusManager.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Token\\NullToken' => __DIR__ . '/../..' . '/src/Account/Token/NullToken.php',
'PrestaShop\\Module\\PsAccounts\\Account\\Token\\Token' => __DIR__ . '/../..' . '/src/Account/Token/Token.php',
'PrestaShop\\Module\\PsAccounts\\Adapter\\Configuration' => __DIR__ . '/../..' . '/src/Adapter/Configuration.php',
'PrestaShop\\Module\\PsAccounts\\Adapter\\ConfigurationKeys' => __DIR__ . '/../..' . '/src/Adapter/ConfigurationKeys.php',
'PrestaShop\\Module\\PsAccounts\\Adapter\\Link' => __DIR__ . '/../..' . '/src/Adapter/Link.php',
'PrestaShop\\Module\\PsAccounts\\Api\\Client\\AccountsClient' => __DIR__ . '/../..' . '/src/Api/Client/AccountsClient.php',
'PrestaShop\\Module\\PsAccounts\\Api\\Client\\ExternalAssetsClient' => __DIR__ . '/../..' . '/src/Api/Client/ExternalAssetsClient.php',
'PrestaShop\\Module\\PsAccounts\\Api\\Client\\ServicesBillingClient' => __DIR__ . '/../..' . '/src/Api/Client/ServicesBillingClient.php',
'PrestaShop\\Module\\PsAccounts\\Context\\ShopContext' => __DIR__ . '/../..' . '/src/Context/ShopContext.php',
'PrestaShop\\Module\\PsAccounts\\Controller\\Admin\\OAuth2Controller' => __DIR__ . '/../..' . '/src/Controller/Admin/OAuth2Controller.php',
'PrestaShop\\Module\\PsAccounts\\Cqrs\\Bus' => __DIR__ . '/../..' . '/src/Cqrs/Bus.php',
'PrestaShop\\Module\\PsAccounts\\Cqrs\\CommandBus' => __DIR__ . '/../..' . '/src/Cqrs/CommandBus.php',
'PrestaShop\\Module\\PsAccounts\\Cqrs\\QueryBus' => __DIR__ . '/../..' . '/src/Cqrs/QueryBus.php',
'PrestaShop\\Module\\PsAccounts\\Entity\\EmployeeAccount' => __DIR__ . '/../..' . '/src/Entity/EmployeeAccount.php',
'PrestaShop\\Module\\PsAccounts\\Exception\\BillingException' => __DIR__ . '/../..' . '/src/Exception/BillingException.php',
'PrestaShop\\Module\\PsAccounts\\Exception\\DtoException' => __DIR__ . '/../..' . '/src/Exception/DtoException.php',
'PrestaShop\\Module\\PsAccounts\\Exception\\RefreshTokenException' => __DIR__ . '/../..' . '/src/Exception/RefreshTokenException.php',
'PrestaShop\\Module\\PsAccounts\\Exception\\SshKeysNotFoundException' => __DIR__ . '/../..' . '/src/Exception/SshKeysNotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionAdminControllerInitBefore' => __DIR__ . '/../..' . '/src/Hook/ActionAdminControllerInitBefore.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionAdminControllerSetMedia' => __DIR__ . '/../..' . '/src/Hook/ActionAdminControllerSetMedia.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionAdminLoginControllerLoginAfter' => __DIR__ . '/../..' . '/src/Hook/ActionAdminLoginControllerLoginAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionAdminLoginControllerSetMedia' => __DIR__ . '/../..' . '/src/Hook/ActionAdminLoginControllerSetMedia.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionObjectEmployeeDeleteAfter' => __DIR__ . '/../..' . '/src/Hook/ActionObjectEmployeeDeleteAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionObjectShopAddAfter' => __DIR__ . '/../..' . '/src/Hook/ActionObjectShopAddAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionObjectShopDeleteAfter' => __DIR__ . '/../..' . '/src/Hook/ActionObjectShopDeleteAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionObjectShopDeleteBefore' => __DIR__ . '/../..' . '/src/Hook/ActionObjectShopDeleteBefore.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionObjectShopUpdateAfter' => __DIR__ . '/../..' . '/src/Hook/ActionObjectShopUpdateAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionObjectShopUrlUpdateAfter' => __DIR__ . '/../..' . '/src/Hook/ActionObjectShopUrlUpdateAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionShopAccessTokenRefreshAfter' => __DIR__ . '/../..' . '/src/Hook/ActionShopAccessTokenRefreshAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionShopAccountLinkAfter' => __DIR__ . '/../..' . '/src/Hook/ActionShopAccountLinkAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\ActionShopAccountUnlinkAfter' => __DIR__ . '/../..' . '/src/Hook/ActionShopAccountUnlinkAfter.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\DisplayAccountUpdateWarning' => __DIR__ . '/../..' . '/src/Hook/DisplayAccountUpdateWarning.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\DisplayBackOfficeEmployeeMenu' => __DIR__ . '/../..' . '/src/Hook/DisplayBackOfficeEmployeeMenu.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\DisplayBackOfficeHeader' => __DIR__ . '/../..' . '/src/Hook/DisplayBackOfficeHeader.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\DisplayDashboardTop' => __DIR__ . '/../..' . '/src/Hook/DisplayDashboardTop.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\Hook' => __DIR__ . '/../..' . '/src/Hook/Hook.php',
'PrestaShop\\Module\\PsAccounts\\Hook\\HookableTrait' => __DIR__ . '/../..' . '/src/Hook/HookableTrait.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\CircuitBreaker\\CircuitBreaker' => __DIR__ . '/../..' . '/src/Http/Client/CircuitBreaker/CircuitBreaker.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\CircuitBreaker\\CircuitBreakerException' => __DIR__ . '/../..' . '/src/Http/Client/CircuitBreaker/CircuitBreakerException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\CircuitBreaker\\Factory' => __DIR__ . '/../..' . '/src/Http/Client/CircuitBreaker/Factory.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\CircuitBreaker\\InMemoryCircuitBreaker' => __DIR__ . '/../..' . '/src/Http/Client/CircuitBreaker/InMemoryCircuitBreaker.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\CircuitBreaker\\PersistentCircuitBreaker' => __DIR__ . '/../..' . '/src/Http/Client/CircuitBreaker/PersistentCircuitBreaker.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\CircuitBreaker\\State' => __DIR__ . '/../..' . '/src/Http/Client/CircuitBreaker/State.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\ClientConfig' => __DIR__ . '/../..' . '/src/Http/Client/ClientConfig.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\ConfigObject' => __DIR__ . '/../..' . '/src/Http/Client/ConfigObject.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Curl\\Client' => __DIR__ . '/../..' . '/src/Http/Client/Curl/Client.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Exception\\ClientException' => __DIR__ . '/../..' . '/src/Http/Client/Exception/ClientException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Exception\\ConnectException' => __DIR__ . '/../..' . '/src/Http/Client/Exception/ConnectException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Exception\\RequiredPropertyException' => __DIR__ . '/../..' . '/src/Http/Client/Exception/RequiredPropertyException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Exception\\UndefinedPropertyException' => __DIR__ . '/../..' . '/src/Http/Client/Exception/UndefinedPropertyException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Factory' => __DIR__ . '/../..' . '/src/Http/Client/Factory.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Request' => __DIR__ . '/../..' . '/src/Http/Client/Request.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Client\\Response' => __DIR__ . '/../..' . '/src/Http/Client/Response.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Controller\\AbstractAdminAjaxCorsController' => __DIR__ . '/../..' . '/src/Http/Controller/AbstractAdminAjaxCorsController.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Controller\\AbstractV2RestController' => __DIR__ . '/../..' . '/src/Http/Controller/AbstractV2RestController.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Controller\\AbstractV2ShopRestController' => __DIR__ . '/../..' . '/src/Http/Controller/AbstractV2ShopRestController.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Controller\\GetHeader' => __DIR__ . '/../..' . '/src/Http/Controller/GetHeader.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Controller\\RestMethod' => __DIR__ . '/../..' . '/src/Http/Controller/RestMethod.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Exception\\BadRequestException' => __DIR__ . '/../..' . '/src/Http/Exception/BadRequestException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Exception\\HttpException' => __DIR__ . '/../..' . '/src/Http/Exception/HttpException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Exception\\InternalServerErrorException' => __DIR__ . '/../..' . '/src/Http/Exception/InternalServerErrorException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Exception\\MethodNotAllowedException' => __DIR__ . '/../..' . '/src/Http/Exception/MethodNotAllowedException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Exception\\NotFoundException' => __DIR__ . '/../..' . '/src/Http/Exception/NotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Exception\\UnauthorizedException' => __DIR__ . '/../..' . '/src/Http/Exception/UnauthorizedException.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Request\\Request' => __DIR__ . '/../..' . '/src/Http/Request/Request.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Request\\ShopHealthCheckRequest' => __DIR__ . '/../..' . '/src/Http/Request/ShopHealthCheckRequest.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Request\\UpdateShopLinkAccountRequest' => __DIR__ . '/../..' . '/src/Http/Request/UpdateShopLinkAccountRequest.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Request\\UpdateShopOauth2ClientRequest' => __DIR__ . '/../..' . '/src/Http/Request/UpdateShopOauth2ClientRequest.php',
'PrestaShop\\Module\\PsAccounts\\Http\\Resource\\Resource' => __DIR__ . '/../..' . '/src/Http/Resource/Resource.php',
'PrestaShop\\Module\\PsAccounts\\Installer\\Installer' => __DIR__ . '/../..' . '/src/Installer/Installer.php',
'PrestaShop\\Module\\PsAccounts\\Log\\Logger' => __DIR__ . '/../..' . '/src/Log/Logger.php',
'PrestaShop\\Module\\PsAccounts\\Module\\Install' => __DIR__ . '/../..' . '/src/Module/Install.php',
'PrestaShop\\Module\\PsAccounts\\Module\\Uninstall' => __DIR__ . '/../..' . '/src/Module/Uninstall.php',
'PrestaShop\\Module\\PsAccounts\\Polyfill\\ConfigurationStorageSession' => __DIR__ . '/../..' . '/src/Polyfill/ConfigurationStorageSession.php',
'PrestaShop\\Module\\PsAccounts\\Polyfill\\Traits\\AdminController\\IsAnonymousAllowed' => __DIR__ . '/../..' . '/src/Polyfill/Traits/AdminController/IsAnonymousAllowed.php',
'PrestaShop\\Module\\PsAccounts\\Polyfill\\Traits\\Controller\\AjaxRender' => __DIR__ . '/../..' . '/src/Polyfill/Traits/Controller/AjaxRender.php',
'PrestaShop\\Module\\PsAccounts\\Presenter\\DependenciesPresenter' => __DIR__ . '/../..' . '/src/Presenter/DependenciesPresenter.php',
'PrestaShop\\Module\\PsAccounts\\Presenter\\PresenterInterface' => __DIR__ . '/../..' . '/src/Presenter/PresenterInterface.php',
'PrestaShop\\Module\\PsAccounts\\Presenter\\PsAccountsPresenter' => __DIR__ . '/../..' . '/src/Presenter/PsAccountsPresenter.php',
'PrestaShop\\Module\\PsAccounts\\Presenter\\Store\\Context\\ContextPresenter' => __DIR__ . '/../..' . '/src/Presenter/Store/Context/ContextPresenter.php',
'PrestaShop\\Module\\PsAccounts\\Presenter\\Store\\StorePresenter' => __DIR__ . '/../..' . '/src/Presenter/Store/StorePresenter.php',
'PrestaShop\\Module\\PsAccounts\\Provider\\OAuth2\\PrestaShopSession' => __DIR__ . '/../..' . '/src/Provider/OAuth2/PrestaShopSession.php',
'PrestaShop\\Module\\PsAccounts\\Provider\\ShopProvider' => __DIR__ . '/../..' . '/src/Provider/ShopProvider.php',
'PrestaShop\\Module\\PsAccounts\\Repository\\ConfigurationRepository' => __DIR__ . '/../..' . '/src/Repository/ConfigurationRepository.php',
'PrestaShop\\Module\\PsAccounts\\Repository\\EmployeeAccountRepository' => __DIR__ . '/../..' . '/src/Repository/EmployeeAccountRepository.php',
'PrestaShop\\Module\\PsAccounts\\Repository\\ShopTokenRepository' => __DIR__ . '/../..' . '/src/Repository/ShopTokenRepository.php',
'PrestaShop\\Module\\PsAccounts\\Repository\\TokenRepository' => __DIR__ . '/../..' . '/src/Repository/TokenRepository.php',
'PrestaShop\\Module\\PsAccounts\\Repository\\UserTokenRepository' => __DIR__ . '/../..' . '/src/Repository/UserTokenRepository.php',
'PrestaShop\\Module\\PsAccounts\\ServiceContainer\\PsAccountsContainer' => __DIR__ . '/../..' . '/src/ServiceContainer/PsAccountsContainer.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\ApiClientProvider' => __DIR__ . '/../..' . '/src/ServiceProvider/ApiClientProvider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\CommandProvider' => __DIR__ . '/../..' . '/src/ServiceProvider/CommandProvider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\DefaultProvider' => __DIR__ . '/../..' . '/src/ServiceProvider/DefaultProvider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\OAuth2Provider' => __DIR__ . '/../..' . '/src/ServiceProvider/OAuth2Provider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\QueryProvider' => __DIR__ . '/../..' . '/src/ServiceProvider/QueryProvider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\RepositoryProvider' => __DIR__ . '/../..' . '/src/ServiceProvider/RepositoryProvider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\SessionProvider' => __DIR__ . '/../..' . '/src/ServiceProvider/SessionProvider.php',
'PrestaShop\\Module\\PsAccounts\\ServiceProvider\\StaticProvider' => __DIR__ . '/../..' . '/src/ServiceProvider/StaticProvider.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\AccountsException' => __DIR__ . '/../..' . '/src/Service/Accounts/AccountsException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\AccountsService' => __DIR__ . '/../..' . '/src/Service/Accounts/AccountsService.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Exception\\ConnectException' => __DIR__ . '/../..' . '/src/Service/Accounts/Exception/ConnectException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Exception\\StoreLegacyNotFoundException' => __DIR__ . '/../..' . '/src/Service/Accounts/Exception/StoreLegacyNotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Resource\\FirebaseToken' => __DIR__ . '/../..' . '/src/Service/Accounts/Resource/FirebaseToken.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Resource\\FirebaseTokens' => __DIR__ . '/../..' . '/src/Service/Accounts/Resource/FirebaseTokens.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Resource\\IdentityCreated' => __DIR__ . '/../..' . '/src/Service/Accounts/Resource/IdentityCreated.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Resource\\LegacyFirebaseToken' => __DIR__ . '/../..' . '/src/Service/Accounts/Resource/LegacyFirebaseToken.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Accounts\\Resource\\ShopStatus' => __DIR__ . '/../..' . '/src/Service/Accounts/Resource/ShopStatus.php',
'PrestaShop\\Module\\PsAccounts\\Service\\AdminTokenService' => __DIR__ . '/../..' . '/src/Service/AdminTokenService.php',
'PrestaShop\\Module\\PsAccounts\\Service\\AnalyticsService' => __DIR__ . '/../..' . '/src/Service/AnalyticsService.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\CachedFile' => __DIR__ . '/../..' . '/src/Service/OAuth2/CachedFile.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Exception\\ConnectException' => __DIR__ . '/../..' . '/src/Service/OAuth2/Exception/ConnectException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Exception\\InvalidRequestException' => __DIR__ . '/../..' . '/src/Service/OAuth2/Exception/InvalidRequestException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Exception\\InvalidScopeException' => __DIR__ . '/../..' . '/src/Service/OAuth2/Exception/InvalidScopeException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\OAuth2Client' => __DIR__ . '/../..' . '/src/Service/OAuth2/OAuth2Client.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\OAuth2Exception' => __DIR__ . '/../..' . '/src/Service/OAuth2/OAuth2Exception.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\OAuth2ServerException' => __DIR__ . '/../..' . '/src/Service/OAuth2/OAuth2ServerException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\OAuth2Service' => __DIR__ . '/../..' . '/src/Service/OAuth2/OAuth2Service.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Resource\\AccessToken' => __DIR__ . '/../..' . '/src/Service/OAuth2/Resource/AccessToken.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Resource\\UserInfo' => __DIR__ . '/../..' . '/src/Service/OAuth2/Resource/UserInfo.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Resource\\WellKnown' => __DIR__ . '/../..' . '/src/Service/OAuth2/Resource/WellKnown.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Exception\\AudienceInvalidException' => __DIR__ . '/../..' . '/src/Service/OAuth2/Token/Validator/Exception/AudienceInvalidException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Exception\\KidInvalidException' => __DIR__ . '/../..' . '/src/Service/OAuth2/Token/Validator/Exception/KidInvalidException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Exception\\ScopeInvalidException' => __DIR__ . '/../..' . '/src/Service/OAuth2/Token/Validator/Exception/ScopeInvalidException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Exception\\SignatureInvalidException' => __DIR__ . '/../..' . '/src/Service/OAuth2/Token/Validator/Exception/SignatureInvalidException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Exception\\TokenExpiredException' => __DIR__ . '/../..' . '/src/Service/OAuth2/Token/Validator/Exception/TokenExpiredException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Exception\\TokenInvalidException' => __DIR__ . '/../..' . '/src/Service/OAuth2/Token/Validator/Exception/TokenInvalidException.php',
'PrestaShop\\Module\\PsAccounts\\Service\\OAuth2\\Token\\Validator\\Validator' => __DIR__ . '/../..' . '/src/Service/OAuth2/Token/Validator/Validator.php',
'PrestaShop\\Module\\PsAccounts\\Service\\PsAccountsService' => __DIR__ . '/../..' . '/src/Service/PsAccountsService.php',
'PrestaShop\\Module\\PsAccounts\\Service\\PsBillingService' => __DIR__ . '/../..' . '/src/Service/PsBillingService.php',
'PrestaShop\\Module\\PsAccounts\\Service\\SentryService' => __DIR__ . '/../..' . '/src/Service/SentryService.php',
'PrestaShop\\Module\\PsAccounts\\Service\\Sentry\\ModuleFilteredRavenClient' => __DIR__ . '/../..' . '/src/Service/Sentry/ModuleFilteredRavenClient.php',
'PrestaShop\\Module\\PsAccounts\\Service\\UpgradeService' => __DIR__ . '/../..' . '/src/Service/UpgradeService.php',
'PrestaShop\\Module\\PsAccounts\\Settings\\SettingsForm' => __DIR__ . '/../..' . '/src/Settings/SettingsForm.php',
'PrestaShop\\Module\\PsAccounts\\Traits\\WithOriginAndSourceTrait' => __DIR__ . '/../..' . '/src/Traits/WithOriginAndSourceTrait.php',
'PrestaShop\\Module\\PsAccounts\\Traits\\WithPropertyTrait' => __DIR__ . '/../..' . '/src/Traits/WithPropertyTrait.php',
'PrestaShop\\Module\\PsAccounts\\Translations\\SettingsTranslations' => __DIR__ . '/../..' . '/src/Translations/SettingsTranslations.php',
'PrestaShop\\Module\\PsAccounts\\Type\\Dto' => __DIR__ . '/../..' . '/src/Type/Dto.php',
'PrestaShop\\Module\\PsAccounts\\Type\\Enum' => __DIR__ . '/../..' . '/src/Type/Enum.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\BeforeValidException' => __DIR__ . '/..' . '/firebase/php-jwt/src/BeforeValidException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\ExpiredException' => __DIR__ . '/..' . '/firebase/php-jwt/src/ExpiredException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\JWK' => __DIR__ . '/..' . '/firebase/php-jwt/src/JWK.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\JWT' => __DIR__ . '/..' . '/firebase/php-jwt/src/JWT.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\Key' => __DIR__ . '/..' . '/firebase/php-jwt/src/Key.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Firebase\\JWT\\SignatureInvalidException' => __DIR__ . '/..' . '/firebase/php-jwt/src/SignatureInvalidException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Builder' => __DIR__ . '/..' . '/lcobucci/jwt/src/Builder.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim' => __DIR__ . '/..' . '/lcobucci/jwt/src/Claim.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim\\Basic' => __DIR__ . '/..' . '/lcobucci/jwt/src/Claim/Basic.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim\\EqualsTo' => __DIR__ . '/..' . '/lcobucci/jwt/src/Claim/EqualsTo.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim\\Factory' => __DIR__ . '/..' . '/lcobucci/jwt/src/Claim/Factory.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim\\GreaterOrEqualsTo' => __DIR__ . '/..' . '/lcobucci/jwt/src/Claim/GreaterOrEqualsTo.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim\\LesserOrEqualsTo' => __DIR__ . '/..' . '/lcobucci/jwt/src/Claim/LesserOrEqualsTo.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Claim\\Validatable' => __DIR__ . '/..' . '/lcobucci/jwt/src/Claim/Validatable.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Configuration' => __DIR__ . '/..' . '/lcobucci/jwt/src/Configuration.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Encoding\\CannotDecodeContent' => __DIR__ . '/..' . '/lcobucci/jwt/src/Encoding/CannotDecodeContent.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Encoding\\CannotEncodeContent' => __DIR__ . '/..' . '/lcobucci/jwt/src/Encoding/CannotEncodeContent.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Exception' => __DIR__ . '/..' . '/lcobucci/jwt/src/Exception.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Parser' => __DIR__ . '/..' . '/lcobucci/jwt/src/Parser.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Parsing\\Decoder' => __DIR__ . '/..' . '/lcobucci/jwt/src/Parsing/Decoder.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Parsing\\Encoder' => __DIR__ . '/..' . '/lcobucci/jwt/src/Parsing/Encoder.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signature' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signature.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\BaseSigner' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/BaseSigner.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\CannotSignPayload' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/CannotSignPayload.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Ecdsa.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa\\ConversionFailed' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Ecdsa/ConversionFailed.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa\\MultibyteStringConverter' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Ecdsa/MultibyteStringConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa\\Sha256' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Ecdsa/Sha256.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa\\Sha384' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Ecdsa/Sha384.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa\\Sha512' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Ecdsa/Sha512.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Ecdsa\\SignatureConverter' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Ecdsa/SignatureConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Hmac' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Hmac.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Hmac\\Sha256' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Hmac/Sha256.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Hmac\\Sha384' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Hmac/Sha384.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Hmac\\Sha512' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Hmac/Sha512.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\InvalidKeyProvided' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/InvalidKeyProvided.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Key' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Key.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Key\\FileCouldNotBeRead' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Key/FileCouldNotBeRead.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Key\\InMemory' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Key/InMemory.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Key\\LocalFileReference' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Key/LocalFileReference.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Keychain' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Keychain.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\None' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/None.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\OpenSSL' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/OpenSSL.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Rsa' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Rsa.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Rsa\\Sha256' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Rsa/Sha256.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Rsa\\Sha384' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Rsa/Sha384.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Signer\\Rsa\\Sha512' => __DIR__ . '/..' . '/lcobucci/jwt/src/Signer/Rsa/Sha512.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Token' => __DIR__ . '/..' . '/lcobucci/jwt/src/Token.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Token\\DataSet' => __DIR__ . '/..' . '/lcobucci/jwt/src/Token/DataSet.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Token\\InvalidTokenStructure' => __DIR__ . '/..' . '/lcobucci/jwt/src/Token/InvalidTokenStructure.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Token\\RegisteredClaimGiven' => __DIR__ . '/..' . '/lcobucci/jwt/src/Token/RegisteredClaimGiven.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Token\\RegisteredClaims' => __DIR__ . '/..' . '/lcobucci/jwt/src/Token/RegisteredClaims.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Token\\UnsupportedHeaderFound' => __DIR__ . '/..' . '/lcobucci/jwt/src/Token/UnsupportedHeaderFound.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\ValidationData' => __DIR__ . '/..' . '/lcobucci/jwt/src/ValidationData.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validation/Constraint.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\ConstraintViolation' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validation/ConstraintViolation.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\IdentifiedBy' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validation/Constraint/IdentifiedBy.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\IssuedBy' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validation/Constraint/IssuedBy.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\LeewayCannotBeNegative' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validation/Constraint/LeewayCannotBeNegative.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\PermittedFor' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validation/Constraint/PermittedFor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\RelatedTo' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validation/Constraint/RelatedTo.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\SignedWith' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validation/Constraint/SignedWith.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Constraint\\ValidAt' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validation/Constraint/ValidAt.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\NoConstraintsGiven' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validation/NoConstraintsGiven.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\RequiredConstraintsViolated' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validation/RequiredConstraintsViolated.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validation\\Validator' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validation/Validator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\Validator' => __DIR__ . '/..' . '/lcobucci/jwt/src/Validator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\ErrorHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/ErrorHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\ChromePHPFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\ElasticaFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\FlowdockFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\FluentdFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\FormatterInterface' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\GelfMessageFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\HtmlFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\JsonFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\LineFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/LineFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\LogglyFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\LogstashFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\MongoDBFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\NormalizerFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\ScalarFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Formatter\\WildfireFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\AbstractHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/AbstractHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\AbstractProcessingHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\AbstractSyslogHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\AmqpHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/AmqpHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\BrowserConsoleHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\BufferHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/BufferHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\ChromePHPHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\CouchDBHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\CubeHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/CubeHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\Curl\\Util' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/Curl/Util.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\DeduplicationHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\DoctrineCouchDBHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\DynamoDbHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\ElasticSearchHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\ErrorLogHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FilterHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FilterHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FingersCrossedHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FingersCrossed\\ActivationStrategyInterface' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FingersCrossed\\ChannelLevelActivationStrategy' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FingersCrossed\\ErrorLevelActivationStrategy' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FirePHPHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FleepHookHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FlowdockHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FormattableHandlerInterface' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\FormattableHandlerTrait' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\GelfHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/GelfHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\GroupHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/GroupHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\HandlerInterface' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/HandlerInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\HandlerWrapper' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\HipChatHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/HipChatHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\IFTTTHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\InsightOpsHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\LogEntriesHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\LogglyHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/LogglyHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\MailHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/MailHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\MandrillHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/MandrillHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\MissingExtensionException' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\MongoDBHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\NativeMailerHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\NewRelicHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\NullHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/NullHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\PHPConsoleHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\ProcessableHandlerInterface' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\ProcessableHandlerTrait' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\PsrHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/PsrHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\PushoverHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/PushoverHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\RavenHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/RavenHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\RedisHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/RedisHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\RollbarHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/RollbarHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\RotatingFileHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SamplingHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SamplingHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SlackHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SlackHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SlackWebhookHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\Slack\\SlackRecord' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SlackbotHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SlackbotHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SocketHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SocketHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\StreamHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/StreamHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SwiftMailerHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SyslogHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SyslogHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SyslogUdpHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\SyslogUdp\\UdpSocket' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\TestHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/TestHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\WhatFailureGroupHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Handler\\ZendMonitorHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Logger' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Logger.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\GitProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/GitProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\IntrospectionProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\MemoryPeakUsageProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\MemoryProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\MemoryUsageProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\MercurialProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\ProcessIdProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\ProcessorInterface' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\PsrLogMessageProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\TagProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/TagProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\UidProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/UidProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Processor\\WebProcessor' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Processor/WebProcessor.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Registry' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Registry.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\ResettableInterface' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/ResettableInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\SignalHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/SignalHandler.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Monolog\\Utils' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Utils.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Contract\\IContainerLogger' => __DIR__ . '/..' . '/prestashopcorp/lightweight-container/src/ServiceContainer/Contract/IContainerLogger.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Contract\\IServiceProvider' => __DIR__ . '/..' . '/prestashopcorp/lightweight-container/src/ServiceContainer/Contract/IServiceProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Contract\\ISingletonService' => __DIR__ . '/..' . '/prestashopcorp/lightweight-container/src/ServiceContainer/Contract/ISingletonService.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Exception\\ParameterNotFoundException' => __DIR__ . '/..' . '/prestashopcorp/lightweight-container/src/ServiceContainer/Exception/ParameterNotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Exception\\ProviderNotFoundException' => __DIR__ . '/..' . '/prestashopcorp/lightweight-container/src/ServiceContainer/Exception/ProviderNotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Exception\\ServiceNotFoundException' => __DIR__ . '/..' . '/prestashopcorp/lightweight-container/src/ServiceContainer/Exception/ServiceNotFoundException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\Provider\\ExampleProvider' => __DIR__ . '/..' . '/prestashopcorp/lightweight-container/src/ServiceContainer/Provider/ExampleProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\PrestaShopCorp\\LightweightContainer\\ServiceContainer\\ServiceContainer' => __DIR__ . '/..' . '/prestashopcorp/lightweight-container/src/ServiceContainer/ServiceContainer.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\AbstractLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/AbstractLogger.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/log/Psr/Log/InvalidArgumentException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\LogLevel' => __DIR__ . '/..' . '/psr/log/Psr/Log/LogLevel.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\LoggerAwareInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\LoggerAwareTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareTrait.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\LoggerInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\LoggerTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerTrait.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\NullLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/NullLogger.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\Test\\DummyTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/DummyTest.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\Test\\LoggerInterfaceTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Psr\\Log\\Test\\TestLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/TestLogger.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\BinaryUtils' => __DIR__ . '/..' . '/ramsey/uuid/src/BinaryUtils.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Builder\\DefaultUuidBuilder' => __DIR__ . '/..' . '/ramsey/uuid/src/Builder/DefaultUuidBuilder.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Builder\\DegradedUuidBuilder' => __DIR__ . '/..' . '/ramsey/uuid/src/Builder/DegradedUuidBuilder.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Builder\\UuidBuilderInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Builder/UuidBuilderInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Codec\\CodecInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Codec/CodecInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Codec\\GuidStringCodec' => __DIR__ . '/..' . '/ramsey/uuid/src/Codec/GuidStringCodec.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Codec\\OrderedTimeCodec' => __DIR__ . '/..' . '/ramsey/uuid/src/Codec/OrderedTimeCodec.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Codec\\StringCodec' => __DIR__ . '/..' . '/ramsey/uuid/src/Codec/StringCodec.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Codec\\TimestampFirstCombCodec' => __DIR__ . '/..' . '/ramsey/uuid/src/Codec/TimestampFirstCombCodec.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Codec\\TimestampLastCombCodec' => __DIR__ . '/..' . '/ramsey/uuid/src/Codec/TimestampLastCombCodec.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\NumberConverterInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/NumberConverterInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\Number\\BigNumberConverter' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/Number/BigNumberConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\Number\\DegradedNumberConverter' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/Number/DegradedNumberConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\TimeConverterInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/TimeConverterInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\Time\\BigNumberTimeConverter' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/Time/BigNumberTimeConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\Time\\DegradedTimeConverter' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/Time/DegradedTimeConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Converter\\Time\\PhpTimeConverter' => __DIR__ . '/..' . '/ramsey/uuid/src/Converter/Time/PhpTimeConverter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\DegradedUuid' => __DIR__ . '/..' . '/ramsey/uuid/src/DegradedUuid.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Exception\\InvalidUuidStringException' => __DIR__ . '/..' . '/ramsey/uuid/src/Exception/InvalidUuidStringException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Exception\\UnsatisfiedDependencyException' => __DIR__ . '/..' . '/ramsey/uuid/src/Exception/UnsatisfiedDependencyException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Exception\\UnsupportedOperationException' => __DIR__ . '/..' . '/ramsey/uuid/src/Exception/UnsupportedOperationException.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\FeatureSet' => __DIR__ . '/..' . '/ramsey/uuid/src/FeatureSet.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\CombGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/CombGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\DefaultTimeGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/DefaultTimeGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\MtRandGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/MtRandGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\OpenSslGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/OpenSslGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\PeclUuidRandomGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/PeclUuidRandomGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\PeclUuidTimeGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/PeclUuidTimeGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\RandomBytesGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/RandomBytesGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\RandomGeneratorFactory' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/RandomGeneratorFactory.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\RandomGeneratorInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/RandomGeneratorInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\RandomLibAdapter' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/RandomLibAdapter.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\SodiumRandomGenerator' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/SodiumRandomGenerator.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\TimeGeneratorFactory' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/TimeGeneratorFactory.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Generator\\TimeGeneratorInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Generator/TimeGeneratorInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\NodeProviderInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/NodeProviderInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\Node\\FallbackNodeProvider' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/Node/FallbackNodeProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\Node\\RandomNodeProvider' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/Node/RandomNodeProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\Node\\SystemNodeProvider' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/Node/SystemNodeProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\TimeProviderInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/TimeProviderInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\Time\\FixedTimeProvider' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/Time/FixedTimeProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Provider\\Time\\SystemTimeProvider' => __DIR__ . '/..' . '/ramsey/uuid/src/Provider/Time/SystemTimeProvider.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\Uuid' => __DIR__ . '/..' . '/ramsey/uuid/src/Uuid.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\UuidFactory' => __DIR__ . '/..' . '/ramsey/uuid/src/UuidFactory.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\UuidFactoryInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/UuidFactoryInterface.php',
'PrestaShop\\Module\\PsAccounts\\Vendor\\Ramsey\\Uuid\\UuidInterface' => __DIR__ . '/..' . '/ramsey/uuid/src/UuidInterface.php',
'Ps_accounts' => __DIR__ . '/../..' . '/ps_accounts.php',
'Raven_Autoloader' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Autoloader.php',
'Raven_Breadcrumbs' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Breadcrumbs.php',
'Raven_Breadcrumbs_ErrorHandler' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Breadcrumbs/ErrorHandler.php',
'Raven_Breadcrumbs_MonologHandler' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Breadcrumbs/MonologHandler.php',
'Raven_Client' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Client.php',
'Raven_Compat' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Compat.php',
'Raven_Context' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Context.php',
'Raven_CurlHandler' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/CurlHandler.php',
'Raven_ErrorHandler' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/ErrorHandler.php',
'Raven_Exception' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Exception.php',
'Raven_Processor' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Processor.php',
'Raven_Processor_RemoveCookiesProcessor' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Processor/RemoveCookiesProcessor.php',
'Raven_Processor_RemoveHttpBodyProcessor' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Processor/RemoveHttpBodyProcessor.php',
'Raven_Processor_SanitizeDataProcessor' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Processor/SanitizeDataProcessor.php',
'Raven_Processor_SanitizeHttpHeadersProcessor' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Processor/SanitizeHttpHeadersProcessor.php',
'Raven_Processor_SanitizeStacktraceProcessor' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Processor/SanitizeStacktraceProcessor.php',
'Raven_ReprSerializer' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/ReprSerializer.php',
'Raven_SanitizeDataProcessor' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/SanitizeDataProcessor.php',
'Raven_Serializer' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Serializer.php',
'Raven_Stacktrace' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Stacktrace.php',
'Raven_TransactionStack' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/TransactionStack.php',
'Raven_Util' => __DIR__ . '/..' . '/sentry/sentry/lib/Raven/Util.php',
'Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__ . '/..' . '/symfony/polyfill-ctype/Ctype.php',
'ps_AccountsApiV2ShopHealthCheckModuleFrontController' => __DIR__ . '/../..' . '/controllers/front/apiV2ShopHealthCheck.php',
'ps_AccountsApiV2ShopProofModuleFrontController' => __DIR__ . '/../..' . '/controllers/front/apiV2ShopProof.php',
);
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit8cf0e9751b64642799d08075e90841b5::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit8cf0e9751b64642799d08075e90841b5::$prefixDirsPsr4;
$loader->prefixesPsr0 = ComposerStaticInit8cf0e9751b64642799d08075e90841b5::$prefixesPsr0;
$loader->classMap = ComposerStaticInit8cf0e9751b64642799d08075e90841b5::$classMap;
}, null, ClassLoader::class);
}
}

View File

@@ -0,0 +1,11 @@
<?php
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,722 @@
{
"packages": [
{
"name": "firebase/php-jwt",
"version": "v6.0.0",
"version_normalized": "6.0.0.0",
"source": {
"type": "git",
"url": "https://github.com/firebase/php-jwt.git",
"reference": "0541cba75ab108ef901985e68055a92646c73534"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/firebase/php-jwt/zipball/0541cba75ab108ef901985e68055a92646c73534",
"reference": "0541cba75ab108ef901985e68055a92646c73534",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 <=9"
},
"suggest": {
"paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
},
"time": "2022-01-24T15:18:34+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"Firebase\\JWT\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Neuman Vong",
"email": "neuman+pear@twilio.com",
"role": "Developer"
},
{
"name": "Anant Narayanan",
"email": "anant@php.net",
"role": "Developer"
}
],
"description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
"homepage": "https://github.com/firebase/php-jwt",
"keywords": [
"jwt",
"php"
],
"support": {
"issues": "https://github.com/firebase/php-jwt/issues",
"source": "https://github.com/firebase/php-jwt/tree/v6.0.0"
},
"install-path": "../firebase/php-jwt"
},
{
"name": "lcobucci/jwt",
"version": "3.4.6",
"version_normalized": "3.4.6.0",
"source": {
"type": "git",
"url": "https://github.com/lcobucci/jwt.git",
"reference": "3ef8657a78278dfeae7707d51747251db4176240"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/lcobucci/jwt/zipball/3ef8657a78278dfeae7707d51747251db4176240",
"reference": "3ef8657a78278dfeae7707d51747251db4176240",
"shasum": ""
},
"require": {
"ext-mbstring": "*",
"ext-openssl": "*",
"php": "^5.6 || ^7.0"
},
"require-dev": {
"mikey179/vfsstream": "~1.5",
"phpmd/phpmd": "~2.2",
"phpunit/php-invoker": "~1.1",
"phpunit/phpunit": "^5.7 || ^7.3",
"squizlabs/php_codesniffer": "~2.3"
},
"suggest": {
"lcobucci/clock": "*"
},
"time": "2021-09-28T19:18:28+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
},
"installation-source": "dist",
"autoload": {
"files": [
"compat/class-aliases.php",
"compat/json-exception-polyfill.php",
"compat/lcobucci-clock-polyfill.php"
],
"psr-4": {
"Lcobucci\\JWT\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Luís Otávio Cobucci Oblonczyk",
"email": "lcobucci@gmail.com",
"role": "Developer"
}
],
"description": "A simple library to work with JSON Web Token and JSON Web Signature",
"keywords": [
"JWS",
"jwt"
],
"support": {
"issues": "https://github.com/lcobucci/jwt/issues",
"source": "https://github.com/lcobucci/jwt/tree/3.4.6"
},
"funding": [
{
"url": "https://github.com/lcobucci",
"type": "github"
},
{
"url": "https://www.patreon.com/lcobucci",
"type": "patreon"
}
],
"install-path": "../lcobucci/jwt"
},
{
"name": "monolog/monolog",
"version": "1.27.1",
"version_normalized": "1.27.1.0",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/monolog.git",
"reference": "904713c5929655dc9b97288b69cfeedad610c9a1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/904713c5929655dc9b97288b69cfeedad610c9a1",
"reference": "904713c5929655dc9b97288b69cfeedad610c9a1",
"shasum": ""
},
"require": {
"php": ">=5.3.0",
"psr/log": "~1.0"
},
"provide": {
"psr/log-implementation": "1.0.0"
},
"require-dev": {
"aws/aws-sdk-php": "^2.4.9 || ^3.0",
"doctrine/couchdb": "~1.0@dev",
"graylog2/gelf-php": "~1.0",
"php-amqplib/php-amqplib": "~2.4",
"php-console/php-console": "^3.1.3",
"phpstan/phpstan": "^0.12.59",
"phpunit/phpunit": "~4.5",
"ruflin/elastica": ">=0.90 <3.0",
"sentry/sentry": "^0.13",
"swiftmailer/swiftmailer": "^5.3|^6.0"
},
"suggest": {
"aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
"doctrine/couchdb": "Allow sending log messages to a CouchDB server",
"ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
"ext-mongo": "Allow sending log messages to a MongoDB server",
"graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
"mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
"php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
"php-console/php-console": "Allow sending log messages to Google Chrome",
"rollbar/rollbar": "Allow sending log messages to Rollbar",
"ruflin/elastica": "Allow sending log messages to an Elastic Search server",
"sentry/sentry": "Allow sending log messages to a Sentry server"
},
"time": "2022-06-09T08:53:42+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"Monolog\\": "src/Monolog"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "http://seld.be"
}
],
"description": "Sends your logs to files, sockets, inboxes, databases and various web services",
"homepage": "http://github.com/Seldaek/monolog",
"keywords": [
"log",
"logging",
"psr-3"
],
"support": {
"issues": "https://github.com/Seldaek/monolog/issues",
"source": "https://github.com/Seldaek/monolog/tree/1.27.1"
},
"funding": [
{
"url": "https://github.com/Seldaek",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
"type": "tidelift"
}
],
"install-path": "../monolog/monolog"
},
{
"name": "paragonie/random_compat",
"version": "v2.0.21",
"version_normalized": "2.0.21.0",
"source": {
"type": "git",
"url": "https://github.com/paragonie/random_compat.git",
"reference": "96c132c7f2f7bc3230723b66e89f8f150b29d5ae"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/paragonie/random_compat/zipball/96c132c7f2f7bc3230723b66e89f8f150b29d5ae",
"reference": "96c132c7f2f7bc3230723b66e89f8f150b29d5ae",
"shasum": ""
},
"require": {
"php": ">=5.2.0"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"suggest": {
"ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
},
"time": "2022-02-16T17:07:03+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"files": [
"lib/random.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "security@paragonie.com",
"homepage": "https://paragonie.com"
}
],
"description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
"keywords": [
"csprng",
"polyfill",
"pseudorandom",
"random"
],
"support": {
"email": "info@paragonie.com",
"issues": "https://github.com/paragonie/random_compat/issues",
"source": "https://github.com/paragonie/random_compat"
},
"install-path": "../paragonie/random_compat"
},
{
"name": "prestashopcorp/lightweight-container",
"version": "v0.1.0",
"version_normalized": "0.1.0.0",
"source": {
"type": "git",
"url": "https://github.com/PrestaShopCorp/lightweight-container.git",
"reference": "75eebcfd72bb2cbfb7f7c91e7f32f0b4ba78326a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/PrestaShopCorp/lightweight-container/zipball/75eebcfd72bb2cbfb7f7c91e7f32f0b4ba78326a",
"reference": "75eebcfd72bb2cbfb7f7c91e7f32f0b4ba78326a",
"shasum": ""
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpstan/phpstan": "^1.7",
"phpunit/phpunit": "^8.0 || ^9.0",
"prestashop/php-dev-tools": "^4.2"
},
"time": "2024-12-24T08:26:20+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"PrestaShopCorp\\LightweightContainer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PrestaShopCorp\\LightweightContainer\\Test\\": "tests/src/"
}
},
"scripts": {
"phpunit": [
"./vendor/bin/phpunit --coverage-text"
],
"php-cs-fixer": [
"./vendor/bin/php-cs-fixer fix --config .php_cs.dist.php --diff"
],
"header-stamp": [
"./vendor/bin/header-stamp --target=\".\" --license=./vendor/prestashop/header-stamp/assets/afl.txt --exclude=.github,vendor,tests"
]
},
"license": [
"AFL-3.0"
],
"authors": [
{
"name": "hschoenenberger",
"email": "herve.schoenenberger@prestashop.com"
}
],
"description": "No-deps lightweight service container",
"support": {
"source": "https://github.com/PrestaShopCorp/lightweight-container/tree/v0.1.0",
"issues": "https://github.com/PrestaShopCorp/lightweight-container/issues"
},
"install-path": "../prestashopcorp/lightweight-container"
},
{
"name": "psr/log",
"version": "1.1.4",
"version_normalized": "1.1.4.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/log.git",
"reference": "d49695b909c3b7628b6289db5479a1c204601f11"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
"reference": "d49695b909c3b7628b6289db5479a1c204601f11",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"time": "2021-05-03T11:20:27+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
},
"installation-source": "dist",
"autoload": {
"psr-4": {
"Psr\\Log\\": "Psr/Log/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for logging libraries",
"homepage": "https://github.com/php-fig/log",
"keywords": [
"log",
"psr",
"psr-3"
],
"support": {
"source": "https://github.com/php-fig/log/tree/1.1.4"
},
"install-path": "../psr/log"
},
{
"name": "ramsey/uuid",
"version": "3.9.7",
"version_normalized": "3.9.7.0",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
"reference": "dc75aa439eb4c1b77f5379fd958b3dc0e6014178"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ramsey/uuid/zipball/dc75aa439eb4c1b77f5379fd958b3dc0e6014178",
"reference": "dc75aa439eb4c1b77f5379fd958b3dc0e6014178",
"shasum": ""
},
"require": {
"ext-json": "*",
"paragonie/random_compat": "^1 | ^2 | ^9.99.99",
"php": "^5.4 | ^7.0 | ^8.0",
"symfony/polyfill-ctype": "^1.8"
},
"replace": {
"rhumsaa/uuid": "self.version"
},
"require-dev": {
"codeception/aspect-mock": "^1 | ^2",
"doctrine/annotations": "^1.2",
"goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2",
"mockery/mockery": "^0.9.11 | ^1",
"moontoast/math": "^1.1",
"nikic/php-parser": "<=4.5.0",
"paragonie/random-lib": "^2",
"php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0",
"squizlabs/php_codesniffer": "^3.5",
"yoast/phpunit-polyfills": "^1.0"
},
"suggest": {
"ext-ctype": "Provides support for PHP Ctype functions",
"ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
"ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
"ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
"moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
"paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
"ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
"ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
},
"time": "2022-12-19T21:55:10+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"Ramsey\\Uuid\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Ben Ramsey",
"email": "ben@benramsey.com",
"homepage": "https://benramsey.com"
},
{
"name": "Marijn Huizendveld",
"email": "marijn.huizendveld@gmail.com"
},
{
"name": "Thibaud Fabre",
"email": "thibaud@aztech.io"
}
],
"description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
"homepage": "https://github.com/ramsey/uuid",
"keywords": [
"guid",
"identifier",
"uuid"
],
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
"rss": "https://github.com/ramsey/uuid/releases.atom",
"source": "https://github.com/ramsey/uuid",
"wiki": "https://github.com/ramsey/uuid/wiki"
},
"funding": [
{
"url": "https://github.com/ramsey",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
"type": "tidelift"
}
],
"install-path": "../ramsey/uuid"
},
{
"name": "segmentio/analytics-php",
"version": "1.8.0",
"version_normalized": "1.8.0.0",
"source": {
"type": "git",
"url": "https://github.com/segmentio/analytics-php.git",
"reference": "7e25b2f6094632bbfb79e33ca024d533899a2ffe"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/segmentio/analytics-php/zipball/7e25b2f6094632bbfb79e33ca024d533899a2ffe",
"reference": "7e25b2f6094632bbfb79e33ca024d533899a2ffe",
"shasum": ""
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"overtrue/phplint": "^1.1",
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "^3.3"
},
"time": "2021-05-31T22:44:22+00:00",
"bin": [
"bin/analytics"
],
"type": "library",
"installation-source": "dist",
"autoload": {
"files": [
"lib/Segment.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Segment.io <friends@segment.com>",
"homepage": "https://segment.com/"
}
],
"description": "Segment Analytics PHP Library",
"homepage": "https://segment.com/libraries/php",
"keywords": [
"analytics",
"analytics.js",
"segment",
"segmentio"
],
"support": {
"issues": "https://github.com/segmentio/analytics-php/issues",
"source": "https://github.com/segmentio/analytics-php/tree/1.8.0"
},
"install-path": "../segmentio/analytics-php"
},
{
"name": "sentry/sentry",
"version": "1.11.0",
"version_normalized": "1.11.0.0",
"source": {
"type": "git",
"url": "https://github.com/getsentry/sentry-php.git",
"reference": "159eeaa02bb2ef8a8ec669f3c88e4bff7e6a7ffe"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/getsentry/sentry-php/zipball/159eeaa02bb2ef8a8ec669f3c88e4bff7e6a7ffe",
"reference": "159eeaa02bb2ef8a8ec669f3c88e4bff7e6a7ffe",
"shasum": ""
},
"require": {
"ext-curl": "*",
"php": "^5.3|^7.0"
},
"conflict": {
"raven/raven": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.8.0",
"monolog/monolog": "^1.0",
"phpunit/phpunit": "^4.8.35 || ^5.7"
},
"suggest": {
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"monolog/monolog": "Automatically capture Monolog events as breadcrumbs"
},
"time": "2020-02-12T18:38:11+00:00",
"bin": [
"bin/sentry"
],
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.11.x-dev"
}
},
"installation-source": "dist",
"autoload": {
"psr-0": {
"Raven_": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "David Cramer",
"email": "dcramer@gmail.com"
}
],
"description": "A PHP client for Sentry (http://getsentry.com)",
"homepage": "http://getsentry.com",
"keywords": [
"log",
"logging"
],
"support": {
"issues": "https://github.com/getsentry/sentry-php/issues",
"source": "https://github.com/getsentry/sentry-php/tree/1.11.0"
},
"install-path": "../sentry/sentry"
},
{
"name": "symfony/polyfill-ctype",
"version": "v1.19.0",
"version_normalized": "1.19.0.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
"reference": "aed596913b70fae57be53d86faa2e9ef85a2297b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/aed596913b70fae57be53d86faa2e9ef85a2297b",
"reference": "aed596913b70fae57be53d86faa2e9ef85a2297b",
"shasum": ""
},
"require": {
"php": ">=5.3.3"
},
"suggest": {
"ext-ctype": "For best performance"
},
"time": "2020-10-23T09:01:57+00:00",
"type": "library",
"extra": {
"thanks": {
"url": "https://github.com/symfony/polyfill",
"name": "symfony/polyfill"
},
"branch-alias": {
"dev-main": "1.19-dev"
}
},
"installation-source": "dist",
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Ctype\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Gert de Pagter",
"email": "BackEndTea@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill for ctype functions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"ctype",
"polyfill",
"portable"
],
"support": {
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.19.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"install-path": "../symfony/polyfill-ctype"
}
],
"dev": false,
"dev-package-names": []
}

View File

@@ -0,0 +1,125 @@
<?php return array(
'root' => array(
'name' => 'prestashopcorp/ps_accounts',
'pretty_version' => 'v8.0.13',
'version' => '8.0.13.0',
'reference' => '92a50daa5f575b527463a65ee3868fc1f03499c6',
'type' => 'prestashop-module',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev' => false,
),
'versions' => array(
'firebase/php-jwt' => array(
'pretty_version' => 'v6.0.0',
'version' => '6.0.0.0',
'reference' => '0541cba75ab108ef901985e68055a92646c73534',
'type' => 'library',
'install_path' => __DIR__ . '/../firebase/php-jwt',
'aliases' => array(),
'dev_requirement' => false,
),
'lcobucci/jwt' => array(
'pretty_version' => '3.4.6',
'version' => '3.4.6.0',
'reference' => '3ef8657a78278dfeae7707d51747251db4176240',
'type' => 'library',
'install_path' => __DIR__ . '/../lcobucci/jwt',
'aliases' => array(),
'dev_requirement' => false,
),
'monolog/monolog' => array(
'pretty_version' => '1.27.1',
'version' => '1.27.1.0',
'reference' => '904713c5929655dc9b97288b69cfeedad610c9a1',
'type' => 'library',
'install_path' => __DIR__ . '/../monolog/monolog',
'aliases' => array(),
'dev_requirement' => false,
),
'paragonie/random_compat' => array(
'pretty_version' => 'v2.0.21',
'version' => '2.0.21.0',
'reference' => '96c132c7f2f7bc3230723b66e89f8f150b29d5ae',
'type' => 'library',
'install_path' => __DIR__ . '/../paragonie/random_compat',
'aliases' => array(),
'dev_requirement' => false,
),
'prestashopcorp/lightweight-container' => array(
'pretty_version' => 'v0.1.0',
'version' => '0.1.0.0',
'reference' => '75eebcfd72bb2cbfb7f7c91e7f32f0b4ba78326a',
'type' => 'library',
'install_path' => __DIR__ . '/../prestashopcorp/lightweight-container',
'aliases' => array(),
'dev_requirement' => false,
),
'prestashopcorp/ps_accounts' => array(
'pretty_version' => 'v8.0.13',
'version' => '8.0.13.0',
'reference' => '92a50daa5f575b527463a65ee3868fc1f03499c6',
'type' => 'prestashop-module',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev_requirement' => false,
),
'psr/log' => array(
'pretty_version' => '1.1.4',
'version' => '1.1.4.0',
'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11',
'type' => 'library',
'install_path' => __DIR__ . '/../psr/log',
'aliases' => array(),
'dev_requirement' => false,
),
'psr/log-implementation' => array(
'dev_requirement' => false,
'provided' => array(
0 => '1.0.0',
),
),
'ramsey/uuid' => array(
'pretty_version' => '3.9.7',
'version' => '3.9.7.0',
'reference' => 'dc75aa439eb4c1b77f5379fd958b3dc0e6014178',
'type' => 'library',
'install_path' => __DIR__ . '/../ramsey/uuid',
'aliases' => array(),
'dev_requirement' => false,
),
'rhumsaa/uuid' => array(
'dev_requirement' => false,
'replaced' => array(
0 => '3.9.7',
),
),
'segmentio/analytics-php' => array(
'pretty_version' => '1.8.0',
'version' => '1.8.0.0',
'reference' => '7e25b2f6094632bbfb79e33ca024d533899a2ffe',
'type' => 'library',
'install_path' => __DIR__ . '/../segmentio/analytics-php',
'aliases' => array(),
'dev_requirement' => false,
),
'sentry/sentry' => array(
'pretty_version' => '1.11.0',
'version' => '1.11.0.0',
'reference' => '159eeaa02bb2ef8a8ec669f3c88e4bff7e6a7ffe',
'type' => 'library',
'install_path' => __DIR__ . '/../sentry/sentry',
'aliases' => array(),
'dev_requirement' => false,
),
'symfony/polyfill-ctype' => array(
'pretty_version' => 'v1.19.0',
'version' => '1.19.0.0',
'reference' => 'aed596913b70fae57be53d86faa2e9ef85a2297b',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
'aliases' => array(),
'dev_requirement' => false,
),
),
);

View File

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