Add PSR HTTP Message Interfaces and Dependencies
- Implemented StreamInterface, UploadedFileInterface, and UriInterface as per PSR standards. - Added getallheaders function to retrieve HTTP headers in a compatible manner. - Included LICENSE files for ralouphie/getallheaders and symfony/deprecation-contracts. - Introduced function for triggering deprecation notices in Symfony.
This commit is contained in:
579
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/ClassLoader.php
vendored
Normal file
579
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/ClassLoader.php
vendored
Normal file
@@ -0,0 +1,579 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Composer.
|
||||
*
|
||||
* (c) Nils Adermann <naderman@naderman.de>
|
||||
* Jordi Boggiano <j.boggiano@seld.be>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
/**
|
||||
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
|
||||
*
|
||||
* $loader = new \Composer\Autoload\ClassLoader();
|
||||
*
|
||||
* // register classes with namespaces
|
||||
* $loader->add('Symfony\Component', __DIR__.'/component');
|
||||
* $loader->add('Symfony', __DIR__.'/framework');
|
||||
*
|
||||
* // activate the autoloader
|
||||
* $loader->register();
|
||||
*
|
||||
* // to enable searching the include path (eg. for PEAR packages)
|
||||
* $loader->setUseIncludePath(true);
|
||||
*
|
||||
* In this example, if you try to use a class in the Symfony\Component
|
||||
* namespace or one of its children (Symfony\Component\Console for instance),
|
||||
* the autoloader will first look for the class under the component/
|
||||
* directory, and it will then fallback to the framework/ directory if not
|
||||
* found before giving up.
|
||||
*
|
||||
* This class is loosely based on the Symfony UniversalClassLoader.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
* @author Jordi Boggiano <j.boggiano@seld.be>
|
||||
* @see https://www.php-fig.org/psr/psr-0/
|
||||
* @see https://www.php-fig.org/psr/psr-4/
|
||||
*/
|
||||
class ClassLoader
|
||||
{
|
||||
/** @var \Closure(string):void */
|
||||
private static $includeFile;
|
||||
|
||||
/** @var string|null */
|
||||
private $vendorDir;
|
||||
|
||||
// PSR-4
|
||||
/**
|
||||
* @var array<string, array<string, int>>
|
||||
*/
|
||||
private $prefixLengthsPsr4 = array();
|
||||
/**
|
||||
* @var array<string, list<string>>
|
||||
*/
|
||||
private $prefixDirsPsr4 = array();
|
||||
/**
|
||||
* @var list<string>
|
||||
*/
|
||||
private $fallbackDirsPsr4 = array();
|
||||
|
||||
// PSR-0
|
||||
/**
|
||||
* List of PSR-0 prefixes
|
||||
*
|
||||
* Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
|
||||
*
|
||||
* @var array<string, array<string, list<string>>>
|
||||
*/
|
||||
private $prefixesPsr0 = array();
|
||||
/**
|
||||
* @var list<string>
|
||||
*/
|
||||
private $fallbackDirsPsr0 = array();
|
||||
|
||||
/** @var bool */
|
||||
private $useIncludePath = false;
|
||||
|
||||
/**
|
||||
* @var array<string, string>
|
||||
*/
|
||||
private $classMap = array();
|
||||
|
||||
/** @var bool */
|
||||
private $classMapAuthoritative = false;
|
||||
|
||||
/**
|
||||
* @var array<string, bool>
|
||||
*/
|
||||
private $missingClasses = array();
|
||||
|
||||
/** @var string|null */
|
||||
private $apcuPrefix;
|
||||
|
||||
/**
|
||||
* @var array<string, self>
|
||||
*/
|
||||
private static $registeredLoaders = array();
|
||||
|
||||
/**
|
||||
* @param string|null $vendorDir
|
||||
*/
|
||||
public function __construct($vendorDir = null)
|
||||
{
|
||||
$this->vendorDir = $vendorDir;
|
||||
self::initializeIncludeClosure();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, list<string>>
|
||||
*/
|
||||
public function getPrefixes()
|
||||
{
|
||||
if (!empty($this->prefixesPsr0)) {
|
||||
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
|
||||
}
|
||||
|
||||
return array();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, list<string>>
|
||||
*/
|
||||
public function getPrefixesPsr4()
|
||||
{
|
||||
return $this->prefixDirsPsr4;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return list<string>
|
||||
*/
|
||||
public function getFallbackDirs()
|
||||
{
|
||||
return $this->fallbackDirsPsr0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return list<string>
|
||||
*/
|
||||
public function getFallbackDirsPsr4()
|
||||
{
|
||||
return $this->fallbackDirsPsr4;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, string> Array of classname => path
|
||||
*/
|
||||
public function getClassMap()
|
||||
{
|
||||
return $this->classMap;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, string> $classMap Class to filename map
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function addClassMap(array $classMap)
|
||||
{
|
||||
if ($this->classMap) {
|
||||
$this->classMap = array_merge($this->classMap, $classMap);
|
||||
} else {
|
||||
$this->classMap = $classMap;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-0 directories for a given prefix, either
|
||||
* appending or prepending to the ones previously set for this prefix.
|
||||
*
|
||||
* @param string $prefix The prefix
|
||||
* @param list<string>|string $paths The PSR-0 root directories
|
||||
* @param bool $prepend Whether to prepend the directories
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function add($prefix, $paths, $prepend = false)
|
||||
{
|
||||
$paths = (array) $paths;
|
||||
if (!$prefix) {
|
||||
if ($prepend) {
|
||||
$this->fallbackDirsPsr0 = array_merge(
|
||||
$paths,
|
||||
$this->fallbackDirsPsr0
|
||||
);
|
||||
} else {
|
||||
$this->fallbackDirsPsr0 = array_merge(
|
||||
$this->fallbackDirsPsr0,
|
||||
$paths
|
||||
);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
$first = $prefix[0];
|
||||
if (!isset($this->prefixesPsr0[$first][$prefix])) {
|
||||
$this->prefixesPsr0[$first][$prefix] = $paths;
|
||||
|
||||
return;
|
||||
}
|
||||
if ($prepend) {
|
||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
||||
$paths,
|
||||
$this->prefixesPsr0[$first][$prefix]
|
||||
);
|
||||
} else {
|
||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
||||
$this->prefixesPsr0[$first][$prefix],
|
||||
$paths
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-4 directories for a given namespace, either
|
||||
* appending or prepending to the ones previously set for this namespace.
|
||||
*
|
||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||
* @param list<string>|string $paths The PSR-4 base directories
|
||||
* @param bool $prepend Whether to prepend the directories
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function addPsr4($prefix, $paths, $prepend = false)
|
||||
{
|
||||
$paths = (array) $paths;
|
||||
if (!$prefix) {
|
||||
// Register directories for the root namespace.
|
||||
if ($prepend) {
|
||||
$this->fallbackDirsPsr4 = array_merge(
|
||||
$paths,
|
||||
$this->fallbackDirsPsr4
|
||||
);
|
||||
} else {
|
||||
$this->fallbackDirsPsr4 = array_merge(
|
||||
$this->fallbackDirsPsr4,
|
||||
$paths
|
||||
);
|
||||
}
|
||||
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
|
||||
// Register directories for a new namespace.
|
||||
$length = strlen($prefix);
|
||||
if ('\\' !== $prefix[$length - 1]) {
|
||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
||||
}
|
||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
||||
$this->prefixDirsPsr4[$prefix] = $paths;
|
||||
} elseif ($prepend) {
|
||||
// Prepend directories for an already registered namespace.
|
||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
||||
$paths,
|
||||
$this->prefixDirsPsr4[$prefix]
|
||||
);
|
||||
} else {
|
||||
// Append directories for an already registered namespace.
|
||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
||||
$this->prefixDirsPsr4[$prefix],
|
||||
$paths
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-0 directories for a given prefix,
|
||||
* replacing any others previously set for this prefix.
|
||||
*
|
||||
* @param string $prefix The prefix
|
||||
* @param list<string>|string $paths The PSR-0 base directories
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function set($prefix, $paths)
|
||||
{
|
||||
if (!$prefix) {
|
||||
$this->fallbackDirsPsr0 = (array) $paths;
|
||||
} else {
|
||||
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-4 directories for a given namespace,
|
||||
* replacing any others previously set for this namespace.
|
||||
*
|
||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||
* @param list<string>|string $paths The PSR-4 base directories
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setPsr4($prefix, $paths)
|
||||
{
|
||||
if (!$prefix) {
|
||||
$this->fallbackDirsPsr4 = (array) $paths;
|
||||
} else {
|
||||
$length = strlen($prefix);
|
||||
if ('\\' !== $prefix[$length - 1]) {
|
||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
||||
}
|
||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
||||
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Turns on searching the include path for class files.
|
||||
*
|
||||
* @param bool $useIncludePath
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setUseIncludePath($useIncludePath)
|
||||
{
|
||||
$this->useIncludePath = $useIncludePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* Can be used to check if the autoloader uses the include path to check
|
||||
* for classes.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function getUseIncludePath()
|
||||
{
|
||||
return $this->useIncludePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* Turns off searching the prefix and fallback directories for classes
|
||||
* that have not been registered with the class map.
|
||||
*
|
||||
* @param bool $classMapAuthoritative
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setClassMapAuthoritative($classMapAuthoritative)
|
||||
{
|
||||
$this->classMapAuthoritative = $classMapAuthoritative;
|
||||
}
|
||||
|
||||
/**
|
||||
* Should class lookup fail if not found in the current class map?
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isClassMapAuthoritative()
|
||||
{
|
||||
return $this->classMapAuthoritative;
|
||||
}
|
||||
|
||||
/**
|
||||
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
|
||||
*
|
||||
* @param string|null $apcuPrefix
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setApcuPrefix($apcuPrefix)
|
||||
{
|
||||
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* The APCu prefix in use, or null if APCu caching is not enabled.
|
||||
*
|
||||
* @return string|null
|
||||
*/
|
||||
public function getApcuPrefix()
|
||||
{
|
||||
return $this->apcuPrefix;
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers this instance as an autoloader.
|
||||
*
|
||||
* @param bool $prepend Whether to prepend the autoloader or not
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register($prepend = false)
|
||||
{
|
||||
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
||||
|
||||
if (null === $this->vendorDir) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($prepend) {
|
||||
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
|
||||
} else {
|
||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
||||
self::$registeredLoaders[$this->vendorDir] = $this;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters this instance as an autoloader.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function unregister()
|
||||
{
|
||||
spl_autoload_unregister(array($this, 'loadClass'));
|
||||
|
||||
if (null !== $this->vendorDir) {
|
||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the given class or interface.
|
||||
*
|
||||
* @param string $class The name of the class
|
||||
* @return true|null True if loaded, null otherwise
|
||||
*/
|
||||
public function loadClass($class)
|
||||
{
|
||||
if ($file = $this->findFile($class)) {
|
||||
$includeFile = self::$includeFile;
|
||||
$includeFile($file);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds the path to the file where the class is defined.
|
||||
*
|
||||
* @param string $class The name of the class
|
||||
*
|
||||
* @return string|false The path if found, false otherwise
|
||||
*/
|
||||
public function findFile($class)
|
||||
{
|
||||
// class map lookup
|
||||
if (isset($this->classMap[$class])) {
|
||||
return $this->classMap[$class];
|
||||
}
|
||||
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
|
||||
return false;
|
||||
}
|
||||
if (null !== $this->apcuPrefix) {
|
||||
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
|
||||
if ($hit) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
$file = $this->findFileWithExtension($class, '.php');
|
||||
|
||||
// Search for Hack files if we are running on HHVM
|
||||
if (false === $file && defined('HHVM_VERSION')) {
|
||||
$file = $this->findFileWithExtension($class, '.hh');
|
||||
}
|
||||
|
||||
if (null !== $this->apcuPrefix) {
|
||||
apcu_add($this->apcuPrefix.$class, $file);
|
||||
}
|
||||
|
||||
if (false === $file) {
|
||||
// Remember that this class does not exist.
|
||||
$this->missingClasses[$class] = true;
|
||||
}
|
||||
|
||||
return $file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the currently registered loaders keyed by their corresponding vendor directories.
|
||||
*
|
||||
* @return array<string, self>
|
||||
*/
|
||||
public static function getRegisteredLoaders()
|
||||
{
|
||||
return self::$registeredLoaders;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $class
|
||||
* @param string $ext
|
||||
* @return string|false
|
||||
*/
|
||||
private function findFileWithExtension($class, $ext)
|
||||
{
|
||||
// PSR-4 lookup
|
||||
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
|
||||
|
||||
$first = $class[0];
|
||||
if (isset($this->prefixLengthsPsr4[$first])) {
|
||||
$subPath = $class;
|
||||
while (false !== $lastPos = strrpos($subPath, '\\')) {
|
||||
$subPath = substr($subPath, 0, $lastPos);
|
||||
$search = $subPath . '\\';
|
||||
if (isset($this->prefixDirsPsr4[$search])) {
|
||||
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
|
||||
foreach ($this->prefixDirsPsr4[$search] as $dir) {
|
||||
if (file_exists($file = $dir . $pathEnd)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-4 fallback dirs
|
||||
foreach ($this->fallbackDirsPsr4 as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 lookup
|
||||
if (false !== $pos = strrpos($class, '\\')) {
|
||||
// namespaced class name
|
||||
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
|
||||
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
|
||||
} else {
|
||||
// PEAR-like class name
|
||||
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
|
||||
}
|
||||
|
||||
if (isset($this->prefixesPsr0[$first])) {
|
||||
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
|
||||
if (0 === strpos($class, $prefix)) {
|
||||
foreach ($dirs as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 fallback dirs
|
||||
foreach ($this->fallbackDirsPsr0 as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 include paths.
|
||||
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
private static function initializeIncludeClosure()
|
||||
{
|
||||
if (self::$includeFile !== null) {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Scope isolated include.
|
||||
*
|
||||
* Prevents access to $this/self from included files.
|
||||
*
|
||||
* @param string $file
|
||||
* @return void
|
||||
*/
|
||||
self::$includeFile = \Closure::bind(static function($file) {
|
||||
include $file;
|
||||
}, null, null);
|
||||
}
|
||||
}
|
||||
359
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/InstalledVersions.php
vendored
Normal file
359
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/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/autopoly-ai-translation-for-polylang-pro/vendor/composer/LICENSE
vendored
Normal file
21
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/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.
|
||||
|
||||
270
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/autoload_classmap.php
vendored
Normal file
270
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/autoload_classmap.php
vendored
Normal file
@@ -0,0 +1,270 @@
|
||||
<?php
|
||||
|
||||
// autoload_classmap.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
||||
'ATFPP\\AI_Translate\\Deepl\\Deepl_AI_API_Client' => $baseDir . '/includes/ai-translate/Deepl/Deepl_AI_API_Client.php',
|
||||
'ATFPP\\AI_Translate\\Deepl\\Deepl_AI_Service' => $baseDir . '/includes/ai-translate/Deepl/Deepl_AI_Service.php',
|
||||
'ATFPP\\AI_Translate\\Deepl\\Deepl_AI_Text_Generation_Model' => $baseDir . '/includes/ai-translate/Deepl/Deepl_AI_Text_Generation_Model.php',
|
||||
'ATFPP\\AI_Translate\\Google\\Google_AI_API_Client' => $baseDir . '/includes/ai-translate/Google/Google_AI_API_Client.php',
|
||||
'ATFPP\\AI_Translate\\Google\\Google_AI_Service' => $baseDir . '/includes/ai-translate/Google/Google_AI_Service.php',
|
||||
'ATFPP\\AI_Translate\\Google\\Google_AI_Text_Generation_Model' => $baseDir . '/includes/ai-translate/Google/Google_AI_Text_Generation_Model.php',
|
||||
'ATFPP\\AI_Translate\\Google\\Types\\Safety_Setting' => $baseDir . '/includes/ai-translate/Google/Types/Safety_Setting.php',
|
||||
'ATFPP\\AI_Translate\\OpenAI\\OpenAI_AI_Service' => $baseDir . '/includes/ai-translate/OpenAI/OpenAI_AI_Service.php',
|
||||
'ATFPP\\AI_Translate\\OpenAI\\OpenAI_AI_Text_Generation_Model' => $baseDir . '/includes/ai-translate/OpenAI/OpenAI_AI_Text_Generation_Model.php',
|
||||
'ATFPP\\AI_Translate\\Plugin_Main' => $baseDir . '/includes/ai-translate/Plugin_Main.php',
|
||||
'ATFPP\\AI_Translate\\Plugin_Service_Container_Builder' => $baseDir . '/includes/ai-translate/Plugin_Service_Container_Builder.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Candidates_Stream_Processor' => $baseDir . '/includes/ai-translate/Services/API/Candidates_Stream_Processor.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Enums\\AI_Capability' => $baseDir . '/includes/ai-translate/Services/API/Enums/AI_Capability.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Enums\\Abstract_Enum' => $baseDir . '/includes/ai-translate/Services/API/Enums/Abstract_Enum.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Enums\\Content_Role' => $baseDir . '/includes/ai-translate/Services/API/Enums/Content_Role.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Enums\\Contracts\\Enum' => $baseDir . '/includes/ai-translate/Services/API/Enums/Contracts/Enum.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Enums\\Modality' => $baseDir . '/includes/ai-translate/Services/API/Enums/Modality.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Enums\\Service_Type' => $baseDir . '/includes/ai-translate/Services/API/Enums/Service_Type.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Helpers' => $baseDir . '/includes/ai-translate/Services/API/Helpers.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Blob' => $baseDir . '/includes/ai-translate/Services/API/Types/Blob.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Candidate' => $baseDir . '/includes/ai-translate/Services/API/Types/Candidate.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Candidates' => $baseDir . '/includes/ai-translate/Services/API/Types/Candidates.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Content' => $baseDir . '/includes/ai-translate/Services/API/Types/Content.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Contracts\\Part' => $baseDir . '/includes/ai-translate/Services/API/Types/Contracts/Part.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Contracts\\Tool' => $baseDir . '/includes/ai-translate/Services/API/Types/Contracts/Tool.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\History' => $baseDir . '/includes/ai-translate/Services/API/Types/History.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\History_Entry' => $baseDir . '/includes/ai-translate/Services/API/Types/History_Entry.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Model_Metadata' => $baseDir . '/includes/ai-translate/Services/API/Types/Model_Metadata.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Parts' => $baseDir . '/includes/ai-translate/Services/API/Types/Parts.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Parts\\Abstract_Part' => $baseDir . '/includes/ai-translate/Services/API/Types/Parts/Abstract_Part.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Parts\\Function_Call_Part' => $baseDir . '/includes/ai-translate/Services/API/Types/Parts/Function_Call_Part.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Parts\\Function_Response_Part' => $baseDir . '/includes/ai-translate/Services/API/Types/Parts/Function_Response_Part.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Parts\\Text_Part' => $baseDir . '/includes/ai-translate/Services/API/Types/Parts/Text_Part.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Service_Metadata' => $baseDir . '/includes/ai-translate/Services/API/Types/Service_Metadata.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Text_Generation_Config' => $baseDir . '/includes/ai-translate/Services/API/Types/Text_Generation_Config.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Tool_Config' => $baseDir . '/includes/ai-translate/Services/API/Types/Tool_Config.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Tools' => $baseDir . '/includes/ai-translate/Services/API/Types/Tools.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Tools\\Abstract_Tool' => $baseDir . '/includes/ai-translate/Services/API/Types/Tools/Abstract_Tool.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Tools\\Function_Declarations_Tool' => $baseDir . '/includes/ai-translate/Services/API/Types/Tools/Function_Declarations_Tool.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Tools\\Web_Search_Tool' => $baseDir . '/includes/ai-translate/Services/API/Types/Tools/Web_Search_Tool.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Authentication\\API_Key_Authentication' => $baseDir . '/includes/ai-translate/Services/Authentication/API_Key_Authentication.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Base\\Abstract_AI_Model' => $baseDir . '/includes/ai-translate/Services/Base/Abstract_AI_Model.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Base\\Abstract_AI_Service' => $baseDir . '/includes/ai-translate/Services/Base/Abstract_AI_Service.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Base\\Abstract_Generation_Config' => $baseDir . '/includes/ai-translate/Services/Base/Abstract_Generation_Config.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Base\\Generic_AI_API_Client' => $baseDir . '/includes/ai-translate/Services/Base/Generic_AI_API_Client.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Base\\OpenAI_Compatible_AI_Text_Generation_Model' => $baseDir . '/includes/ai-translate/Services/Base/OpenAI_Compatible_AI_Text_Generation_Model.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Cache\\Service_Request_Cache' => $baseDir . '/includes/ai-translate/Services/Cache/Service_Request_Cache.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\Authentication' => $baseDir . '/includes/ai-translate/Services/Contracts/Authentication.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\Generation_Config' => $baseDir . '/includes/ai-translate/Services/Contracts/Generation_Config.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\Generative_AI_API_Client' => $baseDir . '/includes/ai-translate/Services/Contracts/Generative_AI_API_Client.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\Generative_AI_Model' => $baseDir . '/includes/ai-translate/Services/Contracts/Generative_AI_Model.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\Generative_AI_Service' => $baseDir . '/includes/ai-translate/Services/Contracts/Generative_AI_Service.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_API_Client' => $baseDir . '/includes/ai-translate/Services/Contracts/With_API_Client.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_Function_Calling' => $baseDir . '/includes/ai-translate/Services/Contracts/With_Function_Calling.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_JSON_Schema' => $baseDir . '/includes/ai-translate/Services/Contracts/With_JSON_Schema.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_Multimodal_Input' => $baseDir . '/includes/ai-translate/Services/Contracts/With_Multimodal_Input.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_Multimodal_Output' => $baseDir . '/includes/ai-translate/Services/Contracts/With_Multimodal_Output.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_Text_Generation' => $baseDir . '/includes/ai-translate/Services/Contracts/With_Text_Generation.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_Web_Search' => $baseDir . '/includes/ai-translate/Services/Contracts/With_Web_Search.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Decorators\\AI_Service_Decorator' => $baseDir . '/includes/ai-translate/Services/Decorators/AI_Service_Decorator.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Exception\\Generative_AI_Exception' => $baseDir . '/includes/ai-translate/Services/Exception/Generative_AI_Exception.php',
|
||||
'ATFPP\\AI_Translate\\Services\\HTTP\\Contracts\\Stream_Request_Handler' => $baseDir . '/includes/ai-translate/Services/HTTP/Contracts/Stream_Request_Handler.php',
|
||||
'ATFPP\\AI_Translate\\Services\\HTTP\\Contracts\\With_Stream' => $baseDir . '/includes/ai-translate/Services/HTTP/Contracts/With_Stream.php',
|
||||
'ATFPP\\AI_Translate\\Services\\HTTP\\HTTP_With_Streams' => $baseDir . '/includes/ai-translate/Services/HTTP/HTTP_With_Streams.php',
|
||||
'ATFPP\\AI_Translate\\Services\\HTTP\\Stream_Response' => $baseDir . '/includes/ai-translate/Services/HTTP/Stream_Response.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Options\\Option_Encrypter' => $baseDir . '/includes/ai-translate/Services/Options/Option_Encrypter.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Service_Registration' => $baseDir . '/includes/ai-translate/Services/Service_Registration.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Service_Registration_Context' => $baseDir . '/includes/ai-translate/Services/Service_Registration_Context.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Services_API' => $baseDir . '/includes/ai-translate/Services/Services_API.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Services_API_Instance' => $baseDir . '/includes/ai-translate/Services/Services_API_Instance.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Services_Loader' => $baseDir . '/includes/ai-translate/Services/Services_Loader.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Services_Service_Container_Builder' => $baseDir . '/includes/ai-translate/Services/Services_Service_Container_Builder.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\Generative_AI_API_Client_Trait' => $baseDir . '/includes/ai-translate/Services/Traits/Generative_AI_API_Client_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\Model_Param_System_Instruction_Trait' => $baseDir . '/includes/ai-translate/Services/Traits/Model_Param_System_Instruction_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\Model_Param_Text_Generation_Config_Trait' => $baseDir . '/includes/ai-translate/Services/Traits/Model_Param_Text_Generation_Config_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\Model_Param_Tool_Config_Trait' => $baseDir . '/includes/ai-translate/Services/Traits/Model_Param_Tool_Config_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\Model_Param_Tools_Trait' => $baseDir . '/includes/ai-translate/Services/Traits/Model_Param_Tools_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\OpenAI_Compatible_Text_Generation_With_Function_Calling_Trait' => $baseDir . '/includes/ai-translate/Services/Traits/OpenAI_Compatible_Text_Generation_With_Function_Calling_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\With_API_Client_Trait' => $baseDir . '/includes/ai-translate/Services/Traits/With_API_Client_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\With_Text_Generation_Trait' => $baseDir . '/includes/ai-translate/Services/Traits/With_Text_Generation_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Util\\AI_Capabilities' => $baseDir . '/includes/ai-translate/Services/Util/AI_Capabilities.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Util\\Data_Encryption' => $baseDir . '/includes/ai-translate/Services/Util/Data_Encryption.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Util\\Formatter' => $baseDir . '/includes/ai-translate/Services/Util/Formatter.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Util\\Strings' => $baseDir . '/includes/ai-translate/Services/Util/Strings.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Util\\Transformer' => $baseDir . '/includes/ai-translate/Services/Util/Transformer.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Abstract_Capability' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Abstract_Capability.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Base_Capability' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Base_Capability.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Capability_Container' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Capability_Container.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Capability_Controller' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Capability_Controller.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Capability_Filters' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Capability_Filters.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Contracts\\Capability' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Contracts/Capability.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Meta_Capability' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Meta_Capability.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Array_Key_Value_Repository' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Array_Key_Value_Repository.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Array_Registry' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Array_Registry.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Arrayable' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Arrayable.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Collection' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Collection.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Container' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Container.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Container_Readonly' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Container_Readonly.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Hook_Registrar' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Hook_Registrar.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Key_Value' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Key_Value.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Key_Value_Repository' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Key_Value_Repository.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Registry' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Registry.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\With_Capabilities' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/With_Capabilities.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\With_Hooks' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/With_Hooks.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\With_Key' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/With_Key.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\With_Registration_Args' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/With_Registration_Args.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Current_User' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Current_User.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Exception\\Invalid_Type_Exception' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Exception/Invalid_Type_Exception.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Exception\\Not_Found_Exception' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Exception/Not_Found_Exception.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Exception\\WP_Error_Exception' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Exception/WP_Error_Exception.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Generic_Key_Value' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Generic_Key_Value.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Input' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Input.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Mutable_Input' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Mutable_Input.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Network_Env' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Network_Env.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Network_Runner' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Network_Runner.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Plugin_Env' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Plugin_Env.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Service_Container' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Service_Container.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Site_Env' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Site_Env.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Traits\\Cast_Value_By_Type' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Traits/Cast_Value_By_Type.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Traits\\Maybe_Throw' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/General/Traits/Maybe_Throw.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Contracts\\Request' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Contracts/Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Contracts\\Request_Handler' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Contracts/Request_Handler.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Contracts\\Response' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Contracts/Response.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Delete_Request' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Delete_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Exception\\Multiple_Requests_Exception' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Exception/Multiple_Requests_Exception.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Exception\\Request_Exception' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Exception/Request_Exception.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Generic_Request' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Generic_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Generic_Response' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Generic_Response.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Get_Request' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Get_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\HTTP' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/HTTP.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\JSON_Patch_Request' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/JSON_Patch_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\JSON_Post_Request' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/JSON_Post_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\JSON_Put_Request' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/JSON_Put_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\JSON_Request' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/JSON_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\JSON_Response' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/JSON_Response.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Patch_Request' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Patch_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Post_Request' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Post_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Put_Request' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Put_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Traits\\Sanitize_Headers' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Traits/Sanitize_Headers.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Abstract_Entity_Key_Value' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Meta/Abstract_Entity_Key_Value.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Contracts\\Entity_Key_Value' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Meta/Contracts/Entity_Key_Value.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Contracts\\Entity_Key_Value_Repository' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Meta/Contracts/Entity_Key_Value_Repository.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Contracts\\With_Entity_ID' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Meta/Contracts/With_Entity_ID.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Contracts\\With_Single' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Meta/Contracts/With_Single.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Entity_Aware_Meta_Container' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Meta/Entity_Aware_Meta_Container.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Entity_Aware_Meta_Key' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Meta/Entity_Aware_Meta_Key.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Meta_Container' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Meta/Meta_Container.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Meta_Hook_Registrar' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Meta/Meta_Hook_Registrar.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Meta_Key' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Meta/Meta_Key.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Meta_Registry' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Meta/Meta_Registry.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Meta_Repository' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Meta/Meta_Repository.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Options\\Contracts\\With_Autoload_Config' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Options/Contracts/With_Autoload_Config.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Options\\Option' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Options/Option.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Options\\Option_Container' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Options/Option_Container.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Options\\Option_Hook_Registrar' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Options/Option_Hook_Registrar.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Options\\Option_Registry' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Options/Option_Registry.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Options\\Option_Repository' => $vendorDir . '/felixarntz/wp-oop-plugin-lib/src/Options/Option_Repository.php',
|
||||
'GuzzleHttp\\BodySummarizer' => $vendorDir . '/guzzlehttp/guzzle/src/BodySummarizer.php',
|
||||
'GuzzleHttp\\BodySummarizerInterface' => $vendorDir . '/guzzlehttp/guzzle/src/BodySummarizerInterface.php',
|
||||
'GuzzleHttp\\Client' => $vendorDir . '/guzzlehttp/guzzle/src/Client.php',
|
||||
'GuzzleHttp\\ClientInterface' => $vendorDir . '/guzzlehttp/guzzle/src/ClientInterface.php',
|
||||
'GuzzleHttp\\ClientTrait' => $vendorDir . '/guzzlehttp/guzzle/src/ClientTrait.php',
|
||||
'GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
|
||||
'GuzzleHttp\\Cookie\\CookieJarInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',
|
||||
'GuzzleHttp\\Cookie\\FileCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',
|
||||
'GuzzleHttp\\Cookie\\SessionCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',
|
||||
'GuzzleHttp\\Cookie\\SetCookie' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php',
|
||||
'GuzzleHttp\\Exception\\BadResponseException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php',
|
||||
'GuzzleHttp\\Exception\\ClientException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ClientException.php',
|
||||
'GuzzleHttp\\Exception\\ConnectException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ConnectException.php',
|
||||
'GuzzleHttp\\Exception\\GuzzleException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php',
|
||||
'GuzzleHttp\\Exception\\InvalidArgumentException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',
|
||||
'GuzzleHttp\\Exception\\RequestException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/RequestException.php',
|
||||
'GuzzleHttp\\Exception\\ServerException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ServerException.php',
|
||||
'GuzzleHttp\\Exception\\TooManyRedirectsException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',
|
||||
'GuzzleHttp\\Exception\\TransferException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TransferException.php',
|
||||
'GuzzleHttp\\HandlerStack' => $vendorDir . '/guzzlehttp/guzzle/src/HandlerStack.php',
|
||||
'GuzzleHttp\\Handler\\CurlFactory' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php',
|
||||
'GuzzleHttp\\Handler\\CurlFactoryInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',
|
||||
'GuzzleHttp\\Handler\\CurlHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php',
|
||||
'GuzzleHttp\\Handler\\CurlMultiHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',
|
||||
'GuzzleHttp\\Handler\\EasyHandle' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php',
|
||||
'GuzzleHttp\\Handler\\HeaderProcessor' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php',
|
||||
'GuzzleHttp\\Handler\\MockHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/MockHandler.php',
|
||||
'GuzzleHttp\\Handler\\Proxy' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/Proxy.php',
|
||||
'GuzzleHttp\\Handler\\StreamHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php',
|
||||
'GuzzleHttp\\MessageFormatter' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatter.php',
|
||||
'GuzzleHttp\\MessageFormatterInterface' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatterInterface.php',
|
||||
'GuzzleHttp\\Middleware' => $vendorDir . '/guzzlehttp/guzzle/src/Middleware.php',
|
||||
'GuzzleHttp\\Pool' => $vendorDir . '/guzzlehttp/guzzle/src/Pool.php',
|
||||
'GuzzleHttp\\PrepareBodyMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',
|
||||
'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php',
|
||||
'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php',
|
||||
'GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/guzzlehttp/promises/src/Coroutine.php',
|
||||
'GuzzleHttp\\Promise\\Create' => $vendorDir . '/guzzlehttp/promises/src/Create.php',
|
||||
'GuzzleHttp\\Promise\\Each' => $vendorDir . '/guzzlehttp/promises/src/Each.php',
|
||||
'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php',
|
||||
'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php',
|
||||
'GuzzleHttp\\Promise\\Is' => $vendorDir . '/guzzlehttp/promises/src/Is.php',
|
||||
'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php',
|
||||
'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php',
|
||||
'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php',
|
||||
'GuzzleHttp\\Promise\\RejectedPromise' => $vendorDir . '/guzzlehttp/promises/src/RejectedPromise.php',
|
||||
'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php',
|
||||
'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php',
|
||||
'GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/guzzlehttp/promises/src/TaskQueueInterface.php',
|
||||
'GuzzleHttp\\Promise\\Utils' => $vendorDir . '/guzzlehttp/promises/src/Utils.php',
|
||||
'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php',
|
||||
'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php',
|
||||
'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php',
|
||||
'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php',
|
||||
'GuzzleHttp\\Psr7\\Exception\\MalformedUriException' => $vendorDir . '/guzzlehttp/psr7/src/Exception/MalformedUriException.php',
|
||||
'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php',
|
||||
'GuzzleHttp\\Psr7\\Header' => $vendorDir . '/guzzlehttp/psr7/src/Header.php',
|
||||
'GuzzleHttp\\Psr7\\HttpFactory' => $vendorDir . '/guzzlehttp/psr7/src/HttpFactory.php',
|
||||
'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php',
|
||||
'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php',
|
||||
'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php',
|
||||
'GuzzleHttp\\Psr7\\Message' => $vendorDir . '/guzzlehttp/psr7/src/Message.php',
|
||||
'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php',
|
||||
'GuzzleHttp\\Psr7\\MimeType' => $vendorDir . '/guzzlehttp/psr7/src/MimeType.php',
|
||||
'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php',
|
||||
'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php',
|
||||
'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php',
|
||||
'GuzzleHttp\\Psr7\\Query' => $vendorDir . '/guzzlehttp/psr7/src/Query.php',
|
||||
'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php',
|
||||
'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php',
|
||||
'GuzzleHttp\\Psr7\\Rfc7230' => $vendorDir . '/guzzlehttp/psr7/src/Rfc7230.php',
|
||||
'GuzzleHttp\\Psr7\\ServerRequest' => $vendorDir . '/guzzlehttp/psr7/src/ServerRequest.php',
|
||||
'GuzzleHttp\\Psr7\\Stream' => $vendorDir . '/guzzlehttp/psr7/src/Stream.php',
|
||||
'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => $vendorDir . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
|
||||
'GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php',
|
||||
'GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php',
|
||||
'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php',
|
||||
'GuzzleHttp\\Psr7\\UriComparator' => $vendorDir . '/guzzlehttp/psr7/src/UriComparator.php',
|
||||
'GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php',
|
||||
'GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php',
|
||||
'GuzzleHttp\\Psr7\\Utils' => $vendorDir . '/guzzlehttp/psr7/src/Utils.php',
|
||||
'GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
|
||||
'GuzzleHttp\\RequestOptions' => $vendorDir . '/guzzlehttp/guzzle/src/RequestOptions.php',
|
||||
'GuzzleHttp\\RetryMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
|
||||
'GuzzleHttp\\TransferStats' => $vendorDir . '/guzzlehttp/guzzle/src/TransferStats.php',
|
||||
'GuzzleHttp\\Utils' => $vendorDir . '/guzzlehttp/guzzle/src/Utils.php',
|
||||
'Psr\\Http\\Client\\ClientExceptionInterface' => $vendorDir . '/psr/http-client/src/ClientExceptionInterface.php',
|
||||
'Psr\\Http\\Client\\ClientInterface' => $vendorDir . '/psr/http-client/src/ClientInterface.php',
|
||||
'Psr\\Http\\Client\\NetworkExceptionInterface' => $vendorDir . '/psr/http-client/src/NetworkExceptionInterface.php',
|
||||
'Psr\\Http\\Client\\RequestExceptionInterface' => $vendorDir . '/psr/http-client/src/RequestExceptionInterface.php',
|
||||
'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php',
|
||||
'Psr\\Http\\Message\\RequestFactoryInterface' => $vendorDir . '/psr/http-factory/src/RequestFactoryInterface.php',
|
||||
'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php',
|
||||
'Psr\\Http\\Message\\ResponseFactoryInterface' => $vendorDir . '/psr/http-factory/src/ResponseFactoryInterface.php',
|
||||
'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php',
|
||||
'Psr\\Http\\Message\\ServerRequestFactoryInterface' => $vendorDir . '/psr/http-factory/src/ServerRequestFactoryInterface.php',
|
||||
'Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php',
|
||||
'Psr\\Http\\Message\\StreamFactoryInterface' => $vendorDir . '/psr/http-factory/src/StreamFactoryInterface.php',
|
||||
'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php',
|
||||
'Psr\\Http\\Message\\UploadedFileFactoryInterface' => $vendorDir . '/psr/http-factory/src/UploadedFileFactoryInterface.php',
|
||||
'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php',
|
||||
'Psr\\Http\\Message\\UriFactoryInterface' => $vendorDir . '/psr/http-factory/src/UriFactoryInterface.php',
|
||||
'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php',
|
||||
);
|
||||
12
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/autoload_files.php
vendored
Normal file
12
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/autoload_files.php
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
// autoload_files.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
|
||||
'6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
|
||||
'37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
|
||||
);
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
// autoload_namespaces.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
);
|
||||
17
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/autoload_psr4.php
vendored
Normal file
17
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/autoload_psr4.php
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
// autoload_psr4.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-factory/src', $vendorDir . '/psr/http-message/src'),
|
||||
'Psr\\Http\\Client\\' => array($vendorDir . '/psr/http-client/src'),
|
||||
'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
|
||||
'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'),
|
||||
'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'),
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\' => array($vendorDir . '/felixarntz/wp-oop-plugin-lib/src'),
|
||||
'ATFPP\\AI_Translate\\PHPUnit\\Includes\\' => array($baseDir . '/tests/phpunit/includes'),
|
||||
'ATFPP\\AI_Translate\\' => array($baseDir . '/includes'),
|
||||
);
|
||||
51
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/autoload_real.php
vendored
Normal file
51
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/autoload_real.php
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
// autoload_real.php @generated by Composer
|
||||
|
||||
class ComposerAutoloaderInitef786e44e6598dfaf0500750ff2a09f1
|
||||
{
|
||||
private static $loader;
|
||||
|
||||
public static function loadClassLoader($class)
|
||||
{
|
||||
if ('Composer\Autoload\ClassLoader' === $class) {
|
||||
require __DIR__ . '/ClassLoader.php';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Composer\Autoload\ClassLoader
|
||||
*/
|
||||
public static function getLoader()
|
||||
{
|
||||
if (null !== self::$loader) {
|
||||
return self::$loader;
|
||||
}
|
||||
|
||||
require __DIR__ . '/platform_check.php';
|
||||
|
||||
spl_autoload_register(array('ComposerAutoloaderInitef786e44e6598dfaf0500750ff2a09f1', 'loadClassLoader'), true, true);
|
||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInitef786e44e6598dfaf0500750ff2a09f1', 'loadClassLoader'));
|
||||
|
||||
require __DIR__ . '/autoload_static.php';
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInitef786e44e6598dfaf0500750ff2a09f1::getInitializer($loader));
|
||||
|
||||
$loader->setClassMapAuthoritative(true);
|
||||
$loader->register(true);
|
||||
|
||||
$filesToLoad = \Composer\Autoload\ComposerStaticInitef786e44e6598dfaf0500750ff2a09f1::$files;
|
||||
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
|
||||
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
||||
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
||||
|
||||
require $file;
|
||||
}
|
||||
}, null, null);
|
||||
foreach ($filesToLoad as $fileIdentifier => $file) {
|
||||
$requireFile($fileIdentifier, $file);
|
||||
}
|
||||
|
||||
return $loader;
|
||||
}
|
||||
}
|
||||
344
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/autoload_static.php
vendored
Normal file
344
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/autoload_static.php
vendored
Normal file
@@ -0,0 +1,344 @@
|
||||
<?php
|
||||
|
||||
// autoload_static.php @generated by Composer
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
class ComposerStaticInitef786e44e6598dfaf0500750ff2a09f1
|
||||
{
|
||||
public static $files = array (
|
||||
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
|
||||
'6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
|
||||
'37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
|
||||
);
|
||||
|
||||
public static $prefixLengthsPsr4 = array (
|
||||
'P' =>
|
||||
array (
|
||||
'Psr\\Http\\Message\\' => 17,
|
||||
'Psr\\Http\\Client\\' => 16,
|
||||
),
|
||||
'G' =>
|
||||
array (
|
||||
'GuzzleHttp\\Psr7\\' => 16,
|
||||
'GuzzleHttp\\Promise\\' => 19,
|
||||
'GuzzleHttp\\' => 11,
|
||||
),
|
||||
'F' =>
|
||||
array (
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\' => 30,
|
||||
'ATFPP\\AI_Translate\\PHPUnit\\Includes\\' => 41,
|
||||
'ATFPP\\AI_Translate\\' => 24,
|
||||
),
|
||||
);
|
||||
|
||||
public static $prefixDirsPsr4 = array (
|
||||
'Psr\\Http\\Message\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/psr/http-factory/src',
|
||||
1 => __DIR__ . '/..' . '/psr/http-message/src',
|
||||
),
|
||||
'Psr\\Http\\Client\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/psr/http-client/src',
|
||||
),
|
||||
'GuzzleHttp\\Psr7\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src',
|
||||
),
|
||||
'GuzzleHttp\\Promise\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/guzzlehttp/promises/src',
|
||||
),
|
||||
'GuzzleHttp\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src',
|
||||
),
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src',
|
||||
),
|
||||
'ATFPP\\AI_Translate\\PHPUnit\\Includes\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/../..' . '/tests/phpunit/includes',
|
||||
),
|
||||
'ATFPP\\AI_Translate\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/../..' . '/includes',
|
||||
),
|
||||
);
|
||||
|
||||
public static $classMap = array (
|
||||
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
||||
'ATFPP\\AI_Translate\\Deepl\\Deepl_AI_API_Client' => __DIR__ . '/../..' . '/includes/ai-translate/Deepl/Deepl_AI_API_Client.php',
|
||||
'ATFPP\\AI_Translate\\Deepl\\Deepl_AI_Service' => __DIR__ . '/../..' . '/includes/ai-translate/Deepl/Deepl_AI_Service.php',
|
||||
'ATFPP\\AI_Translate\\Deepl\\Deepl_AI_Text_Generation_Model' => __DIR__ . '/../..' . '/includes/ai-translate/Deepl/Deepl_AI_Text_Generation_Model.php',
|
||||
'ATFPP\\AI_Translate\\Google\\Google_AI_API_Client' => __DIR__ . '/../..' . '/includes/ai-translate/Google/Google_AI_API_Client.php',
|
||||
'ATFPP\\AI_Translate\\Google\\Google_AI_Service' => __DIR__ . '/../..' . '/includes/ai-translate/Google/Google_AI_Service.php',
|
||||
'ATFPP\\AI_Translate\\Google\\Google_AI_Text_Generation_Model' => __DIR__ . '/../..' . '/includes/ai-translate/Google/Google_AI_Text_Generation_Model.php',
|
||||
'ATFPP\\AI_Translate\\Google\\Types\\Safety_Setting' => __DIR__ . '/../..' . '/includes/ai-translate/Google/Types/Safety_Setting.php',
|
||||
'ATFPP\\AI_Translate\\OpenAI\\OpenAI_AI_Service' => __DIR__ . '/../..' . '/includes/ai-translate/OpenAI/OpenAI_AI_Service.php',
|
||||
'ATFPP\\AI_Translate\\OpenAI\\OpenAI_AI_Text_Generation_Model' => __DIR__ . '/../..' . '/includes/ai-translate/OpenAI/OpenAI_AI_Text_Generation_Model.php',
|
||||
'ATFPP\\AI_Translate\\Plugin_Main' => __DIR__ . '/../..' . '/includes/ai-translate/Plugin_Main.php',
|
||||
'ATFPP\\AI_Translate\\Plugin_Service_Container_Builder' => __DIR__ . '/../..' . '/includes/ai-translate/Plugin_Service_Container_Builder.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Candidates_Stream_Processor' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Candidates_Stream_Processor.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Enums\\AI_Capability' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Enums/AI_Capability.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Enums\\Abstract_Enum' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Enums/Abstract_Enum.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Enums\\Content_Role' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Enums/Content_Role.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Enums\\Contracts\\Enum' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Enums/Contracts/Enum.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Enums\\Modality' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Enums/Modality.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Enums\\Service_Type' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Enums/Service_Type.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Helpers' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Helpers.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Blob' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Blob.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Candidate' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Candidate.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Candidates' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Candidates.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Content' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Content.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Contracts\\Part' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Contracts/Part.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Contracts\\Tool' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Contracts/Tool.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\History' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/History.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\History_Entry' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/History_Entry.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Model_Metadata' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Model_Metadata.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Parts' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Parts.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Parts\\Abstract_Part' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Parts/Abstract_Part.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Parts\\Function_Call_Part' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Parts/Function_Call_Part.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Parts\\Function_Response_Part' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Parts/Function_Response_Part.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Parts\\Text_Part' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Parts/Text_Part.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Service_Metadata' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Service_Metadata.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Text_Generation_Config' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Text_Generation_Config.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Tool_Config' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Tool_Config.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Tools' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Tools.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Tools\\Abstract_Tool' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Tools/Abstract_Tool.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Tools\\Function_Declarations_Tool' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Tools/Function_Declarations_Tool.php',
|
||||
'ATFPP\\AI_Translate\\Services\\API\\Types\\Tools\\Web_Search_Tool' => __DIR__ . '/../..' . '/includes/ai-translate/Services/API/Types/Tools/Web_Search_Tool.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Authentication\\API_Key_Authentication' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Authentication/API_Key_Authentication.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Base\\Abstract_AI_Model' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Base/Abstract_AI_Model.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Base\\Abstract_AI_Service' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Base/Abstract_AI_Service.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Base\\Abstract_Generation_Config' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Base/Abstract_Generation_Config.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Base\\Generic_AI_API_Client' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Base/Generic_AI_API_Client.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Base\\OpenAI_Compatible_AI_Text_Generation_Model' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Base/OpenAI_Compatible_AI_Text_Generation_Model.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Cache\\Service_Request_Cache' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Cache/Service_Request_Cache.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\Authentication' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Contracts/Authentication.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\Generation_Config' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Contracts/Generation_Config.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\Generative_AI_API_Client' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Contracts/Generative_AI_API_Client.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\Generative_AI_Model' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Contracts/Generative_AI_Model.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\Generative_AI_Service' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Contracts/Generative_AI_Service.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_API_Client' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Contracts/With_API_Client.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_Function_Calling' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Contracts/With_Function_Calling.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_JSON_Schema' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Contracts/With_JSON_Schema.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_Multimodal_Input' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Contracts/With_Multimodal_Input.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_Multimodal_Output' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Contracts/With_Multimodal_Output.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_Text_Generation' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Contracts/With_Text_Generation.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Contracts\\With_Web_Search' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Contracts/With_Web_Search.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Decorators\\AI_Service_Decorator' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Decorators/AI_Service_Decorator.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Exception\\Generative_AI_Exception' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Exception/Generative_AI_Exception.php',
|
||||
'ATFPP\\AI_Translate\\Services\\HTTP\\Contracts\\Stream_Request_Handler' => __DIR__ . '/../..' . '/includes/ai-translate/Services/HTTP/Contracts/Stream_Request_Handler.php',
|
||||
'ATFPP\\AI_Translate\\Services\\HTTP\\Contracts\\With_Stream' => __DIR__ . '/../..' . '/includes/ai-translate/Services/HTTP/Contracts/With_Stream.php',
|
||||
'ATFPP\\AI_Translate\\Services\\HTTP\\HTTP_With_Streams' => __DIR__ . '/../..' . '/includes/ai-translate/Services/HTTP/HTTP_With_Streams.php',
|
||||
'ATFPP\\AI_Translate\\Services\\HTTP\\Stream_Response' => __DIR__ . '/../..' . '/includes/ai-translate/Services/HTTP/Stream_Response.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Options\\Option_Encrypter' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Options/Option_Encrypter.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Service_Registration' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Service_Registration.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Service_Registration_Context' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Service_Registration_Context.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Services_API' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Services_API.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Services_API_Instance' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Services_API_Instance.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Services_Loader' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Services_Loader.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Services_Service_Container_Builder' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Services_Service_Container_Builder.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\Generative_AI_API_Client_Trait' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Traits/Generative_AI_API_Client_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\Model_Param_System_Instruction_Trait' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Traits/Model_Param_System_Instruction_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\Model_Param_Text_Generation_Config_Trait' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Traits/Model_Param_Text_Generation_Config_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\Model_Param_Tool_Config_Trait' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Traits/Model_Param_Tool_Config_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\Model_Param_Tools_Trait' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Traits/Model_Param_Tools_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\OpenAI_Compatible_Text_Generation_With_Function_Calling_Trait' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Traits/OpenAI_Compatible_Text_Generation_With_Function_Calling_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\With_API_Client_Trait' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Traits/With_API_Client_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Traits\\With_Text_Generation_Trait' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Traits/With_Text_Generation_Trait.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Util\\AI_Capabilities' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Util/AI_Capabilities.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Util\\Data_Encryption' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Util/Data_Encryption.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Util\\Formatter' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Util/Formatter.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Util\\Strings' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Util/Strings.php',
|
||||
'ATFPP\\AI_Translate\\Services\\Util\\Transformer' => __DIR__ . '/../..' . '/includes/ai-translate/Services/Util/Transformer.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Abstract_Capability' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Abstract_Capability.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Base_Capability' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Base_Capability.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Capability_Container' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Capability_Container.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Capability_Controller' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Capability_Controller.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Capability_Filters' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Capability_Filters.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Contracts\\Capability' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Contracts/Capability.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Capabilities\\Meta_Capability' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Capabilities/Meta_Capability.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Array_Key_Value_Repository' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Array_Key_Value_Repository.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Array_Registry' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Array_Registry.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Arrayable' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Arrayable.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Collection' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Collection.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Container' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Container.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Container_Readonly' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Container_Readonly.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Hook_Registrar' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Hook_Registrar.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Key_Value' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Key_Value.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Key_Value_Repository' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Key_Value_Repository.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\Registry' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/Registry.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\With_Capabilities' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/With_Capabilities.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\With_Hooks' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/With_Hooks.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\With_Key' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/With_Key.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Contracts\\With_Registration_Args' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Contracts/With_Registration_Args.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Current_User' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Current_User.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Exception\\Invalid_Type_Exception' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Exception/Invalid_Type_Exception.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Exception\\Not_Found_Exception' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Exception/Not_Found_Exception.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Exception\\WP_Error_Exception' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Exception/WP_Error_Exception.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Generic_Key_Value' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Generic_Key_Value.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Input' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Input.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Mutable_Input' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Mutable_Input.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Network_Env' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Network_Env.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Network_Runner' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Network_Runner.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Plugin_Env' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Plugin_Env.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Service_Container' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Service_Container.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Site_Env' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Site_Env.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Traits\\Cast_Value_By_Type' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Traits/Cast_Value_By_Type.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\General\\Traits\\Maybe_Throw' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/General/Traits/Maybe_Throw.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Contracts\\Request' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Contracts/Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Contracts\\Request_Handler' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Contracts/Request_Handler.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Contracts\\Response' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Contracts/Response.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Delete_Request' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Delete_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Exception\\Multiple_Requests_Exception' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Exception/Multiple_Requests_Exception.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Exception\\Request_Exception' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Exception/Request_Exception.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Generic_Request' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Generic_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Generic_Response' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Generic_Response.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Get_Request' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Get_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\HTTP' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/HTTP.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\JSON_Patch_Request' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/JSON_Patch_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\JSON_Post_Request' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/JSON_Post_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\JSON_Put_Request' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/JSON_Put_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\JSON_Request' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/JSON_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\JSON_Response' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/JSON_Response.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Patch_Request' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Patch_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Post_Request' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Post_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Put_Request' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Put_Request.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\HTTP\\Traits\\Sanitize_Headers' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/HTTP/Traits/Sanitize_Headers.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Abstract_Entity_Key_Value' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Meta/Abstract_Entity_Key_Value.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Contracts\\Entity_Key_Value' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Meta/Contracts/Entity_Key_Value.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Contracts\\Entity_Key_Value_Repository' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Meta/Contracts/Entity_Key_Value_Repository.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Contracts\\With_Entity_ID' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Meta/Contracts/With_Entity_ID.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Contracts\\With_Single' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Meta/Contracts/With_Single.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Entity_Aware_Meta_Container' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Meta/Entity_Aware_Meta_Container.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Entity_Aware_Meta_Key' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Meta/Entity_Aware_Meta_Key.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Meta_Container' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Meta/Meta_Container.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Meta_Hook_Registrar' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Meta/Meta_Hook_Registrar.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Meta_Key' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Meta/Meta_Key.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Meta_Registry' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Meta/Meta_Registry.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Meta\\Meta_Repository' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Meta/Meta_Repository.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Options\\Contracts\\With_Autoload_Config' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Options/Contracts/With_Autoload_Config.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Options\\Option' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Options/Option.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Options\\Option_Container' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Options/Option_Container.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Options\\Option_Hook_Registrar' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Options/Option_Hook_Registrar.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Options\\Option_Registry' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Options/Option_Registry.php',
|
||||
'Felix_Arntz\\ATFPP\\WP_OOP_Plugin_Lib\\Options\\Option_Repository' => __DIR__ . '/..' . '/felixarntz/wp-oop-plugin-lib/src/Options/Option_Repository.php',
|
||||
'GuzzleHttp\\BodySummarizer' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/BodySummarizer.php',
|
||||
'GuzzleHttp\\BodySummarizerInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/BodySummarizerInterface.php',
|
||||
'GuzzleHttp\\Client' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Client.php',
|
||||
'GuzzleHttp\\ClientInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientInterface.php',
|
||||
'GuzzleHttp\\ClientTrait' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientTrait.php',
|
||||
'GuzzleHttp\\Cookie\\CookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
|
||||
'GuzzleHttp\\Cookie\\CookieJarInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',
|
||||
'GuzzleHttp\\Cookie\\FileCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',
|
||||
'GuzzleHttp\\Cookie\\SessionCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',
|
||||
'GuzzleHttp\\Cookie\\SetCookie' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php',
|
||||
'GuzzleHttp\\Exception\\BadResponseException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php',
|
||||
'GuzzleHttp\\Exception\\ClientException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ClientException.php',
|
||||
'GuzzleHttp\\Exception\\ConnectException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ConnectException.php',
|
||||
'GuzzleHttp\\Exception\\GuzzleException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php',
|
||||
'GuzzleHttp\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',
|
||||
'GuzzleHttp\\Exception\\RequestException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/RequestException.php',
|
||||
'GuzzleHttp\\Exception\\ServerException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ServerException.php',
|
||||
'GuzzleHttp\\Exception\\TooManyRedirectsException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',
|
||||
'GuzzleHttp\\Exception\\TransferException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TransferException.php',
|
||||
'GuzzleHttp\\HandlerStack' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/HandlerStack.php',
|
||||
'GuzzleHttp\\Handler\\CurlFactory' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php',
|
||||
'GuzzleHttp\\Handler\\CurlFactoryInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',
|
||||
'GuzzleHttp\\Handler\\CurlHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php',
|
||||
'GuzzleHttp\\Handler\\CurlMultiHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',
|
||||
'GuzzleHttp\\Handler\\EasyHandle' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php',
|
||||
'GuzzleHttp\\Handler\\HeaderProcessor' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php',
|
||||
'GuzzleHttp\\Handler\\MockHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/MockHandler.php',
|
||||
'GuzzleHttp\\Handler\\Proxy' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/Proxy.php',
|
||||
'GuzzleHttp\\Handler\\StreamHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php',
|
||||
'GuzzleHttp\\MessageFormatter' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/MessageFormatter.php',
|
||||
'GuzzleHttp\\MessageFormatterInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/MessageFormatterInterface.php',
|
||||
'GuzzleHttp\\Middleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Middleware.php',
|
||||
'GuzzleHttp\\Pool' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Pool.php',
|
||||
'GuzzleHttp\\PrepareBodyMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',
|
||||
'GuzzleHttp\\Promise\\AggregateException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/AggregateException.php',
|
||||
'GuzzleHttp\\Promise\\CancellationException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/CancellationException.php',
|
||||
'GuzzleHttp\\Promise\\Coroutine' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Coroutine.php',
|
||||
'GuzzleHttp\\Promise\\Create' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Create.php',
|
||||
'GuzzleHttp\\Promise\\Each' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Each.php',
|
||||
'GuzzleHttp\\Promise\\EachPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/EachPromise.php',
|
||||
'GuzzleHttp\\Promise\\FulfilledPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/FulfilledPromise.php',
|
||||
'GuzzleHttp\\Promise\\Is' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Is.php',
|
||||
'GuzzleHttp\\Promise\\Promise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Promise.php',
|
||||
'GuzzleHttp\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromiseInterface.php',
|
||||
'GuzzleHttp\\Promise\\PromisorInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromisorInterface.php',
|
||||
'GuzzleHttp\\Promise\\RejectedPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectedPromise.php',
|
||||
'GuzzleHttp\\Promise\\RejectionException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectionException.php',
|
||||
'GuzzleHttp\\Promise\\TaskQueue' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueue.php',
|
||||
'GuzzleHttp\\Promise\\TaskQueueInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueueInterface.php',
|
||||
'GuzzleHttp\\Promise\\Utils' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Utils.php',
|
||||
'GuzzleHttp\\Psr7\\AppendStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/AppendStream.php',
|
||||
'GuzzleHttp\\Psr7\\BufferStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/BufferStream.php',
|
||||
'GuzzleHttp\\Psr7\\CachingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/CachingStream.php',
|
||||
'GuzzleHttp\\Psr7\\DroppingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/DroppingStream.php',
|
||||
'GuzzleHttp\\Psr7\\Exception\\MalformedUriException' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Exception/MalformedUriException.php',
|
||||
'GuzzleHttp\\Psr7\\FnStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/FnStream.php',
|
||||
'GuzzleHttp\\Psr7\\Header' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Header.php',
|
||||
'GuzzleHttp\\Psr7\\HttpFactory' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/HttpFactory.php',
|
||||
'GuzzleHttp\\Psr7\\InflateStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/InflateStream.php',
|
||||
'GuzzleHttp\\Psr7\\LazyOpenStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LazyOpenStream.php',
|
||||
'GuzzleHttp\\Psr7\\LimitStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LimitStream.php',
|
||||
'GuzzleHttp\\Psr7\\Message' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Message.php',
|
||||
'GuzzleHttp\\Psr7\\MessageTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MessageTrait.php',
|
||||
'GuzzleHttp\\Psr7\\MimeType' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MimeType.php',
|
||||
'GuzzleHttp\\Psr7\\MultipartStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MultipartStream.php',
|
||||
'GuzzleHttp\\Psr7\\NoSeekStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/NoSeekStream.php',
|
||||
'GuzzleHttp\\Psr7\\PumpStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/PumpStream.php',
|
||||
'GuzzleHttp\\Psr7\\Query' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Query.php',
|
||||
'GuzzleHttp\\Psr7\\Request' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Request.php',
|
||||
'GuzzleHttp\\Psr7\\Response' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Response.php',
|
||||
'GuzzleHttp\\Psr7\\Rfc7230' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Rfc7230.php',
|
||||
'GuzzleHttp\\Psr7\\ServerRequest' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/ServerRequest.php',
|
||||
'GuzzleHttp\\Psr7\\Stream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Stream.php',
|
||||
'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
|
||||
'GuzzleHttp\\Psr7\\StreamWrapper' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamWrapper.php',
|
||||
'GuzzleHttp\\Psr7\\UploadedFile' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UploadedFile.php',
|
||||
'GuzzleHttp\\Psr7\\Uri' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Uri.php',
|
||||
'GuzzleHttp\\Psr7\\UriComparator' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriComparator.php',
|
||||
'GuzzleHttp\\Psr7\\UriNormalizer' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriNormalizer.php',
|
||||
'GuzzleHttp\\Psr7\\UriResolver' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriResolver.php',
|
||||
'GuzzleHttp\\Psr7\\Utils' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Utils.php',
|
||||
'GuzzleHttp\\RedirectMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
|
||||
'GuzzleHttp\\RequestOptions' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RequestOptions.php',
|
||||
'GuzzleHttp\\RetryMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
|
||||
'GuzzleHttp\\TransferStats' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/TransferStats.php',
|
||||
'GuzzleHttp\\Utils' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Utils.php',
|
||||
'Psr\\Http\\Client\\ClientExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/ClientExceptionInterface.php',
|
||||
'Psr\\Http\\Client\\ClientInterface' => __DIR__ . '/..' . '/psr/http-client/src/ClientInterface.php',
|
||||
'Psr\\Http\\Client\\NetworkExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/NetworkExceptionInterface.php',
|
||||
'Psr\\Http\\Client\\RequestExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/RequestExceptionInterface.php',
|
||||
'Psr\\Http\\Message\\MessageInterface' => __DIR__ . '/..' . '/psr/http-message/src/MessageInterface.php',
|
||||
'Psr\\Http\\Message\\RequestFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/RequestFactoryInterface.php',
|
||||
'Psr\\Http\\Message\\RequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/RequestInterface.php',
|
||||
'Psr\\Http\\Message\\ResponseFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/ResponseFactoryInterface.php',
|
||||
'Psr\\Http\\Message\\ResponseInterface' => __DIR__ . '/..' . '/psr/http-message/src/ResponseInterface.php',
|
||||
'Psr\\Http\\Message\\ServerRequestFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/ServerRequestFactoryInterface.php',
|
||||
'Psr\\Http\\Message\\ServerRequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/ServerRequestInterface.php',
|
||||
'Psr\\Http\\Message\\StreamFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/StreamFactoryInterface.php',
|
||||
'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php',
|
||||
'Psr\\Http\\Message\\UploadedFileFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/UploadedFileFactoryInterface.php',
|
||||
'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php',
|
||||
'Psr\\Http\\Message\\UriFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/UriFactoryInterface.php',
|
||||
'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php',
|
||||
);
|
||||
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
{
|
||||
return \Closure::bind(function () use ($loader) {
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInitef786e44e6598dfaf0500750ff2a09f1::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInitef786e44e6598dfaf0500750ff2a09f1::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInitef786e44e6598dfaf0500750ff2a09f1::$classMap;
|
||||
|
||||
}, null, ClassLoader::class);
|
||||
}
|
||||
}
|
||||
826
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/installed.json
vendored
Normal file
826
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/installed.json
vendored
Normal file
@@ -0,0 +1,826 @@
|
||||
{
|
||||
"packages": [
|
||||
{
|
||||
"name": "composer/installers",
|
||||
"version": "v1.12.0",
|
||||
"version_normalized": "1.12.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/composer/installers.git",
|
||||
"reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
|
||||
"reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"composer-plugin-api": "^1.0 || ^2.0"
|
||||
},
|
||||
"replace": {
|
||||
"roundcube/plugin-installer": "*",
|
||||
"shama/baton": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"composer/composer": "1.6.* || ^2.0",
|
||||
"composer/semver": "^1 || ^3",
|
||||
"phpstan/phpstan": "^0.12.55",
|
||||
"phpstan/phpstan-phpunit": "^0.12.16",
|
||||
"symfony/phpunit-bridge": "^4.2 || ^5",
|
||||
"symfony/process": "^2.3"
|
||||
},
|
||||
"time": "2021-09-13T08:19:44+00:00",
|
||||
"type": "composer-plugin",
|
||||
"extra": {
|
||||
"class": "Composer\\Installers\\Plugin",
|
||||
"branch-alias": {
|
||||
"dev-main": "1.x-dev"
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Composer\\Installers\\": "src/Composer/Installers"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Kyle Robinson Young",
|
||||
"email": "kyle@dontkry.com",
|
||||
"homepage": "https://github.com/shama"
|
||||
}
|
||||
],
|
||||
"description": "A multi-framework Composer library installer",
|
||||
"homepage": "https://composer.github.io/installers/",
|
||||
"keywords": [
|
||||
"Craft",
|
||||
"Dolibarr",
|
||||
"Eliasis",
|
||||
"Hurad",
|
||||
"ImageCMS",
|
||||
"Kanboard",
|
||||
"Lan Management System",
|
||||
"MODX Evo",
|
||||
"MantisBT",
|
||||
"Mautic",
|
||||
"Maya",
|
||||
"OXID",
|
||||
"Plentymarkets",
|
||||
"Porto",
|
||||
"RadPHP",
|
||||
"SMF",
|
||||
"Starbug",
|
||||
"Thelia",
|
||||
"Whmcs",
|
||||
"WolfCMS",
|
||||
"agl",
|
||||
"aimeos",
|
||||
"annotatecms",
|
||||
"attogram",
|
||||
"bitrix",
|
||||
"cakephp",
|
||||
"chef",
|
||||
"cockpit",
|
||||
"codeigniter",
|
||||
"concrete5",
|
||||
"croogo",
|
||||
"dokuwiki",
|
||||
"drupal",
|
||||
"eZ Platform",
|
||||
"elgg",
|
||||
"expressionengine",
|
||||
"fuelphp",
|
||||
"grav",
|
||||
"installer",
|
||||
"itop",
|
||||
"joomla",
|
||||
"known",
|
||||
"kohana",
|
||||
"laravel",
|
||||
"lavalite",
|
||||
"lithium",
|
||||
"magento",
|
||||
"majima",
|
||||
"mako",
|
||||
"mediawiki",
|
||||
"miaoxing",
|
||||
"modulework",
|
||||
"modx",
|
||||
"moodle",
|
||||
"osclass",
|
||||
"pantheon",
|
||||
"phpbb",
|
||||
"piwik",
|
||||
"ppi",
|
||||
"processwire",
|
||||
"puppet",
|
||||
"pxcms",
|
||||
"reindex",
|
||||
"roundcube",
|
||||
"shopware",
|
||||
"silverstripe",
|
||||
"sydes",
|
||||
"sylius",
|
||||
"symfony",
|
||||
"tastyigniter",
|
||||
"typo3",
|
||||
"wordpress",
|
||||
"yawik",
|
||||
"zend",
|
||||
"zikula"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/composer/installers/issues",
|
||||
"source": "https://github.com/composer/installers/tree/v1.12.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://packagist.com",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/composer",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "./installers"
|
||||
},
|
||||
{
|
||||
"name": "felixarntz/wp-oop-plugin-lib",
|
||||
"version": "dev-main",
|
||||
"version_normalized": "dev-main",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/felixarntz/wp-oop-plugin-lib.git",
|
||||
"reference": "1fdfe74746fef54fe33a1abde9b78ffa0c27436d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/felixarntz/wp-oop-plugin-lib/zipball/1fdfe74746fef54fe33a1abde9b78ffa0c27436d",
|
||||
"reference": "1fdfe74746fef54fe33a1abde9b78ffa0c27436d",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.2"
|
||||
},
|
||||
"time": "2025-07-08T21:33:08+00:00",
|
||||
"default-branch": true,
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Felix_Arntz\\WP_OOP_Plugin_Lib\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"GPL-2.0-or-later"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Felix Arntz",
|
||||
"email": "hello@felix-arntz.me",
|
||||
"homepage": "https://felix-arntz.me",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"description": "A library providing classes around WordPress APIs, to be used for example in object oriented WordPress plugins.",
|
||||
"support": {
|
||||
"issues": "https://github.com/felixarntz/wp-oop-plugin-lib/issues",
|
||||
"source": "https://github.com/felixarntz/wp-oop-plugin-lib/tree/main"
|
||||
},
|
||||
"install-path": "../felixarntz/wp-oop-plugin-lib"
|
||||
},
|
||||
{
|
||||
"name": "guzzlehttp/guzzle",
|
||||
"version": "7.9.3",
|
||||
"version_normalized": "7.9.3.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/guzzle/guzzle.git",
|
||||
"reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
|
||||
"reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-json": "*",
|
||||
"guzzlehttp/promises": "^1.5.3 || ^2.0.3",
|
||||
"guzzlehttp/psr7": "^2.7.0",
|
||||
"php": "^7.2.5 || ^8.0",
|
||||
"psr/http-client": "^1.0",
|
||||
"symfony/deprecation-contracts": "^2.2 || ^3.0"
|
||||
},
|
||||
"provide": {
|
||||
"psr/http-client-implementation": "1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"bamarni/composer-bin-plugin": "^1.8.2",
|
||||
"ext-curl": "*",
|
||||
"guzzle/client-integration-tests": "3.0.2",
|
||||
"php-http/message-factory": "^1.1",
|
||||
"phpunit/phpunit": "^8.5.39 || ^9.6.20",
|
||||
"psr/log": "^1.1 || ^2.0 || ^3.0"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-curl": "Required for CURL handler support",
|
||||
"ext-intl": "Required for Internationalized Domain Name (IDN) support",
|
||||
"psr/log": "Required for using the Log middleware"
|
||||
},
|
||||
"time": "2025-03-27T13:37:11+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"bamarni-bin": {
|
||||
"bin-links": true,
|
||||
"forward-command": false
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/functions_include.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"GuzzleHttp\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Graham Campbell",
|
||||
"email": "hello@gjcampbell.co.uk",
|
||||
"homepage": "https://github.com/GrahamCampbell"
|
||||
},
|
||||
{
|
||||
"name": "Michael Dowling",
|
||||
"email": "mtdowling@gmail.com",
|
||||
"homepage": "https://github.com/mtdowling"
|
||||
},
|
||||
{
|
||||
"name": "Jeremy Lindblom",
|
||||
"email": "jeremeamia@gmail.com",
|
||||
"homepage": "https://github.com/jeremeamia"
|
||||
},
|
||||
{
|
||||
"name": "George Mponos",
|
||||
"email": "gmponos@gmail.com",
|
||||
"homepage": "https://github.com/gmponos"
|
||||
},
|
||||
{
|
||||
"name": "Tobias Nyholm",
|
||||
"email": "tobias.nyholm@gmail.com",
|
||||
"homepage": "https://github.com/Nyholm"
|
||||
},
|
||||
{
|
||||
"name": "Márk Sági-Kazár",
|
||||
"email": "mark.sagikazar@gmail.com",
|
||||
"homepage": "https://github.com/sagikazarmark"
|
||||
},
|
||||
{
|
||||
"name": "Tobias Schultze",
|
||||
"email": "webmaster@tubo-world.de",
|
||||
"homepage": "https://github.com/Tobion"
|
||||
}
|
||||
],
|
||||
"description": "Guzzle is a PHP HTTP client library",
|
||||
"keywords": [
|
||||
"client",
|
||||
"curl",
|
||||
"framework",
|
||||
"http",
|
||||
"http client",
|
||||
"psr-18",
|
||||
"psr-7",
|
||||
"rest",
|
||||
"web service"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/guzzle/guzzle/issues",
|
||||
"source": "https://github.com/guzzle/guzzle/tree/7.9.3"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/GrahamCampbell",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/Nyholm",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../guzzlehttp/guzzle"
|
||||
},
|
||||
{
|
||||
"name": "guzzlehttp/promises",
|
||||
"version": "2.2.0",
|
||||
"version_normalized": "2.2.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/guzzle/promises.git",
|
||||
"reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
|
||||
"reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.2.5 || ^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"bamarni/composer-bin-plugin": "^1.8.2",
|
||||
"phpunit/phpunit": "^8.5.39 || ^9.6.20"
|
||||
},
|
||||
"time": "2025-03-27T13:27:01+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"bamarni-bin": {
|
||||
"bin-links": true,
|
||||
"forward-command": false
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"GuzzleHttp\\Promise\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Graham Campbell",
|
||||
"email": "hello@gjcampbell.co.uk",
|
||||
"homepage": "https://github.com/GrahamCampbell"
|
||||
},
|
||||
{
|
||||
"name": "Michael Dowling",
|
||||
"email": "mtdowling@gmail.com",
|
||||
"homepage": "https://github.com/mtdowling"
|
||||
},
|
||||
{
|
||||
"name": "Tobias Nyholm",
|
||||
"email": "tobias.nyholm@gmail.com",
|
||||
"homepage": "https://github.com/Nyholm"
|
||||
},
|
||||
{
|
||||
"name": "Tobias Schultze",
|
||||
"email": "webmaster@tubo-world.de",
|
||||
"homepage": "https://github.com/Tobion"
|
||||
}
|
||||
],
|
||||
"description": "Guzzle promises library",
|
||||
"keywords": [
|
||||
"promise"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/guzzle/promises/issues",
|
||||
"source": "https://github.com/guzzle/promises/tree/2.2.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/GrahamCampbell",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/Nyholm",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../guzzlehttp/promises"
|
||||
},
|
||||
{
|
||||
"name": "guzzlehttp/psr7",
|
||||
"version": "2.7.1",
|
||||
"version_normalized": "2.7.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/guzzle/psr7.git",
|
||||
"reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
|
||||
"reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.2.5 || ^8.0",
|
||||
"psr/http-factory": "^1.0",
|
||||
"psr/http-message": "^1.1 || ^2.0",
|
||||
"ralouphie/getallheaders": "^3.0"
|
||||
},
|
||||
"provide": {
|
||||
"psr/http-factory-implementation": "1.0",
|
||||
"psr/http-message-implementation": "1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"bamarni/composer-bin-plugin": "^1.8.2",
|
||||
"http-interop/http-factory-tests": "0.9.0",
|
||||
"phpunit/phpunit": "^8.5.39 || ^9.6.20"
|
||||
},
|
||||
"suggest": {
|
||||
"laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
|
||||
},
|
||||
"time": "2025-03-27T12:30:47+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"bamarni-bin": {
|
||||
"bin-links": true,
|
||||
"forward-command": false
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"GuzzleHttp\\Psr7\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Graham Campbell",
|
||||
"email": "hello@gjcampbell.co.uk",
|
||||
"homepage": "https://github.com/GrahamCampbell"
|
||||
},
|
||||
{
|
||||
"name": "Michael Dowling",
|
||||
"email": "mtdowling@gmail.com",
|
||||
"homepage": "https://github.com/mtdowling"
|
||||
},
|
||||
{
|
||||
"name": "George Mponos",
|
||||
"email": "gmponos@gmail.com",
|
||||
"homepage": "https://github.com/gmponos"
|
||||
},
|
||||
{
|
||||
"name": "Tobias Nyholm",
|
||||
"email": "tobias.nyholm@gmail.com",
|
||||
"homepage": "https://github.com/Nyholm"
|
||||
},
|
||||
{
|
||||
"name": "Márk Sági-Kazár",
|
||||
"email": "mark.sagikazar@gmail.com",
|
||||
"homepage": "https://github.com/sagikazarmark"
|
||||
},
|
||||
{
|
||||
"name": "Tobias Schultze",
|
||||
"email": "webmaster@tubo-world.de",
|
||||
"homepage": "https://github.com/Tobion"
|
||||
},
|
||||
{
|
||||
"name": "Márk Sági-Kazár",
|
||||
"email": "mark.sagikazar@gmail.com",
|
||||
"homepage": "https://sagikazarmark.hu"
|
||||
}
|
||||
],
|
||||
"description": "PSR-7 message implementation that also provides common utility methods",
|
||||
"keywords": [
|
||||
"http",
|
||||
"message",
|
||||
"psr-7",
|
||||
"request",
|
||||
"response",
|
||||
"stream",
|
||||
"uri",
|
||||
"url"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/guzzle/psr7/issues",
|
||||
"source": "https://github.com/guzzle/psr7/tree/2.7.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/GrahamCampbell",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/Nyholm",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../guzzlehttp/psr7"
|
||||
},
|
||||
{
|
||||
"name": "psr/http-client",
|
||||
"version": "1.0.3",
|
||||
"version_normalized": "1.0.3.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/php-fig/http-client.git",
|
||||
"reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
|
||||
"reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.0 || ^8.0",
|
||||
"psr/http-message": "^1.0 || ^2.0"
|
||||
},
|
||||
"time": "2023-09-23T14:17:50+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0.x-dev"
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Psr\\Http\\Client\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "PHP-FIG",
|
||||
"homepage": "https://www.php-fig.org/"
|
||||
}
|
||||
],
|
||||
"description": "Common interface for HTTP clients",
|
||||
"homepage": "https://github.com/php-fig/http-client",
|
||||
"keywords": [
|
||||
"http",
|
||||
"http-client",
|
||||
"psr",
|
||||
"psr-18"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/php-fig/http-client"
|
||||
},
|
||||
"install-path": "../psr/http-client"
|
||||
},
|
||||
{
|
||||
"name": "psr/http-factory",
|
||||
"version": "1.1.0",
|
||||
"version_normalized": "1.1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/php-fig/http-factory.git",
|
||||
"reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
|
||||
"reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1",
|
||||
"psr/http-message": "^1.0 || ^2.0"
|
||||
},
|
||||
"time": "2024-04-15T12:06:14+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0.x-dev"
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Psr\\Http\\Message\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "PHP-FIG",
|
||||
"homepage": "https://www.php-fig.org/"
|
||||
}
|
||||
],
|
||||
"description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
|
||||
"keywords": [
|
||||
"factory",
|
||||
"http",
|
||||
"message",
|
||||
"psr",
|
||||
"psr-17",
|
||||
"psr-7",
|
||||
"request",
|
||||
"response"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/php-fig/http-factory"
|
||||
},
|
||||
"install-path": "../psr/http-factory"
|
||||
},
|
||||
{
|
||||
"name": "psr/http-message",
|
||||
"version": "2.0",
|
||||
"version_normalized": "2.0.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/php-fig/http-message.git",
|
||||
"reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
|
||||
"reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.2 || ^8.0"
|
||||
},
|
||||
"time": "2023-04-04T09:54:51+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "2.0.x-dev"
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Psr\\Http\\Message\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "PHP-FIG",
|
||||
"homepage": "https://www.php-fig.org/"
|
||||
}
|
||||
],
|
||||
"description": "Common interface for HTTP messages",
|
||||
"homepage": "https://github.com/php-fig/http-message",
|
||||
"keywords": [
|
||||
"http",
|
||||
"http-message",
|
||||
"psr",
|
||||
"psr-7",
|
||||
"request",
|
||||
"response"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/php-fig/http-message/tree/2.0"
|
||||
},
|
||||
"install-path": "../psr/http-message"
|
||||
},
|
||||
{
|
||||
"name": "ralouphie/getallheaders",
|
||||
"version": "3.0.3",
|
||||
"version_normalized": "3.0.3.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ralouphie/getallheaders.git",
|
||||
"reference": "120b605dfeb996808c31b6477290a714d356e822"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
|
||||
"reference": "120b605dfeb996808c31b6477290a714d356e822",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.6"
|
||||
},
|
||||
"require-dev": {
|
||||
"php-coveralls/php-coveralls": "^2.1",
|
||||
"phpunit/phpunit": "^5 || ^6.5"
|
||||
},
|
||||
"time": "2019-03-08T08:55:37+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/getallheaders.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Ralph Khattar",
|
||||
"email": "ralph.khattar@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "A polyfill for getallheaders.",
|
||||
"support": {
|
||||
"issues": "https://github.com/ralouphie/getallheaders/issues",
|
||||
"source": "https://github.com/ralouphie/getallheaders/tree/develop"
|
||||
},
|
||||
"install-path": "../ralouphie/getallheaders"
|
||||
},
|
||||
{
|
||||
"name": "symfony/deprecation-contracts",
|
||||
"version": "v2.5.4",
|
||||
"version_normalized": "2.5.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/deprecation-contracts.git",
|
||||
"reference": "605389f2a7e5625f273b53960dc46aeaf9c62918"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918",
|
||||
"reference": "605389f2a7e5625f273b53960dc46aeaf9c62918",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1"
|
||||
},
|
||||
"time": "2024-09-25T14:11:13+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"thanks": {
|
||||
"url": "https://github.com/symfony/contracts",
|
||||
"name": "symfony/contracts"
|
||||
},
|
||||
"branch-alias": {
|
||||
"dev-main": "2.5-dev"
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"function.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "A generic function and convention to trigger deprecation notices",
|
||||
"homepage": "https://symfony.com",
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../symfony/deprecation-contracts"
|
||||
}
|
||||
],
|
||||
"dev": true,
|
||||
"dev-package-names": []
|
||||
}
|
||||
145
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/installed.php
vendored
Normal file
145
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/installed.php
vendored
Normal file
@@ -0,0 +1,145 @@
|
||||
<?php return array(
|
||||
'root' => array(
|
||||
'name' => 'felixarntz/ai-services',
|
||||
'pretty_version' => 'dev-main',
|
||||
'version' => 'dev-main',
|
||||
'reference' => 'df0856ea685d1966bfc85a267b1ef09562407eb3',
|
||||
'type' => 'wordpress-plugin',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
'dev' => true,
|
||||
),
|
||||
'versions' => array(
|
||||
'composer/installers' => array(
|
||||
'pretty_version' => 'v1.12.0',
|
||||
'version' => '1.12.0.0',
|
||||
'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19',
|
||||
'type' => 'composer-plugin',
|
||||
'install_path' => __DIR__ . '/./installers',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'felixarntz/ai-services' => array(
|
||||
'pretty_version' => 'dev-main',
|
||||
'version' => 'dev-main',
|
||||
'reference' => 'df0856ea685d1966bfc85a267b1ef09562407eb3',
|
||||
'type' => 'wordpress-plugin',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'felixarntz/wp-oop-plugin-lib' => array(
|
||||
'pretty_version' => 'dev-main',
|
||||
'version' => 'dev-main',
|
||||
'reference' => '1fdfe74746fef54fe33a1abde9b78ffa0c27436d',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../felixarntz/wp-oop-plugin-lib',
|
||||
'aliases' => array(
|
||||
0 => '9999999-dev',
|
||||
),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'guzzlehttp/guzzle' => array(
|
||||
'pretty_version' => '7.9.3',
|
||||
'version' => '7.9.3.0',
|
||||
'reference' => '7b2f29fe81dc4da0ca0ea7d42107a0845946ea77',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../guzzlehttp/guzzle',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'guzzlehttp/promises' => array(
|
||||
'pretty_version' => '2.2.0',
|
||||
'version' => '2.2.0.0',
|
||||
'reference' => '7c69f28996b0a6920945dd20b3857e499d9ca96c',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../guzzlehttp/promises',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'guzzlehttp/psr7' => array(
|
||||
'pretty_version' => '2.7.1',
|
||||
'version' => '2.7.1.0',
|
||||
'reference' => 'c2270caaabe631b3b44c85f99e5a04bbb8060d16',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../guzzlehttp/psr7',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'psr/http-client' => array(
|
||||
'pretty_version' => '1.0.3',
|
||||
'version' => '1.0.3.0',
|
||||
'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../psr/http-client',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'psr/http-client-implementation' => array(
|
||||
'dev_requirement' => false,
|
||||
'provided' => array(
|
||||
0 => '1.0',
|
||||
),
|
||||
),
|
||||
'psr/http-factory' => array(
|
||||
'pretty_version' => '1.1.0',
|
||||
'version' => '1.1.0.0',
|
||||
'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../psr/http-factory',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'psr/http-factory-implementation' => array(
|
||||
'dev_requirement' => false,
|
||||
'provided' => array(
|
||||
0 => '1.0',
|
||||
),
|
||||
),
|
||||
'psr/http-message' => array(
|
||||
'pretty_version' => '2.0',
|
||||
'version' => '2.0.0.0',
|
||||
'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../psr/http-message',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'psr/http-message-implementation' => array(
|
||||
'dev_requirement' => false,
|
||||
'provided' => array(
|
||||
0 => '1.0',
|
||||
),
|
||||
),
|
||||
'ralouphie/getallheaders' => array(
|
||||
'pretty_version' => '3.0.3',
|
||||
'version' => '3.0.3.0',
|
||||
'reference' => '120b605dfeb996808c31b6477290a714d356e822',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../ralouphie/getallheaders',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'roundcube/plugin-installer' => array(
|
||||
'dev_requirement' => false,
|
||||
'replaced' => array(
|
||||
0 => '*',
|
||||
),
|
||||
),
|
||||
'shama/baton' => array(
|
||||
'dev_requirement' => false,
|
||||
'replaced' => array(
|
||||
0 => '*',
|
||||
),
|
||||
),
|
||||
'symfony/deprecation-contracts' => array(
|
||||
'pretty_version' => 'v2.5.4',
|
||||
'version' => '2.5.4.0',
|
||||
'reference' => '605389f2a7e5625f273b53960dc46aeaf9c62918',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
),
|
||||
);
|
||||
26
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/vendor/composer/platform_check.php
vendored
Normal file
26
wp-content/plugins/autopoly-ai-translation-for-polylang-pro/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 >= 70205)) {
|
||||
$issues[] = 'Your Composer dependencies require a PHP version ">= 7.2.5". 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