Commit realizado el 12:13:52 08-04-2024
This commit is contained in:
445
wp-content/plugins/wpforms-lite/vendor/composer/ClassLoader.php
vendored
Normal file
445
wp-content/plugins/wpforms-lite/vendor/composer/ClassLoader.php
vendored
Normal file
@@ -0,0 +1,445 @@
|
||||
<?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 http://www.php-fig.org/psr/psr-0/
|
||||
* @see http://www.php-fig.org/psr/psr-4/
|
||||
*/
|
||||
class ClassLoader
|
||||
{
|
||||
// PSR-4
|
||||
private $prefixLengthsPsr4 = array();
|
||||
private $prefixDirsPsr4 = array();
|
||||
private $fallbackDirsPsr4 = array();
|
||||
|
||||
// PSR-0
|
||||
private $prefixesPsr0 = array();
|
||||
private $fallbackDirsPsr0 = array();
|
||||
|
||||
private $useIncludePath = false;
|
||||
private $classMap = array();
|
||||
private $classMapAuthoritative = false;
|
||||
private $missingClasses = array();
|
||||
private $apcuPrefix;
|
||||
|
||||
public function getPrefixes()
|
||||
{
|
||||
if (!empty($this->prefixesPsr0)) {
|
||||
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
|
||||
}
|
||||
|
||||
return array();
|
||||
}
|
||||
|
||||
public function getPrefixesPsr4()
|
||||
{
|
||||
return $this->prefixDirsPsr4;
|
||||
}
|
||||
|
||||
public function getFallbackDirs()
|
||||
{
|
||||
return $this->fallbackDirsPsr0;
|
||||
}
|
||||
|
||||
public function getFallbackDirsPsr4()
|
||||
{
|
||||
return $this->fallbackDirsPsr4;
|
||||
}
|
||||
|
||||
public function getClassMap()
|
||||
{
|
||||
return $this->classMap;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $classMap Class to filename map
|
||||
*/
|
||||
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 array|string $paths The PSR-0 root directories
|
||||
* @param bool $prepend Whether to prepend the directories
|
||||
*/
|
||||
public function add($prefix, $paths, $prepend = false)
|
||||
{
|
||||
if (!$prefix) {
|
||||
if ($prepend) {
|
||||
$this->fallbackDirsPsr0 = array_merge(
|
||||
(array) $paths,
|
||||
$this->fallbackDirsPsr0
|
||||
);
|
||||
} else {
|
||||
$this->fallbackDirsPsr0 = array_merge(
|
||||
$this->fallbackDirsPsr0,
|
||||
(array) $paths
|
||||
);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
$first = $prefix[0];
|
||||
if (!isset($this->prefixesPsr0[$first][$prefix])) {
|
||||
$this->prefixesPsr0[$first][$prefix] = (array) $paths;
|
||||
|
||||
return;
|
||||
}
|
||||
if ($prepend) {
|
||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
||||
(array) $paths,
|
||||
$this->prefixesPsr0[$first][$prefix]
|
||||
);
|
||||
} else {
|
||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
||||
$this->prefixesPsr0[$first][$prefix],
|
||||
(array) $paths
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-4 directories for a given namespace, either
|
||||
* appending or prepending to the ones previously set for this namespace.
|
||||
*
|
||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||
* @param array|string $paths The PSR-4 base directories
|
||||
* @param bool $prepend Whether to prepend the directories
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*/
|
||||
public function addPsr4($prefix, $paths, $prepend = false)
|
||||
{
|
||||
if (!$prefix) {
|
||||
// Register directories for the root namespace.
|
||||
if ($prepend) {
|
||||
$this->fallbackDirsPsr4 = array_merge(
|
||||
(array) $paths,
|
||||
$this->fallbackDirsPsr4
|
||||
);
|
||||
} else {
|
||||
$this->fallbackDirsPsr4 = array_merge(
|
||||
$this->fallbackDirsPsr4,
|
||||
(array) $paths
|
||||
);
|
||||
}
|
||||
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
|
||||
// Register directories for a new namespace.
|
||||
$length = strlen($prefix);
|
||||
if ('\\' !== $prefix[$length - 1]) {
|
||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
||||
}
|
||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
||||
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
||||
} elseif ($prepend) {
|
||||
// Prepend directories for an already registered namespace.
|
||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
||||
(array) $paths,
|
||||
$this->prefixDirsPsr4[$prefix]
|
||||
);
|
||||
} else {
|
||||
// Append directories for an already registered namespace.
|
||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
||||
$this->prefixDirsPsr4[$prefix],
|
||||
(array) $paths
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-0 directories for a given prefix,
|
||||
* replacing any others previously set for this prefix.
|
||||
*
|
||||
* @param string $prefix The prefix
|
||||
* @param array|string $paths The PSR-0 base directories
|
||||
*/
|
||||
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 array|string $paths The PSR-4 base directories
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*/
|
||||
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
|
||||
*/
|
||||
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
|
||||
*/
|
||||
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
|
||||
*/
|
||||
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
|
||||
*/
|
||||
public function register($prepend = false)
|
||||
{
|
||||
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters this instance as an autoloader.
|
||||
*/
|
||||
public function unregister()
|
||||
{
|
||||
spl_autoload_unregister(array($this, 'loadClass'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the given class or interface.
|
||||
*
|
||||
* @param string $class The name of the class
|
||||
* @return bool|null True if loaded, null otherwise
|
||||
*/
|
||||
public function loadClass($class)
|
||||
{
|
||||
if ($file = $this->findFile($class)) {
|
||||
includeFile($file);
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Scope isolated include.
|
||||
*
|
||||
* Prevents access to $this/self from included files.
|
||||
*/
|
||||
function includeFile($file)
|
||||
{
|
||||
include $file;
|
||||
}
|
359
wp-content/plugins/wpforms-lite/vendor/composer/InstalledVersions.php
vendored
Normal file
359
wp-content/plugins/wpforms-lite/vendor/composer/InstalledVersions.php
vendored
Normal file
@@ -0,0 +1,359 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Composer.
|
||||
*
|
||||
* (c) Nils Adermann <naderman@naderman.de>
|
||||
* Jordi Boggiano <j.boggiano@seld.be>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Composer;
|
||||
|
||||
use Composer\Autoload\ClassLoader;
|
||||
use Composer\Semver\VersionParser;
|
||||
|
||||
/**
|
||||
* This class is copied in every Composer installed project and available to all
|
||||
*
|
||||
* See also https://getcomposer.org/doc/07-runtime.md#installed-versions
|
||||
*
|
||||
* To require its presence, you can require `composer-runtime-api ^2.0`
|
||||
*
|
||||
* @final
|
||||
*/
|
||||
class InstalledVersions
|
||||
{
|
||||
/**
|
||||
* @var mixed[]|null
|
||||
* @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
|
||||
*/
|
||||
private static $installed;
|
||||
|
||||
/**
|
||||
* @var bool|null
|
||||
*/
|
||||
private static $canGetVendors;
|
||||
|
||||
/**
|
||||
* @var array[]
|
||||
* @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||
*/
|
||||
private static $installedByVendor = array();
|
||||
|
||||
/**
|
||||
* Returns a list of all package names which are present, either by being installed, replaced or provided
|
||||
*
|
||||
* @return string[]
|
||||
* @psalm-return list<string>
|
||||
*/
|
||||
public static function getInstalledPackages()
|
||||
{
|
||||
$packages = array();
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
$packages[] = array_keys($installed['versions']);
|
||||
}
|
||||
|
||||
if (1 === \count($packages)) {
|
||||
return $packages[0];
|
||||
}
|
||||
|
||||
return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a list of all package names with a specific type e.g. 'library'
|
||||
*
|
||||
* @param string $type
|
||||
* @return string[]
|
||||
* @psalm-return list<string>
|
||||
*/
|
||||
public static function getInstalledPackagesByType($type)
|
||||
{
|
||||
$packagesByType = array();
|
||||
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
foreach ($installed['versions'] as $name => $package) {
|
||||
if (isset($package['type']) && $package['type'] === $type) {
|
||||
$packagesByType[] = $name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $packagesByType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks whether the given package is installed
|
||||
*
|
||||
* This also returns true if the package name is provided or replaced by another package
|
||||
*
|
||||
* @param string $packageName
|
||||
* @param bool $includeDevRequirements
|
||||
* @return bool
|
||||
*/
|
||||
public static function isInstalled($packageName, $includeDevRequirements = true)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (isset($installed['versions'][$packageName])) {
|
||||
return $includeDevRequirements || !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();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array[]
|
||||
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||
*/
|
||||
private static function getInstalled()
|
||||
{
|
||||
if (null === self::$canGetVendors) {
|
||||
self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
|
||||
}
|
||||
|
||||
$installed = array();
|
||||
|
||||
if (self::$canGetVendors) {
|
||||
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
|
||||
if (isset(self::$installedByVendor[$vendorDir])) {
|
||||
$installed[] = self::$installedByVendor[$vendorDir];
|
||||
} elseif (is_file($vendorDir.'/composer/installed.php')) {
|
||||
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
|
||||
$required = require $vendorDir.'/composer/installed.php';
|
||||
$installed[] = self::$installedByVendor[$vendorDir] = $required;
|
||||
if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
|
||||
self::$installed = $installed[count($installed) - 1];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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()) {
|
||||
$installed[] = self::$installed;
|
||||
}
|
||||
|
||||
return $installed;
|
||||
}
|
||||
}
|
21
wp-content/plugins/wpforms-lite/vendor/composer/LICENSE
vendored
Normal file
21
wp-content/plugins/wpforms-lite/vendor/composer/LICENSE
vendored
Normal 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.
|
||||
|
374
wp-content/plugins/wpforms-lite/vendor/composer/autoload_classmap.php
vendored
Normal file
374
wp-content/plugins/wpforms-lite/vendor/composer/autoload_classmap.php
vendored
Normal file
@@ -0,0 +1,374 @@
|
||||
<?php
|
||||
|
||||
// autoload_classmap.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(dirname(__FILE__));
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'WPForms\\Vendor\\Stripe\\Account' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Account.php',
|
||||
'WPForms\\Vendor\\Stripe\\AccountLink' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/AccountLink.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\All' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/All.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\Create' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/Create.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\Delete' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/Delete.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\NestedResource' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/NestedResource.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\Request' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/Request.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\Retrieve' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/Retrieve.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\Search' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/Search.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\SingletonRetrieve' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/SingletonRetrieve.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\Update' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/Update.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiRequestor' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApiRequestor.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiResource' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApiResource.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiResponse' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApiResponse.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApplePayDomain' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApplePayDomain.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApplicationFee' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApplicationFee.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApplicationFeeRefund' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ApplicationFeeRefund.php',
|
||||
'WPForms\\Vendor\\Stripe\\Apps\\Secret' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Apps/Secret.php',
|
||||
'WPForms\\Vendor\\Stripe\\Balance' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Balance.php',
|
||||
'WPForms\\Vendor\\Stripe\\BalanceTransaction' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/BalanceTransaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\BankAccount' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/BankAccount.php',
|
||||
'WPForms\\Vendor\\Stripe\\BaseStripeClient' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/BaseStripeClient.php',
|
||||
'WPForms\\Vendor\\Stripe\\BaseStripeClientInterface' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/BaseStripeClientInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\BillingPortal\\Configuration' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/BillingPortal/Configuration.php',
|
||||
'WPForms\\Vendor\\Stripe\\BillingPortal\\Session' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/BillingPortal/Session.php',
|
||||
'WPForms\\Vendor\\Stripe\\Capability' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Capability.php',
|
||||
'WPForms\\Vendor\\Stripe\\Card' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Card.php',
|
||||
'WPForms\\Vendor\\Stripe\\CashBalance' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/CashBalance.php',
|
||||
'WPForms\\Vendor\\Stripe\\Charge' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Charge.php',
|
||||
'WPForms\\Vendor\\Stripe\\Checkout\\Session' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Checkout/Session.php',
|
||||
'WPForms\\Vendor\\Stripe\\Collection' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Collection.php',
|
||||
'WPForms\\Vendor\\Stripe\\CountrySpec' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/CountrySpec.php',
|
||||
'WPForms\\Vendor\\Stripe\\Coupon' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Coupon.php',
|
||||
'WPForms\\Vendor\\Stripe\\CreditNote' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/CreditNote.php',
|
||||
'WPForms\\Vendor\\Stripe\\CreditNoteLineItem' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/CreditNoteLineItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\Customer' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Customer.php',
|
||||
'WPForms\\Vendor\\Stripe\\CustomerBalanceTransaction' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/CustomerBalanceTransaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\CustomerCashBalanceTransaction' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/CustomerCashBalanceTransaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\Discount' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Discount.php',
|
||||
'WPForms\\Vendor\\Stripe\\Dispute' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Dispute.php',
|
||||
'WPForms\\Vendor\\Stripe\\EphemeralKey' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/EphemeralKey.php',
|
||||
'WPForms\\Vendor\\Stripe\\ErrorObject' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ErrorObject.php',
|
||||
'WPForms\\Vendor\\Stripe\\Event' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Event.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\ApiConnectionException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/ApiConnectionException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\ApiErrorException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/ApiErrorException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\AuthenticationException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/AuthenticationException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\BadMethodCallException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/BadMethodCallException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\CardException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/CardException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\ExceptionInterface' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/ExceptionInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\IdempotencyException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/IdempotencyException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\InvalidArgumentException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/InvalidArgumentException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\InvalidRequestException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/InvalidRequestException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\ExceptionInterface' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/ExceptionInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\InvalidClientException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/InvalidClientException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\InvalidGrantException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/InvalidGrantException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\InvalidRequestException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/InvalidRequestException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\InvalidScopeException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/InvalidScopeException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\OAuthErrorException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/OAuthErrorException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\UnknownOAuthErrorException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/UnknownOAuthErrorException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\UnsupportedGrantTypeException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/UnsupportedGrantTypeException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\UnsupportedResponseTypeException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/UnsupportedResponseTypeException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\PermissionException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/PermissionException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\RateLimitException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/RateLimitException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\SignatureVerificationException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/SignatureVerificationException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\UnexpectedValueException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/UnexpectedValueException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\UnknownApiErrorException' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Exception/UnknownApiErrorException.php',
|
||||
'WPForms\\Vendor\\Stripe\\ExchangeRate' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ExchangeRate.php',
|
||||
'WPForms\\Vendor\\Stripe\\File' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/File.php',
|
||||
'WPForms\\Vendor\\Stripe\\FileLink' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/FileLink.php',
|
||||
'WPForms\\Vendor\\Stripe\\FinancialConnections\\Account' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/FinancialConnections/Account.php',
|
||||
'WPForms\\Vendor\\Stripe\\FinancialConnections\\AccountOwner' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/FinancialConnections/AccountOwner.php',
|
||||
'WPForms\\Vendor\\Stripe\\FinancialConnections\\AccountOwnership' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/FinancialConnections/AccountOwnership.php',
|
||||
'WPForms\\Vendor\\Stripe\\FinancialConnections\\Session' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/FinancialConnections/Session.php',
|
||||
'WPForms\\Vendor\\Stripe\\FundingInstructions' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/FundingInstructions.php',
|
||||
'WPForms\\Vendor\\Stripe\\HttpClient\\ClientInterface' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/HttpClient/ClientInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\HttpClient\\CurlClient' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/HttpClient/CurlClient.php',
|
||||
'WPForms\\Vendor\\Stripe\\HttpClient\\StreamingClientInterface' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/HttpClient/StreamingClientInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\Identity\\VerificationReport' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Identity/VerificationReport.php',
|
||||
'WPForms\\Vendor\\Stripe\\Identity\\VerificationSession' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Identity/VerificationSession.php',
|
||||
'WPForms\\Vendor\\Stripe\\Invoice' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Invoice.php',
|
||||
'WPForms\\Vendor\\Stripe\\InvoiceItem' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/InvoiceItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\InvoiceLineItem' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/InvoiceLineItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\Issuing\\Authorization' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Issuing/Authorization.php',
|
||||
'WPForms\\Vendor\\Stripe\\Issuing\\Card' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Issuing/Card.php',
|
||||
'WPForms\\Vendor\\Stripe\\Issuing\\CardDetails' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Issuing/CardDetails.php',
|
||||
'WPForms\\Vendor\\Stripe\\Issuing\\Cardholder' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Issuing/Cardholder.php',
|
||||
'WPForms\\Vendor\\Stripe\\Issuing\\Dispute' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Issuing/Dispute.php',
|
||||
'WPForms\\Vendor\\Stripe\\Issuing\\Transaction' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Issuing/Transaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\LineItem' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/LineItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\LoginLink' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/LoginLink.php',
|
||||
'WPForms\\Vendor\\Stripe\\Mandate' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Mandate.php',
|
||||
'WPForms\\Vendor\\Stripe\\OAuth' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/OAuth.php',
|
||||
'WPForms\\Vendor\\Stripe\\OAuthErrorObject' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/OAuthErrorObject.php',
|
||||
'WPForms\\Vendor\\Stripe\\PaymentIntent' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/PaymentIntent.php',
|
||||
'WPForms\\Vendor\\Stripe\\PaymentLink' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/PaymentLink.php',
|
||||
'WPForms\\Vendor\\Stripe\\PaymentMethod' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/PaymentMethod.php',
|
||||
'WPForms\\Vendor\\Stripe\\Payout' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Payout.php',
|
||||
'WPForms\\Vendor\\Stripe\\Person' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Person.php',
|
||||
'WPForms\\Vendor\\Stripe\\Plan' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Plan.php',
|
||||
'WPForms\\Vendor\\Stripe\\Price' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Price.php',
|
||||
'WPForms\\Vendor\\Stripe\\Product' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Product.php',
|
||||
'WPForms\\Vendor\\Stripe\\PromotionCode' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/PromotionCode.php',
|
||||
'WPForms\\Vendor\\Stripe\\Quote' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Quote.php',
|
||||
'WPForms\\Vendor\\Stripe\\Radar\\EarlyFraudWarning' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Radar/EarlyFraudWarning.php',
|
||||
'WPForms\\Vendor\\Stripe\\Radar\\ValueList' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Radar/ValueList.php',
|
||||
'WPForms\\Vendor\\Stripe\\Radar\\ValueListItem' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Radar/ValueListItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\RecipientTransfer' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/RecipientTransfer.php',
|
||||
'WPForms\\Vendor\\Stripe\\Refund' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Refund.php',
|
||||
'WPForms\\Vendor\\Stripe\\Reporting\\ReportRun' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Reporting/ReportRun.php',
|
||||
'WPForms\\Vendor\\Stripe\\Reporting\\ReportType' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Reporting/ReportType.php',
|
||||
'WPForms\\Vendor\\Stripe\\RequestTelemetry' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/RequestTelemetry.php',
|
||||
'WPForms\\Vendor\\Stripe\\Review' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Review.php',
|
||||
'WPForms\\Vendor\\Stripe\\SearchResult' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/SearchResult.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\AbstractService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/AbstractService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\AbstractServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/AbstractServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\AccountLinkService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/AccountLinkService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\AccountService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/AccountService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ApplePayDomainService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/ApplePayDomainService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ApplicationFeeService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/ApplicationFeeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Apps\\AppsServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Apps/AppsServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Apps\\SecretService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Apps/SecretService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\BalanceService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/BalanceService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\BalanceTransactionService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/BalanceTransactionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\BillingPortal\\BillingPortalServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/BillingPortal/BillingPortalServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\BillingPortal\\ConfigurationService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/BillingPortal/ConfigurationService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\BillingPortal\\SessionService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/BillingPortal/SessionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ChargeService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/ChargeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Checkout\\CheckoutServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Checkout/CheckoutServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Checkout\\SessionService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Checkout/SessionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\CoreServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/CoreServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\CountrySpecService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/CountrySpecService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\CouponService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/CouponService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\CreditNoteService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/CreditNoteService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\CustomerService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/CustomerService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\DisputeService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/DisputeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\EphemeralKeyService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/EphemeralKeyService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\EventService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/EventService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ExchangeRateService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/ExchangeRateService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\FileLinkService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/FileLinkService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\FileService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/FileService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\FinancialConnections\\AccountService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/FinancialConnections/AccountService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\FinancialConnections\\FinancialConnectionsServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/FinancialConnections/FinancialConnectionsServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\FinancialConnections\\SessionService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/FinancialConnections/SessionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Identity\\IdentityServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Identity/IdentityServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Identity\\VerificationReportService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Identity/VerificationReportService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Identity\\VerificationSessionService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Identity/VerificationSessionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\InvoiceItemService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/InvoiceItemService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\InvoiceService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/InvoiceService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Issuing\\AuthorizationService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Issuing/AuthorizationService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Issuing\\CardService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Issuing/CardService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Issuing\\CardholderService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Issuing/CardholderService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Issuing\\DisputeService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Issuing/DisputeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Issuing\\IssuingServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Issuing/IssuingServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Issuing\\TransactionService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Issuing/TransactionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\MandateService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/MandateService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\OAuthService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/OAuthService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PaymentIntentService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/PaymentIntentService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PaymentLinkService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/PaymentLinkService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PaymentMethodService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/PaymentMethodService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PayoutService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/PayoutService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PlanService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/PlanService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PriceService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/PriceService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ProductService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/ProductService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PromotionCodeService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/PromotionCodeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\QuoteService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/QuoteService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Radar\\EarlyFraudWarningService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Radar/EarlyFraudWarningService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Radar\\RadarServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Radar/RadarServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Radar\\ValueListItemService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Radar/ValueListItemService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Radar\\ValueListService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Radar/ValueListService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\RefundService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/RefundService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Reporting\\ReportRunService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Reporting/ReportRunService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Reporting\\ReportTypeService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Reporting/ReportTypeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Reporting\\ReportingServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Reporting/ReportingServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ReviewService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/ReviewService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\SetupAttemptService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/SetupAttemptService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\SetupIntentService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/SetupIntentService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ShippingRateService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/ShippingRateService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Sigma\\ScheduledQueryRunService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Sigma/ScheduledQueryRunService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Sigma\\SigmaServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Sigma/SigmaServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\SourceService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/SourceService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\SubscriptionItemService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/SubscriptionItemService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\SubscriptionScheduleService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/SubscriptionScheduleService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\SubscriptionService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/SubscriptionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TaxCodeService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TaxCodeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TaxRateService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TaxRateService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Tax\\CalculationService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Tax/CalculationService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Tax\\SettingsService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Tax/SettingsService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Tax\\TaxServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Tax/TaxServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Tax\\TransactionService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Tax/TransactionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Terminal\\ConfigurationService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Terminal/ConfigurationService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Terminal\\ConnectionTokenService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Terminal/ConnectionTokenService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Terminal\\LocationService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Terminal/LocationService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Terminal\\ReaderService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Terminal/ReaderService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Terminal\\TerminalServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Terminal/TerminalServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\CustomerService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/CustomerService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Issuing\\CardService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Issuing/CardService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Issuing\\IssuingServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Issuing/IssuingServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\RefundService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/RefundService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Terminal\\ReaderService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Terminal/ReaderService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Terminal\\TerminalServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Terminal/TerminalServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\TestClockService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/TestClockService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\TestHelpersServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/TestHelpersServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Treasury\\InboundTransferService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Treasury/InboundTransferService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Treasury\\OutboundPaymentService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Treasury/OutboundPaymentService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Treasury\\OutboundTransferService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Treasury/OutboundTransferService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Treasury\\ReceivedCreditService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Treasury/ReceivedCreditService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Treasury\\ReceivedDebitService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Treasury/ReceivedDebitService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Treasury\\TreasuryServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Treasury/TreasuryServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TokenService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TokenService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TopupService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TopupService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TransferService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/TransferService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\CreditReversalService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/CreditReversalService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\DebitReversalService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/DebitReversalService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\FinancialAccountService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/FinancialAccountService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\InboundTransferService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/InboundTransferService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\OutboundPaymentService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/OutboundPaymentService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\OutboundTransferService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/OutboundTransferService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\ReceivedCreditService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/ReceivedCreditService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\ReceivedDebitService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/ReceivedDebitService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\TransactionEntryService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/TransactionEntryService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\TransactionService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/TransactionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\TreasuryServiceFactory' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/TreasuryServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\WebhookEndpointService' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Service/WebhookEndpointService.php',
|
||||
'WPForms\\Vendor\\Stripe\\SetupAttempt' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/SetupAttempt.php',
|
||||
'WPForms\\Vendor\\Stripe\\SetupIntent' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/SetupIntent.php',
|
||||
'WPForms\\Vendor\\Stripe\\ShippingRate' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/ShippingRate.php',
|
||||
'WPForms\\Vendor\\Stripe\\Sigma\\ScheduledQueryRun' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Sigma/ScheduledQueryRun.php',
|
||||
'WPForms\\Vendor\\Stripe\\SingletonApiResource' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/SingletonApiResource.php',
|
||||
'WPForms\\Vendor\\Stripe\\Source' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Source.php',
|
||||
'WPForms\\Vendor\\Stripe\\SourceTransaction' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/SourceTransaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\Stripe' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Stripe.php',
|
||||
'WPForms\\Vendor\\Stripe\\StripeClient' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/StripeClient.php',
|
||||
'WPForms\\Vendor\\Stripe\\StripeClientInterface' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/StripeClientInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\StripeObject' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/StripeObject.php',
|
||||
'WPForms\\Vendor\\Stripe\\StripeStreamingClientInterface' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/StripeStreamingClientInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\Subscription' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Subscription.php',
|
||||
'WPForms\\Vendor\\Stripe\\SubscriptionItem' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/SubscriptionItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\SubscriptionSchedule' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/SubscriptionSchedule.php',
|
||||
'WPForms\\Vendor\\Stripe\\TaxCode' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/TaxCode.php',
|
||||
'WPForms\\Vendor\\Stripe\\TaxId' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/TaxId.php',
|
||||
'WPForms\\Vendor\\Stripe\\TaxRate' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/TaxRate.php',
|
||||
'WPForms\\Vendor\\Stripe\\Tax\\Calculation' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Tax/Calculation.php',
|
||||
'WPForms\\Vendor\\Stripe\\Tax\\CalculationLineItem' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Tax/CalculationLineItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\Tax\\Settings' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Tax/Settings.php',
|
||||
'WPForms\\Vendor\\Stripe\\Tax\\Transaction' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Tax/Transaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\Tax\\TransactionLineItem' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Tax/TransactionLineItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\Terminal\\Configuration' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Terminal/Configuration.php',
|
||||
'WPForms\\Vendor\\Stripe\\Terminal\\ConnectionToken' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Terminal/ConnectionToken.php',
|
||||
'WPForms\\Vendor\\Stripe\\Terminal\\Location' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Terminal/Location.php',
|
||||
'WPForms\\Vendor\\Stripe\\Terminal\\Reader' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Terminal/Reader.php',
|
||||
'WPForms\\Vendor\\Stripe\\TestHelpers\\TestClock' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/TestHelpers/TestClock.php',
|
||||
'WPForms\\Vendor\\Stripe\\Token' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Token.php',
|
||||
'WPForms\\Vendor\\Stripe\\Topup' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Topup.php',
|
||||
'WPForms\\Vendor\\Stripe\\Transfer' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Transfer.php',
|
||||
'WPForms\\Vendor\\Stripe\\TransferReversal' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/TransferReversal.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\CreditReversal' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/CreditReversal.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\DebitReversal' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/DebitReversal.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\FinancialAccount' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/FinancialAccount.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\FinancialAccountFeatures' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/FinancialAccountFeatures.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\InboundTransfer' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/InboundTransfer.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\OutboundPayment' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/OutboundPayment.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\OutboundTransfer' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/OutboundTransfer.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\ReceivedCredit' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/ReceivedCredit.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\ReceivedDebit' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/ReceivedDebit.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\Transaction' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/Transaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\TransactionEntry' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/TransactionEntry.php',
|
||||
'WPForms\\Vendor\\Stripe\\UsageRecord' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/UsageRecord.php',
|
||||
'WPForms\\Vendor\\Stripe\\UsageRecordSummary' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/UsageRecordSummary.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\ApiVersion' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Util/ApiVersion.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\CaseInsensitiveArray' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Util/CaseInsensitiveArray.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\DefaultLogger' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Util/DefaultLogger.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\LoggerInterface' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Util/LoggerInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\ObjectTypes' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Util/ObjectTypes.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\RandomGenerator' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Util/RandomGenerator.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\RequestOptions' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Util/RequestOptions.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\Set' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Util/Set.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\Util' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Util/Util.php',
|
||||
'WPForms\\Vendor\\Stripe\\Webhook' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/Webhook.php',
|
||||
'WPForms\\Vendor\\Stripe\\WebhookEndpoint' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/WebhookEndpoint.php',
|
||||
'WPForms\\Vendor\\Stripe\\WebhookSignature' => $baseDir . '/vendor_prefixed/stripe/stripe-php/lib/WebhookSignature.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\CssSelectorConverter' => $baseDir . '/vendor_prefixed/symfony/css-selector/CssSelectorConverter.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => $baseDir . '/vendor_prefixed/symfony/css-selector/Exception/ExceptionInterface.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => $baseDir . '/vendor_prefixed/symfony/css-selector/Exception/ExpressionErrorException.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => $baseDir . '/vendor_prefixed/symfony/css-selector/Exception/InternalErrorException.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Exception\\ParseException' => $baseDir . '/vendor_prefixed/symfony/css-selector/Exception/ParseException.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => $baseDir . '/vendor_prefixed/symfony/css-selector/Exception/SyntaxErrorException.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\AbstractNode' => $baseDir . '/vendor_prefixed/symfony/css-selector/Node/AbstractNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\AttributeNode' => $baseDir . '/vendor_prefixed/symfony/css-selector/Node/AttributeNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\ClassNode' => $baseDir . '/vendor_prefixed/symfony/css-selector/Node/ClassNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => $baseDir . '/vendor_prefixed/symfony/css-selector/Node/CombinedSelectorNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\ElementNode' => $baseDir . '/vendor_prefixed/symfony/css-selector/Node/ElementNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\FunctionNode' => $baseDir . '/vendor_prefixed/symfony/css-selector/Node/FunctionNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\HashNode' => $baseDir . '/vendor_prefixed/symfony/css-selector/Node/HashNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\NegationNode' => $baseDir . '/vendor_prefixed/symfony/css-selector/Node/NegationNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\NodeInterface' => $baseDir . '/vendor_prefixed/symfony/css-selector/Node/NodeInterface.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\PseudoNode' => $baseDir . '/vendor_prefixed/symfony/css-selector/Node/PseudoNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\SelectorNode' => $baseDir . '/vendor_prefixed/symfony/css-selector/Node/SelectorNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\Specificity' => $baseDir . '/vendor_prefixed/symfony/css-selector/Node/Specificity.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Handler/CommentHandler.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Handler/HandlerInterface.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Handler/HashHandler.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Handler/IdentifierHandler.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Handler/NumberHandler.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Handler/StringHandler.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Handler/WhitespaceHandler.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Parser' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Parser.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/ParserInterface.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Reader' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Reader.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Shortcut/ClassParser.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Shortcut/ElementParser.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Shortcut/HashParser.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Token' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Token.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\TokenStream' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/TokenStream.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Tokenizer/Tokenizer.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => $baseDir . '/vendor_prefixed/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\CssSelectorConverterTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/CssSelectorConverterTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\AbstractNodeTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Node/AbstractNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\AttributeNodeTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Node/AttributeNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\ClassNodeTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Node/ClassNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\CombinedSelectorNodeTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Node/CombinedSelectorNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\ElementNodeTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Node/ElementNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\FunctionNodeTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Node/FunctionNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\HashNodeTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Node/HashNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\NegationNodeTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Node/NegationNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\PseudoNodeTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Node/PseudoNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\SelectorNodeTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Node/SelectorNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\SpecificityTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Node/SpecificityTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\AbstractHandlerTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/AbstractHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\CommentHandlerTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/CommentHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\HashHandlerTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/HashHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\IdentifierHandlerTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/IdentifierHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\NumberHandlerTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/NumberHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\StringHandlerTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/StringHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\WhitespaceHandlerTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/WhitespaceHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\ParserTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/ParserTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\ReaderTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/ReaderTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\ClassParserTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Shortcut/ClassParserTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\ElementParserTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Shortcut/ElementParserTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\EmptyStringParserTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Shortcut/EmptyStringParserTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\HashParserTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Shortcut/HashParserTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\TokenStreamTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/Parser/TokenStreamTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\XPath\\TranslatorTest' => $baseDir . '/vendor_prefixed/symfony/css-selector/Tests/XPath/TranslatorTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => $baseDir . '/vendor_prefixed/symfony/css-selector/XPath/Extension/AbstractExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => $baseDir . '/vendor_prefixed/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => $baseDir . '/vendor_prefixed/symfony/css-selector/XPath/Extension/CombinationExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => $baseDir . '/vendor_prefixed/symfony/css-selector/XPath/Extension/ExtensionInterface.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => $baseDir . '/vendor_prefixed/symfony/css-selector/XPath/Extension/FunctionExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => $baseDir . '/vendor_prefixed/symfony/css-selector/XPath/Extension/HtmlExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => $baseDir . '/vendor_prefixed/symfony/css-selector/XPath/Extension/NodeExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => $baseDir . '/vendor_prefixed/symfony/css-selector/XPath/Extension/PseudoClassExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Translator' => $baseDir . '/vendor_prefixed/symfony/css-selector/XPath/Translator.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => $baseDir . '/vendor_prefixed/symfony/css-selector/XPath/TranslatorInterface.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => $baseDir . '/vendor_prefixed/symfony/css-selector/XPath/XPathExpr.php',
|
||||
'WPForms\\Vendor\\TijsVerkoyen\\CssToInlineStyles\\CssToInlineStyles' => $baseDir . '/vendor_prefixed/tijsverkoyen/css-to-inline-styles/src/CssToInlineStyles.php',
|
||||
'WPForms\\Vendor\\TijsVerkoyen\\CssToInlineStyles\\Css\\Processor' => $baseDir . '/vendor_prefixed/tijsverkoyen/css-to-inline-styles/src/Css/Processor.php',
|
||||
'WPForms\\Vendor\\TijsVerkoyen\\CssToInlineStyles\\Css\\Property\\Processor' => $baseDir . '/vendor_prefixed/tijsverkoyen/css-to-inline-styles/src/Css/Property/Processor.php',
|
||||
'WPForms\\Vendor\\TijsVerkoyen\\CssToInlineStyles\\Css\\Property\\Property' => $baseDir . '/vendor_prefixed/tijsverkoyen/css-to-inline-styles/src/Css/Property/Property.php',
|
||||
'WPForms\\Vendor\\TijsVerkoyen\\CssToInlineStyles\\Css\\Rule\\Processor' => $baseDir . '/vendor_prefixed/tijsverkoyen/css-to-inline-styles/src/Css/Rule/Processor.php',
|
||||
'WPForms\\Vendor\\TijsVerkoyen\\CssToInlineStyles\\Css\\Rule\\Rule' => $baseDir . '/vendor_prefixed/tijsverkoyen/css-to-inline-styles/src/Css/Rule/Rule.php',
|
||||
'WPForms\\Vendor\\TrueBV\\Exception\\DomainOutOfBoundsException' => $baseDir . '/vendor_prefixed/true/punycode/src/Exception/DomainOutOfBoundsException.php',
|
||||
'WPForms\\Vendor\\TrueBV\\Exception\\LabelOutOfBoundsException' => $baseDir . '/vendor_prefixed/true/punycode/src/Exception/LabelOutOfBoundsException.php',
|
||||
'WPForms\\Vendor\\TrueBV\\Exception\\OutOfBoundsException' => $baseDir . '/vendor_prefixed/true/punycode/src/Exception/OutOfBoundsException.php',
|
||||
'WPForms\\Vendor\\TrueBV\\Punycode' => $baseDir . '/vendor_prefixed/true/punycode/src/Punycode.php',
|
||||
);
|
11
wp-content/plugins/wpforms-lite/vendor/composer/autoload_files.php
vendored
Normal file
11
wp-content/plugins/wpforms-lite/vendor/composer/autoload_files.php
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
// autoload_files.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(dirname(__FILE__));
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
|
||||
'def43f6c87e4f8dfd0c9e1b1bab14fe8' => $vendorDir . '/symfony/polyfill-iconv/bootstrap.php',
|
||||
);
|
9
wp-content/plugins/wpforms-lite/vendor/composer/autoload_namespaces.php
vendored
Normal file
9
wp-content/plugins/wpforms-lite/vendor/composer/autoload_namespaces.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
// autoload_namespaces.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(dirname(__FILE__));
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
);
|
18
wp-content/plugins/wpforms-lite/vendor/composer/autoload_psr4.php
vendored
Normal file
18
wp-content/plugins/wpforms-lite/vendor/composer/autoload_psr4.php
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
// autoload_psr4.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(dirname(__FILE__));
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'WPForms\\Tests\\Unit\\' => array($baseDir . '/tests/unit'),
|
||||
'WPForms\\Tests\\Integration\\' => array($baseDir . '/tests/integration'),
|
||||
'WPForms\\' => array($baseDir . '/src', $baseDir . '/src'),
|
||||
'TrueBV\\' => array($vendorDir . '/true/punycode/src'),
|
||||
'TijsVerkoyen\\CssToInlineStyles\\' => array($vendorDir . '/tijsverkoyen/css-to-inline-styles/src'),
|
||||
'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
|
||||
'Symfony\\Polyfill\\Iconv\\' => array($vendorDir . '/symfony/polyfill-iconv'),
|
||||
'Symfony\\Component\\CssSelector\\' => array($vendorDir . '/symfony/css-selector'),
|
||||
'Stripe\\' => array($vendorDir . '/stripe/stripe-php/lib'),
|
||||
);
|
73
wp-content/plugins/wpforms-lite/vendor/composer/autoload_real.php
vendored
Normal file
73
wp-content/plugins/wpforms-lite/vendor/composer/autoload_real.php
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
// autoload_real.php @generated by Composer
|
||||
|
||||
class ComposerAutoloaderInitb4819db6ac3adf440bb861aadbfcbf60
|
||||
{
|
||||
private static $loader;
|
||||
|
||||
public static function loadClassLoader($class)
|
||||
{
|
||||
if ('Composer\Autoload\ClassLoader' === $class) {
|
||||
require __DIR__ . '/ClassLoader.php';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Composer\Autoload\ClassLoader
|
||||
*/
|
||||
public static function getLoader()
|
||||
{
|
||||
if (null !== self::$loader) {
|
||||
return self::$loader;
|
||||
}
|
||||
|
||||
spl_autoload_register(array('ComposerAutoloaderInitb4819db6ac3adf440bb861aadbfcbf60', 'loadClassLoader'), true, true);
|
||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInitb4819db6ac3adf440bb861aadbfcbf60', 'loadClassLoader'));
|
||||
|
||||
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
||||
if ($useStaticLoader) {
|
||||
require_once __DIR__ . '/autoload_static.php';
|
||||
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInitb4819db6ac3adf440bb861aadbfcbf60::getInitializer($loader));
|
||||
} else {
|
||||
$map = require __DIR__ . '/autoload_namespaces.php';
|
||||
foreach ($map as $namespace => $path) {
|
||||
$loader->set($namespace, $path);
|
||||
}
|
||||
|
||||
$map = require __DIR__ . '/autoload_psr4.php';
|
||||
foreach ($map as $namespace => $path) {
|
||||
$loader->setPsr4($namespace, $path);
|
||||
}
|
||||
|
||||
$classMap = require __DIR__ . '/autoload_classmap.php';
|
||||
if ($classMap) {
|
||||
$loader->addClassMap($classMap);
|
||||
}
|
||||
}
|
||||
|
||||
$loader->register(true);
|
||||
|
||||
if ($useStaticLoader) {
|
||||
$includeFiles = Composer\Autoload\ComposerStaticInitb4819db6ac3adf440bb861aadbfcbf60::$files;
|
||||
} else {
|
||||
$includeFiles = require __DIR__ . '/autoload_files.php';
|
||||
}
|
||||
foreach ($includeFiles as $fileIdentifier => $file) {
|
||||
composerRequireb4819db6ac3adf440bb861aadbfcbf60($fileIdentifier, $file);
|
||||
}
|
||||
|
||||
return $loader;
|
||||
}
|
||||
}
|
||||
|
||||
function composerRequireb4819db6ac3adf440bb861aadbfcbf60($fileIdentifier, $file)
|
||||
{
|
||||
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
||||
require $file;
|
||||
|
||||
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
||||
}
|
||||
}
|
452
wp-content/plugins/wpforms-lite/vendor/composer/autoload_static.php
vendored
Normal file
452
wp-content/plugins/wpforms-lite/vendor/composer/autoload_static.php
vendored
Normal file
@@ -0,0 +1,452 @@
|
||||
<?php
|
||||
|
||||
// autoload_static.php @generated by Composer
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
class ComposerStaticInitb4819db6ac3adf440bb861aadbfcbf60
|
||||
{
|
||||
public static $files = array (
|
||||
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
|
||||
'def43f6c87e4f8dfd0c9e1b1bab14fe8' => __DIR__ . '/..' . '/symfony/polyfill-iconv/bootstrap.php',
|
||||
);
|
||||
|
||||
public static $prefixLengthsPsr4 = array (
|
||||
'W' =>
|
||||
array (
|
||||
'WPForms\\Tests\\Unit\\' => 19,
|
||||
'WPForms\\Tests\\Integration\\' => 26,
|
||||
'WPForms\\' => 8,
|
||||
),
|
||||
'T' =>
|
||||
array (
|
||||
'TrueBV\\' => 7,
|
||||
'TijsVerkoyen\\CssToInlineStyles\\' => 31,
|
||||
),
|
||||
'S' =>
|
||||
array (
|
||||
'Symfony\\Polyfill\\Mbstring\\' => 26,
|
||||
'Symfony\\Polyfill\\Iconv\\' => 23,
|
||||
'Symfony\\Component\\CssSelector\\' => 30,
|
||||
'Stripe\\' => 7,
|
||||
),
|
||||
);
|
||||
|
||||
public static $prefixDirsPsr4 = array (
|
||||
'WPForms\\Tests\\Unit\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/../..' . '/tests/unit',
|
||||
),
|
||||
'WPForms\\Tests\\Integration\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/../..' . '/tests/integration',
|
||||
),
|
||||
'WPForms\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/../..' . '/src',
|
||||
1 => __DIR__ . '/../..' . '/src',
|
||||
),
|
||||
'TrueBV\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/true/punycode/src',
|
||||
),
|
||||
'TijsVerkoyen\\CssToInlineStyles\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src',
|
||||
),
|
||||
'Symfony\\Polyfill\\Mbstring\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
|
||||
),
|
||||
'Symfony\\Polyfill\\Iconv\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/polyfill-iconv',
|
||||
),
|
||||
'Symfony\\Component\\CssSelector\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/css-selector',
|
||||
),
|
||||
'Stripe\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/stripe/stripe-php/lib',
|
||||
),
|
||||
);
|
||||
|
||||
public static $classMap = array (
|
||||
'WPForms\\Vendor\\Stripe\\Account' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Account.php',
|
||||
'WPForms\\Vendor\\Stripe\\AccountLink' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/AccountLink.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\All' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/All.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\Create' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/Create.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\Delete' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/Delete.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\NestedResource' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/NestedResource.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\Request' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/Request.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\Retrieve' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/Retrieve.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\Search' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/Search.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\SingletonRetrieve' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/SingletonRetrieve.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiOperations\\Update' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApiOperations/Update.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiRequestor' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApiRequestor.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiResource' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApiResource.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApiResponse' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApiResponse.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApplePayDomain' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApplePayDomain.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApplicationFee' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApplicationFee.php',
|
||||
'WPForms\\Vendor\\Stripe\\ApplicationFeeRefund' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ApplicationFeeRefund.php',
|
||||
'WPForms\\Vendor\\Stripe\\Apps\\Secret' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Apps/Secret.php',
|
||||
'WPForms\\Vendor\\Stripe\\Balance' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Balance.php',
|
||||
'WPForms\\Vendor\\Stripe\\BalanceTransaction' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/BalanceTransaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\BankAccount' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/BankAccount.php',
|
||||
'WPForms\\Vendor\\Stripe\\BaseStripeClient' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/BaseStripeClient.php',
|
||||
'WPForms\\Vendor\\Stripe\\BaseStripeClientInterface' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/BaseStripeClientInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\BillingPortal\\Configuration' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/BillingPortal/Configuration.php',
|
||||
'WPForms\\Vendor\\Stripe\\BillingPortal\\Session' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/BillingPortal/Session.php',
|
||||
'WPForms\\Vendor\\Stripe\\Capability' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Capability.php',
|
||||
'WPForms\\Vendor\\Stripe\\Card' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Card.php',
|
||||
'WPForms\\Vendor\\Stripe\\CashBalance' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/CashBalance.php',
|
||||
'WPForms\\Vendor\\Stripe\\Charge' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Charge.php',
|
||||
'WPForms\\Vendor\\Stripe\\Checkout\\Session' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Checkout/Session.php',
|
||||
'WPForms\\Vendor\\Stripe\\Collection' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Collection.php',
|
||||
'WPForms\\Vendor\\Stripe\\CountrySpec' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/CountrySpec.php',
|
||||
'WPForms\\Vendor\\Stripe\\Coupon' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Coupon.php',
|
||||
'WPForms\\Vendor\\Stripe\\CreditNote' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/CreditNote.php',
|
||||
'WPForms\\Vendor\\Stripe\\CreditNoteLineItem' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/CreditNoteLineItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\Customer' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Customer.php',
|
||||
'WPForms\\Vendor\\Stripe\\CustomerBalanceTransaction' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/CustomerBalanceTransaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\CustomerCashBalanceTransaction' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/CustomerCashBalanceTransaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\Discount' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Discount.php',
|
||||
'WPForms\\Vendor\\Stripe\\Dispute' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Dispute.php',
|
||||
'WPForms\\Vendor\\Stripe\\EphemeralKey' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/EphemeralKey.php',
|
||||
'WPForms\\Vendor\\Stripe\\ErrorObject' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ErrorObject.php',
|
||||
'WPForms\\Vendor\\Stripe\\Event' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Event.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\ApiConnectionException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/ApiConnectionException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\ApiErrorException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/ApiErrorException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\AuthenticationException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/AuthenticationException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\BadMethodCallException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/BadMethodCallException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\CardException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/CardException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\ExceptionInterface' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/ExceptionInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\IdempotencyException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/IdempotencyException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\InvalidArgumentException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/InvalidArgumentException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\InvalidRequestException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/InvalidRequestException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\ExceptionInterface' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/ExceptionInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\InvalidClientException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/InvalidClientException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\InvalidGrantException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/InvalidGrantException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\InvalidRequestException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/InvalidRequestException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\InvalidScopeException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/InvalidScopeException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\OAuthErrorException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/OAuthErrorException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\UnknownOAuthErrorException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/UnknownOAuthErrorException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\UnsupportedGrantTypeException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/UnsupportedGrantTypeException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\OAuth\\UnsupportedResponseTypeException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/OAuth/UnsupportedResponseTypeException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\PermissionException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/PermissionException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\RateLimitException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/RateLimitException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\SignatureVerificationException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/SignatureVerificationException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\UnexpectedValueException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/UnexpectedValueException.php',
|
||||
'WPForms\\Vendor\\Stripe\\Exception\\UnknownApiErrorException' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Exception/UnknownApiErrorException.php',
|
||||
'WPForms\\Vendor\\Stripe\\ExchangeRate' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ExchangeRate.php',
|
||||
'WPForms\\Vendor\\Stripe\\File' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/File.php',
|
||||
'WPForms\\Vendor\\Stripe\\FileLink' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/FileLink.php',
|
||||
'WPForms\\Vendor\\Stripe\\FinancialConnections\\Account' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/FinancialConnections/Account.php',
|
||||
'WPForms\\Vendor\\Stripe\\FinancialConnections\\AccountOwner' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/FinancialConnections/AccountOwner.php',
|
||||
'WPForms\\Vendor\\Stripe\\FinancialConnections\\AccountOwnership' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/FinancialConnections/AccountOwnership.php',
|
||||
'WPForms\\Vendor\\Stripe\\FinancialConnections\\Session' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/FinancialConnections/Session.php',
|
||||
'WPForms\\Vendor\\Stripe\\FundingInstructions' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/FundingInstructions.php',
|
||||
'WPForms\\Vendor\\Stripe\\HttpClient\\ClientInterface' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/HttpClient/ClientInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\HttpClient\\CurlClient' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/HttpClient/CurlClient.php',
|
||||
'WPForms\\Vendor\\Stripe\\HttpClient\\StreamingClientInterface' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/HttpClient/StreamingClientInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\Identity\\VerificationReport' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Identity/VerificationReport.php',
|
||||
'WPForms\\Vendor\\Stripe\\Identity\\VerificationSession' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Identity/VerificationSession.php',
|
||||
'WPForms\\Vendor\\Stripe\\Invoice' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Invoice.php',
|
||||
'WPForms\\Vendor\\Stripe\\InvoiceItem' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/InvoiceItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\InvoiceLineItem' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/InvoiceLineItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\Issuing\\Authorization' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Issuing/Authorization.php',
|
||||
'WPForms\\Vendor\\Stripe\\Issuing\\Card' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Issuing/Card.php',
|
||||
'WPForms\\Vendor\\Stripe\\Issuing\\CardDetails' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Issuing/CardDetails.php',
|
||||
'WPForms\\Vendor\\Stripe\\Issuing\\Cardholder' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Issuing/Cardholder.php',
|
||||
'WPForms\\Vendor\\Stripe\\Issuing\\Dispute' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Issuing/Dispute.php',
|
||||
'WPForms\\Vendor\\Stripe\\Issuing\\Transaction' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Issuing/Transaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\LineItem' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/LineItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\LoginLink' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/LoginLink.php',
|
||||
'WPForms\\Vendor\\Stripe\\Mandate' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Mandate.php',
|
||||
'WPForms\\Vendor\\Stripe\\OAuth' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/OAuth.php',
|
||||
'WPForms\\Vendor\\Stripe\\OAuthErrorObject' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/OAuthErrorObject.php',
|
||||
'WPForms\\Vendor\\Stripe\\PaymentIntent' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/PaymentIntent.php',
|
||||
'WPForms\\Vendor\\Stripe\\PaymentLink' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/PaymentLink.php',
|
||||
'WPForms\\Vendor\\Stripe\\PaymentMethod' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/PaymentMethod.php',
|
||||
'WPForms\\Vendor\\Stripe\\Payout' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Payout.php',
|
||||
'WPForms\\Vendor\\Stripe\\Person' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Person.php',
|
||||
'WPForms\\Vendor\\Stripe\\Plan' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Plan.php',
|
||||
'WPForms\\Vendor\\Stripe\\Price' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Price.php',
|
||||
'WPForms\\Vendor\\Stripe\\Product' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Product.php',
|
||||
'WPForms\\Vendor\\Stripe\\PromotionCode' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/PromotionCode.php',
|
||||
'WPForms\\Vendor\\Stripe\\Quote' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Quote.php',
|
||||
'WPForms\\Vendor\\Stripe\\Radar\\EarlyFraudWarning' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Radar/EarlyFraudWarning.php',
|
||||
'WPForms\\Vendor\\Stripe\\Radar\\ValueList' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Radar/ValueList.php',
|
||||
'WPForms\\Vendor\\Stripe\\Radar\\ValueListItem' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Radar/ValueListItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\RecipientTransfer' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/RecipientTransfer.php',
|
||||
'WPForms\\Vendor\\Stripe\\Refund' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Refund.php',
|
||||
'WPForms\\Vendor\\Stripe\\Reporting\\ReportRun' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Reporting/ReportRun.php',
|
||||
'WPForms\\Vendor\\Stripe\\Reporting\\ReportType' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Reporting/ReportType.php',
|
||||
'WPForms\\Vendor\\Stripe\\RequestTelemetry' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/RequestTelemetry.php',
|
||||
'WPForms\\Vendor\\Stripe\\Review' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Review.php',
|
||||
'WPForms\\Vendor\\Stripe\\SearchResult' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/SearchResult.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\AbstractService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/AbstractService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\AbstractServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/AbstractServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\AccountLinkService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/AccountLinkService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\AccountService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/AccountService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ApplePayDomainService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/ApplePayDomainService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ApplicationFeeService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/ApplicationFeeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Apps\\AppsServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Apps/AppsServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Apps\\SecretService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Apps/SecretService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\BalanceService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/BalanceService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\BalanceTransactionService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/BalanceTransactionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\BillingPortal\\BillingPortalServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/BillingPortal/BillingPortalServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\BillingPortal\\ConfigurationService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/BillingPortal/ConfigurationService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\BillingPortal\\SessionService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/BillingPortal/SessionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ChargeService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/ChargeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Checkout\\CheckoutServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Checkout/CheckoutServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Checkout\\SessionService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Checkout/SessionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\CoreServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/CoreServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\CountrySpecService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/CountrySpecService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\CouponService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/CouponService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\CreditNoteService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/CreditNoteService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\CustomerService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/CustomerService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\DisputeService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/DisputeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\EphemeralKeyService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/EphemeralKeyService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\EventService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/EventService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ExchangeRateService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/ExchangeRateService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\FileLinkService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/FileLinkService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\FileService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/FileService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\FinancialConnections\\AccountService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/FinancialConnections/AccountService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\FinancialConnections\\FinancialConnectionsServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/FinancialConnections/FinancialConnectionsServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\FinancialConnections\\SessionService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/FinancialConnections/SessionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Identity\\IdentityServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Identity/IdentityServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Identity\\VerificationReportService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Identity/VerificationReportService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Identity\\VerificationSessionService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Identity/VerificationSessionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\InvoiceItemService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/InvoiceItemService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\InvoiceService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/InvoiceService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Issuing\\AuthorizationService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Issuing/AuthorizationService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Issuing\\CardService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Issuing/CardService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Issuing\\CardholderService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Issuing/CardholderService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Issuing\\DisputeService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Issuing/DisputeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Issuing\\IssuingServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Issuing/IssuingServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Issuing\\TransactionService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Issuing/TransactionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\MandateService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/MandateService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\OAuthService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/OAuthService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PaymentIntentService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/PaymentIntentService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PaymentLinkService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/PaymentLinkService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PaymentMethodService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/PaymentMethodService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PayoutService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/PayoutService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PlanService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/PlanService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PriceService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/PriceService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ProductService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/ProductService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\PromotionCodeService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/PromotionCodeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\QuoteService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/QuoteService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Radar\\EarlyFraudWarningService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Radar/EarlyFraudWarningService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Radar\\RadarServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Radar/RadarServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Radar\\ValueListItemService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Radar/ValueListItemService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Radar\\ValueListService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Radar/ValueListService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\RefundService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/RefundService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Reporting\\ReportRunService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Reporting/ReportRunService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Reporting\\ReportTypeService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Reporting/ReportTypeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Reporting\\ReportingServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Reporting/ReportingServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ReviewService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/ReviewService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\SetupAttemptService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/SetupAttemptService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\SetupIntentService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/SetupIntentService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\ShippingRateService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/ShippingRateService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Sigma\\ScheduledQueryRunService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Sigma/ScheduledQueryRunService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Sigma\\SigmaServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Sigma/SigmaServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\SourceService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/SourceService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\SubscriptionItemService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/SubscriptionItemService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\SubscriptionScheduleService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/SubscriptionScheduleService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\SubscriptionService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/SubscriptionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TaxCodeService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TaxCodeService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TaxRateService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TaxRateService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Tax\\CalculationService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Tax/CalculationService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Tax\\SettingsService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Tax/SettingsService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Tax\\TaxServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Tax/TaxServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Tax\\TransactionService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Tax/TransactionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Terminal\\ConfigurationService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Terminal/ConfigurationService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Terminal\\ConnectionTokenService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Terminal/ConnectionTokenService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Terminal\\LocationService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Terminal/LocationService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Terminal\\ReaderService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Terminal/ReaderService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Terminal\\TerminalServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Terminal/TerminalServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\CustomerService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/CustomerService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Issuing\\CardService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Issuing/CardService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Issuing\\IssuingServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Issuing/IssuingServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\RefundService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/RefundService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Terminal\\ReaderService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Terminal/ReaderService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Terminal\\TerminalServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Terminal/TerminalServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\TestClockService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/TestClockService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\TestHelpersServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/TestHelpersServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Treasury\\InboundTransferService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Treasury/InboundTransferService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Treasury\\OutboundPaymentService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Treasury/OutboundPaymentService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Treasury\\OutboundTransferService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Treasury/OutboundTransferService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Treasury\\ReceivedCreditService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Treasury/ReceivedCreditService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Treasury\\ReceivedDebitService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Treasury/ReceivedDebitService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TestHelpers\\Treasury\\TreasuryServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TestHelpers/Treasury/TreasuryServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TokenService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TokenService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TopupService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TopupService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\TransferService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/TransferService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\CreditReversalService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/CreditReversalService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\DebitReversalService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/DebitReversalService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\FinancialAccountService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/FinancialAccountService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\InboundTransferService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/InboundTransferService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\OutboundPaymentService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/OutboundPaymentService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\OutboundTransferService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/OutboundTransferService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\ReceivedCreditService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/ReceivedCreditService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\ReceivedDebitService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/ReceivedDebitService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\TransactionEntryService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/TransactionEntryService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\TransactionService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/TransactionService.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\Treasury\\TreasuryServiceFactory' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/Treasury/TreasuryServiceFactory.php',
|
||||
'WPForms\\Vendor\\Stripe\\Service\\WebhookEndpointService' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Service/WebhookEndpointService.php',
|
||||
'WPForms\\Vendor\\Stripe\\SetupAttempt' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/SetupAttempt.php',
|
||||
'WPForms\\Vendor\\Stripe\\SetupIntent' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/SetupIntent.php',
|
||||
'WPForms\\Vendor\\Stripe\\ShippingRate' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/ShippingRate.php',
|
||||
'WPForms\\Vendor\\Stripe\\Sigma\\ScheduledQueryRun' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Sigma/ScheduledQueryRun.php',
|
||||
'WPForms\\Vendor\\Stripe\\SingletonApiResource' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/SingletonApiResource.php',
|
||||
'WPForms\\Vendor\\Stripe\\Source' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Source.php',
|
||||
'WPForms\\Vendor\\Stripe\\SourceTransaction' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/SourceTransaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\Stripe' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Stripe.php',
|
||||
'WPForms\\Vendor\\Stripe\\StripeClient' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/StripeClient.php',
|
||||
'WPForms\\Vendor\\Stripe\\StripeClientInterface' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/StripeClientInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\StripeObject' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/StripeObject.php',
|
||||
'WPForms\\Vendor\\Stripe\\StripeStreamingClientInterface' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/StripeStreamingClientInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\Subscription' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Subscription.php',
|
||||
'WPForms\\Vendor\\Stripe\\SubscriptionItem' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/SubscriptionItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\SubscriptionSchedule' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/SubscriptionSchedule.php',
|
||||
'WPForms\\Vendor\\Stripe\\TaxCode' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/TaxCode.php',
|
||||
'WPForms\\Vendor\\Stripe\\TaxId' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/TaxId.php',
|
||||
'WPForms\\Vendor\\Stripe\\TaxRate' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/TaxRate.php',
|
||||
'WPForms\\Vendor\\Stripe\\Tax\\Calculation' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Tax/Calculation.php',
|
||||
'WPForms\\Vendor\\Stripe\\Tax\\CalculationLineItem' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Tax/CalculationLineItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\Tax\\Settings' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Tax/Settings.php',
|
||||
'WPForms\\Vendor\\Stripe\\Tax\\Transaction' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Tax/Transaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\Tax\\TransactionLineItem' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Tax/TransactionLineItem.php',
|
||||
'WPForms\\Vendor\\Stripe\\Terminal\\Configuration' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Terminal/Configuration.php',
|
||||
'WPForms\\Vendor\\Stripe\\Terminal\\ConnectionToken' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Terminal/ConnectionToken.php',
|
||||
'WPForms\\Vendor\\Stripe\\Terminal\\Location' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Terminal/Location.php',
|
||||
'WPForms\\Vendor\\Stripe\\Terminal\\Reader' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Terminal/Reader.php',
|
||||
'WPForms\\Vendor\\Stripe\\TestHelpers\\TestClock' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/TestHelpers/TestClock.php',
|
||||
'WPForms\\Vendor\\Stripe\\Token' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Token.php',
|
||||
'WPForms\\Vendor\\Stripe\\Topup' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Topup.php',
|
||||
'WPForms\\Vendor\\Stripe\\Transfer' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Transfer.php',
|
||||
'WPForms\\Vendor\\Stripe\\TransferReversal' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/TransferReversal.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\CreditReversal' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/CreditReversal.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\DebitReversal' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/DebitReversal.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\FinancialAccount' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/FinancialAccount.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\FinancialAccountFeatures' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/FinancialAccountFeatures.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\InboundTransfer' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/InboundTransfer.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\OutboundPayment' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/OutboundPayment.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\OutboundTransfer' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/OutboundTransfer.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\ReceivedCredit' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/ReceivedCredit.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\ReceivedDebit' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/ReceivedDebit.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\Transaction' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/Transaction.php',
|
||||
'WPForms\\Vendor\\Stripe\\Treasury\\TransactionEntry' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Treasury/TransactionEntry.php',
|
||||
'WPForms\\Vendor\\Stripe\\UsageRecord' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/UsageRecord.php',
|
||||
'WPForms\\Vendor\\Stripe\\UsageRecordSummary' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/UsageRecordSummary.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\ApiVersion' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Util/ApiVersion.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\CaseInsensitiveArray' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Util/CaseInsensitiveArray.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\DefaultLogger' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Util/DefaultLogger.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\LoggerInterface' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Util/LoggerInterface.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\ObjectTypes' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Util/ObjectTypes.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\RandomGenerator' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Util/RandomGenerator.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\RequestOptions' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Util/RequestOptions.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\Set' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Util/Set.php',
|
||||
'WPForms\\Vendor\\Stripe\\Util\\Util' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Util/Util.php',
|
||||
'WPForms\\Vendor\\Stripe\\Webhook' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/Webhook.php',
|
||||
'WPForms\\Vendor\\Stripe\\WebhookEndpoint' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/WebhookEndpoint.php',
|
||||
'WPForms\\Vendor\\Stripe\\WebhookSignature' => __DIR__ . '/../..' . '/vendor_prefixed/stripe/stripe-php/lib/WebhookSignature.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\CssSelectorConverter' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/CssSelectorConverter.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Exception/ExceptionInterface.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Exception/ExpressionErrorException.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Exception/InternalErrorException.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Exception\\ParseException' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Exception/ParseException.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Exception/SyntaxErrorException.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\AbstractNode' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Node/AbstractNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\AttributeNode' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Node/AttributeNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\ClassNode' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Node/ClassNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Node/CombinedSelectorNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\ElementNode' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Node/ElementNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\FunctionNode' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Node/FunctionNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\HashNode' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Node/HashNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\NegationNode' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Node/NegationNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\NodeInterface' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Node/NodeInterface.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\PseudoNode' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Node/PseudoNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\SelectorNode' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Node/SelectorNode.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Node\\Specificity' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Node/Specificity.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Handler/CommentHandler.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Handler/HandlerInterface.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Handler/HashHandler.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Handler/IdentifierHandler.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Handler/NumberHandler.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Handler/StringHandler.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Handler/WhitespaceHandler.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Parser' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Parser.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/ParserInterface.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Reader' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Reader.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Shortcut/ClassParser.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Shortcut/ElementParser.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Shortcut/HashParser.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Token' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Token.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\TokenStream' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/TokenStream.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Tokenizer/Tokenizer.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\CssSelectorConverterTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/CssSelectorConverterTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\AbstractNodeTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Node/AbstractNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\AttributeNodeTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Node/AttributeNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\ClassNodeTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Node/ClassNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\CombinedSelectorNodeTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Node/CombinedSelectorNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\ElementNodeTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Node/ElementNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\FunctionNodeTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Node/FunctionNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\HashNodeTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Node/HashNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\NegationNodeTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Node/NegationNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\PseudoNodeTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Node/PseudoNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\SelectorNodeTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Node/SelectorNodeTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Node\\SpecificityTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Node/SpecificityTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\AbstractHandlerTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/AbstractHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\CommentHandlerTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/CommentHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\HashHandlerTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/HashHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\IdentifierHandlerTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/IdentifierHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\NumberHandlerTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/NumberHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\StringHandlerTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/StringHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\WhitespaceHandlerTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Handler/WhitespaceHandlerTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\ParserTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/ParserTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\ReaderTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/ReaderTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\ClassParserTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Shortcut/ClassParserTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\ElementParserTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Shortcut/ElementParserTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\EmptyStringParserTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Shortcut/EmptyStringParserTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\HashParserTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/Shortcut/HashParserTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\Parser\\TokenStreamTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/Parser/TokenStreamTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\Tests\\XPath\\TranslatorTest' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/Tests/XPath/TranslatorTest.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/XPath/Extension/AbstractExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/XPath/Extension/CombinationExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/XPath/Extension/ExtensionInterface.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/XPath/Extension/FunctionExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/XPath/Extension/HtmlExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/XPath/Extension/NodeExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/XPath/Extension/PseudoClassExtension.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\Translator' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/XPath/Translator.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/XPath/TranslatorInterface.php',
|
||||
'WPForms\\Vendor\\Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => __DIR__ . '/../..' . '/vendor_prefixed/symfony/css-selector/XPath/XPathExpr.php',
|
||||
'WPForms\\Vendor\\TijsVerkoyen\\CssToInlineStyles\\CssToInlineStyles' => __DIR__ . '/../..' . '/vendor_prefixed/tijsverkoyen/css-to-inline-styles/src/CssToInlineStyles.php',
|
||||
'WPForms\\Vendor\\TijsVerkoyen\\CssToInlineStyles\\Css\\Processor' => __DIR__ . '/../..' . '/vendor_prefixed/tijsverkoyen/css-to-inline-styles/src/Css/Processor.php',
|
||||
'WPForms\\Vendor\\TijsVerkoyen\\CssToInlineStyles\\Css\\Property\\Processor' => __DIR__ . '/../..' . '/vendor_prefixed/tijsverkoyen/css-to-inline-styles/src/Css/Property/Processor.php',
|
||||
'WPForms\\Vendor\\TijsVerkoyen\\CssToInlineStyles\\Css\\Property\\Property' => __DIR__ . '/../..' . '/vendor_prefixed/tijsverkoyen/css-to-inline-styles/src/Css/Property/Property.php',
|
||||
'WPForms\\Vendor\\TijsVerkoyen\\CssToInlineStyles\\Css\\Rule\\Processor' => __DIR__ . '/../..' . '/vendor_prefixed/tijsverkoyen/css-to-inline-styles/src/Css/Rule/Processor.php',
|
||||
'WPForms\\Vendor\\TijsVerkoyen\\CssToInlineStyles\\Css\\Rule\\Rule' => __DIR__ . '/../..' . '/vendor_prefixed/tijsverkoyen/css-to-inline-styles/src/Css/Rule/Rule.php',
|
||||
'WPForms\\Vendor\\TrueBV\\Exception\\DomainOutOfBoundsException' => __DIR__ . '/../..' . '/vendor_prefixed/true/punycode/src/Exception/DomainOutOfBoundsException.php',
|
||||
'WPForms\\Vendor\\TrueBV\\Exception\\LabelOutOfBoundsException' => __DIR__ . '/../..' . '/vendor_prefixed/true/punycode/src/Exception/LabelOutOfBoundsException.php',
|
||||
'WPForms\\Vendor\\TrueBV\\Exception\\OutOfBoundsException' => __DIR__ . '/../..' . '/vendor_prefixed/true/punycode/src/Exception/OutOfBoundsException.php',
|
||||
'WPForms\\Vendor\\TrueBV\\Punycode' => __DIR__ . '/../..' . '/vendor_prefixed/true/punycode/src/Punycode.php',
|
||||
);
|
||||
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
{
|
||||
return \Closure::bind(function () use ($loader) {
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInitb4819db6ac3adf440bb861aadbfcbf60::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInitb4819db6ac3adf440bb861aadbfcbf60::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInitb4819db6ac3adf440bb861aadbfcbf60::$classMap;
|
||||
|
||||
}, null, ClassLoader::class);
|
||||
}
|
||||
}
|
104
wp-content/plugins/wpforms-lite/vendor/composer/installed.php
vendored
Normal file
104
wp-content/plugins/wpforms-lite/vendor/composer/installed.php
vendored
Normal file
@@ -0,0 +1,104 @@
|
||||
<?php return array(
|
||||
'root' => array(
|
||||
'name' => 'awesomemotive/wpforms',
|
||||
'pretty_version' => 'dev-develop',
|
||||
'version' => 'dev-develop',
|
||||
'reference' => 'a5e7bc4b6a8f076b9662b8333080b9c5912f181c',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
'dev' => true,
|
||||
),
|
||||
'versions' => array(
|
||||
'awesomemotive/wpforms' => array(
|
||||
'pretty_version' => 'dev-develop',
|
||||
'version' => 'dev-develop',
|
||||
'reference' => 'a5e7bc4b6a8f076b9662b8333080b9c5912f181c',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'mk-j/php_xlsxwriter' => array(
|
||||
'pretty_version' => '0.39',
|
||||
'version' => '0.39.0.0',
|
||||
'reference' => '67541cff96eab25563aa7fcecba33e03368fa464',
|
||||
'type' => 'project',
|
||||
'install_path' => __DIR__ . '/../mk-j/php_xlsxwriter',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'roave/security-advisories' => array(
|
||||
'pretty_version' => 'dev-latest',
|
||||
'version' => 'dev-latest',
|
||||
'reference' => 'ed4318ac306a1a1d467d19c1a768ff17e2d454b1',
|
||||
'type' => 'metapackage',
|
||||
'install_path' => NULL,
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'stripe/stripe-php' => array(
|
||||
'pretty_version' => 'v13.6.0',
|
||||
'version' => '13.6.0.0',
|
||||
'reference' => '6863bd70637fa1e2c022eceec44b89b7687634a1',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../stripe/stripe-php',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/css-selector' => array(
|
||||
'pretty_version' => 'v3.3.6',
|
||||
'version' => '3.3.6.0',
|
||||
'reference' => '4d882dced7b995d5274293039370148e291808f2',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/css-selector',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-iconv' => array(
|
||||
'pretty_version' => 'v1.18.1',
|
||||
'version' => '1.18.1.0',
|
||||
'reference' => '6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-iconv',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-mbstring' => array(
|
||||
'pretty_version' => 'v1.18.1',
|
||||
'version' => '1.18.1.0',
|
||||
'reference' => 'a6977d63bf9a0ad4c65cd352709e230876f9904a',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'tijsverkoyen/css-to-inline-styles' => array(
|
||||
'pretty_version' => '2.2.3',
|
||||
'version' => '2.2.3.0',
|
||||
'reference' => 'b43b05cf43c1b6d849478965062b6ef73e223bb5',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../tijsverkoyen/css-to-inline-styles',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'true/punycode' => array(
|
||||
'pretty_version' => 'v2.1.1',
|
||||
'version' => '2.1.1.0',
|
||||
'reference' => 'a4d0c11a36dd7f4e7cd7096076cab6d3378a071e',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../true/punycode',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'woocommerce/action-scheduler' => array(
|
||||
'pretty_version' => '3.4.2',
|
||||
'version' => '3.4.2.0',
|
||||
'reference' => '7d8e830b6387410ccf11708194d3836f01cb2942',
|
||||
'type' => 'wordpress-plugin',
|
||||
'install_path' => __DIR__ . '/../woocommerce/action-scheduler',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
),
|
||||
);
|
26
wp-content/plugins/wpforms-lite/vendor/composer/platform_check.php
vendored
Normal file
26
wp-content/plugins/wpforms-lite/vendor/composer/platform_check.php
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
// platform_check.php @generated by Composer
|
||||
|
||||
$issues = array();
|
||||
|
||||
if (!(PHP_VERSION_ID >= 50303)) {
|
||||
$issues[] = 'Your Composer dependencies require a PHP version ">= 5.3.3". 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;
|
||||
}
|
||||
}
|
||||
trigger_error(
|
||||
'Composer detected issues in your platform: ' . implode(' ', $issues),
|
||||
E_USER_ERROR
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user