Sup vendor
This commit is contained in:
parent
d2d9db32f5
commit
27dccad485
@ -74,10 +74,8 @@
|
|||||||
<path value="$PROJECT_DIR$/vendor/symfony/stopwatch" />
|
<path value="$PROJECT_DIR$/vendor/symfony/stopwatch" />
|
||||||
<path value="$PROJECT_DIR$/vendor/theseer/tokenizer" />
|
<path value="$PROJECT_DIR$/vendor/theseer/tokenizer" />
|
||||||
<path value="$PROJECT_DIR$/vendor/psr/container" />
|
<path value="$PROJECT_DIR$/vendor/psr/container" />
|
||||||
<path value="$PROJECT_DIR$/vendor/psr/cache" />
|
|
||||||
<path value="$PROJECT_DIR$/vendor/psr/event-dispatcher" />
|
<path value="$PROJECT_DIR$/vendor/psr/event-dispatcher" />
|
||||||
<path value="$PROJECT_DIR$/vendor/psr/log" />
|
<path value="$PROJECT_DIR$/vendor/psr/log" />
|
||||||
<path value="$PROJECT_DIR$/vendor/psr/link" />
|
|
||||||
<path value="$PROJECT_DIR$/vendor/psr/clock" />
|
<path value="$PROJECT_DIR$/vendor/psr/clock" />
|
||||||
<path value="$PROJECT_DIR$/vendor/doctrine/event-manager" />
|
<path value="$PROJECT_DIR$/vendor/doctrine/event-manager" />
|
||||||
<path value="$PROJECT_DIR$/vendor/doctrine/cache" />
|
<path value="$PROJECT_DIR$/vendor/doctrine/cache" />
|
||||||
|
585
vendor/composer/ClassLoader.php
vendored
585
vendor/composer/ClassLoader.php
vendored
@ -1,585 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of Composer.
|
|
||||||
*
|
|
||||||
* (c) Nils Adermann <naderman@naderman.de>
|
|
||||||
* Jordi Boggiano <j.boggiano@seld.be>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view the LICENSE
|
|
||||||
* file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Autoload;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
|
|
||||||
*
|
|
||||||
* $loader = new \Composer\Autoload\ClassLoader();
|
|
||||||
*
|
|
||||||
* // register classes with namespaces
|
|
||||||
* $loader->add('Symfony\Component', __DIR__.'/component');
|
|
||||||
* $loader->add('Symfony', __DIR__.'/framework');
|
|
||||||
*
|
|
||||||
* // activate the autoloader
|
|
||||||
* $loader->register();
|
|
||||||
*
|
|
||||||
* // to enable searching the include path (eg. for PEAR packages)
|
|
||||||
* $loader->setUseIncludePath(true);
|
|
||||||
*
|
|
||||||
* In this example, if you try to use a class in the Symfony\Component
|
|
||||||
* namespace or one of its children (Symfony\Component\Console for instance),
|
|
||||||
* the autoloader will first look for the class under the component/
|
|
||||||
* directory, and it will then fallback to the framework/ directory if not
|
|
||||||
* found before giving up.
|
|
||||||
*
|
|
||||||
* This class is loosely based on the Symfony UniversalClassLoader.
|
|
||||||
*
|
|
||||||
* @author Fabien Potencier <fabien@symfony.com>
|
|
||||||
* @author Jordi Boggiano <j.boggiano@seld.be>
|
|
||||||
* @see https://www.php-fig.org/psr/psr-0/
|
|
||||||
* @see https://www.php-fig.org/psr/psr-4/
|
|
||||||
*/
|
|
||||||
class ClassLoader
|
|
||||||
{
|
|
||||||
/** @var \Closure(string):void */
|
|
||||||
private static $includeFile;
|
|
||||||
|
|
||||||
/** @var ?string */
|
|
||||||
private $vendorDir;
|
|
||||||
|
|
||||||
// PSR-4
|
|
||||||
/**
|
|
||||||
* @var array[]
|
|
||||||
* @psalm-var array<string, array<string, int>>
|
|
||||||
*/
|
|
||||||
private $prefixLengthsPsr4 = array();
|
|
||||||
/**
|
|
||||||
* @var array[]
|
|
||||||
* @psalm-var array<string, array<int, string>>
|
|
||||||
*/
|
|
||||||
private $prefixDirsPsr4 = array();
|
|
||||||
/**
|
|
||||||
* @var array[]
|
|
||||||
* @psalm-var array<string, string>
|
|
||||||
*/
|
|
||||||
private $fallbackDirsPsr4 = array();
|
|
||||||
|
|
||||||
// PSR-0
|
|
||||||
/**
|
|
||||||
* @var array[]
|
|
||||||
* @psalm-var array<string, array<string, string[]>>
|
|
||||||
*/
|
|
||||||
private $prefixesPsr0 = array();
|
|
||||||
/**
|
|
||||||
* @var array[]
|
|
||||||
* @psalm-var array<string, string>
|
|
||||||
*/
|
|
||||||
private $fallbackDirsPsr0 = array();
|
|
||||||
|
|
||||||
/** @var bool */
|
|
||||||
private $useIncludePath = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string[]
|
|
||||||
* @psalm-var array<string, string>
|
|
||||||
*/
|
|
||||||
private $classMap = array();
|
|
||||||
|
|
||||||
/** @var bool */
|
|
||||||
private $classMapAuthoritative = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var bool[]
|
|
||||||
* @psalm-var array<string, bool>
|
|
||||||
*/
|
|
||||||
private $missingClasses = array();
|
|
||||||
|
|
||||||
/** @var ?string */
|
|
||||||
private $apcuPrefix;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var self[]
|
|
||||||
*/
|
|
||||||
private static $registeredLoaders = array();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ?string $vendorDir
|
|
||||||
*/
|
|
||||||
public function __construct($vendorDir = null)
|
|
||||||
{
|
|
||||||
$this->vendorDir = $vendorDir;
|
|
||||||
self::initializeIncludeClosure();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return string[]
|
|
||||||
*/
|
|
||||||
public function getPrefixes()
|
|
||||||
{
|
|
||||||
if (!empty($this->prefixesPsr0)) {
|
|
||||||
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
|
|
||||||
}
|
|
||||||
|
|
||||||
return array();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array[]
|
|
||||||
* @psalm-return array<string, array<int, string>>
|
|
||||||
*/
|
|
||||||
public function getPrefixesPsr4()
|
|
||||||
{
|
|
||||||
return $this->prefixDirsPsr4;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array[]
|
|
||||||
* @psalm-return array<string, string>
|
|
||||||
*/
|
|
||||||
public function getFallbackDirs()
|
|
||||||
{
|
|
||||||
return $this->fallbackDirsPsr0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array[]
|
|
||||||
* @psalm-return array<string, string>
|
|
||||||
*/
|
|
||||||
public function getFallbackDirsPsr4()
|
|
||||||
{
|
|
||||||
return $this->fallbackDirsPsr4;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return string[] Array of classname => path
|
|
||||||
* @psalm-return array<string, string>
|
|
||||||
*/
|
|
||||||
public function getClassMap()
|
|
||||||
{
|
|
||||||
return $this->classMap;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string[] $classMap Class to filename map
|
|
||||||
* @psalm-param array<string, string> $classMap
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function addClassMap(array $classMap)
|
|
||||||
{
|
|
||||||
if ($this->classMap) {
|
|
||||||
$this->classMap = array_merge($this->classMap, $classMap);
|
|
||||||
} else {
|
|
||||||
$this->classMap = $classMap;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Registers a set of PSR-0 directories for a given prefix, either
|
|
||||||
* appending or prepending to the ones previously set for this prefix.
|
|
||||||
*
|
|
||||||
* @param string $prefix The prefix
|
|
||||||
* @param string[]|string $paths The PSR-0 root directories
|
|
||||||
* @param bool $prepend Whether to prepend the directories
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function add($prefix, $paths, $prepend = false)
|
|
||||||
{
|
|
||||||
if (!$prefix) {
|
|
||||||
if ($prepend) {
|
|
||||||
$this->fallbackDirsPsr0 = array_merge(
|
|
||||||
(array) $paths,
|
|
||||||
$this->fallbackDirsPsr0
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
$this->fallbackDirsPsr0 = array_merge(
|
|
||||||
$this->fallbackDirsPsr0,
|
|
||||||
(array) $paths
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$first = $prefix[0];
|
|
||||||
if (!isset($this->prefixesPsr0[$first][$prefix])) {
|
|
||||||
$this->prefixesPsr0[$first][$prefix] = (array) $paths;
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if ($prepend) {
|
|
||||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
|
||||||
(array) $paths,
|
|
||||||
$this->prefixesPsr0[$first][$prefix]
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
|
||||||
$this->prefixesPsr0[$first][$prefix],
|
|
||||||
(array) $paths
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Registers a set of PSR-4 directories for a given namespace, either
|
|
||||||
* appending or prepending to the ones previously set for this namespace.
|
|
||||||
*
|
|
||||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
|
||||||
* @param string[]|string $paths The PSR-4 base directories
|
|
||||||
* @param bool $prepend Whether to prepend the directories
|
|
||||||
*
|
|
||||||
* @throws \InvalidArgumentException
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function addPsr4($prefix, $paths, $prepend = false)
|
|
||||||
{
|
|
||||||
if (!$prefix) {
|
|
||||||
// Register directories for the root namespace.
|
|
||||||
if ($prepend) {
|
|
||||||
$this->fallbackDirsPsr4 = array_merge(
|
|
||||||
(array) $paths,
|
|
||||||
$this->fallbackDirsPsr4
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
$this->fallbackDirsPsr4 = array_merge(
|
|
||||||
$this->fallbackDirsPsr4,
|
|
||||||
(array) $paths
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
|
|
||||||
// Register directories for a new namespace.
|
|
||||||
$length = strlen($prefix);
|
|
||||||
if ('\\' !== $prefix[$length - 1]) {
|
|
||||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
|
||||||
}
|
|
||||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
|
||||||
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
|
||||||
} elseif ($prepend) {
|
|
||||||
// Prepend directories for an already registered namespace.
|
|
||||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
|
||||||
(array) $paths,
|
|
||||||
$this->prefixDirsPsr4[$prefix]
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
// Append directories for an already registered namespace.
|
|
||||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
|
||||||
$this->prefixDirsPsr4[$prefix],
|
|
||||||
(array) $paths
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Registers a set of PSR-0 directories for a given prefix,
|
|
||||||
* replacing any others previously set for this prefix.
|
|
||||||
*
|
|
||||||
* @param string $prefix The prefix
|
|
||||||
* @param string[]|string $paths The PSR-0 base directories
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function set($prefix, $paths)
|
|
||||||
{
|
|
||||||
if (!$prefix) {
|
|
||||||
$this->fallbackDirsPsr0 = (array) $paths;
|
|
||||||
} else {
|
|
||||||
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Registers a set of PSR-4 directories for a given namespace,
|
|
||||||
* replacing any others previously set for this namespace.
|
|
||||||
*
|
|
||||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
|
||||||
* @param string[]|string $paths The PSR-4 base directories
|
|
||||||
*
|
|
||||||
* @throws \InvalidArgumentException
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function setPsr4($prefix, $paths)
|
|
||||||
{
|
|
||||||
if (!$prefix) {
|
|
||||||
$this->fallbackDirsPsr4 = (array) $paths;
|
|
||||||
} else {
|
|
||||||
$length = strlen($prefix);
|
|
||||||
if ('\\' !== $prefix[$length - 1]) {
|
|
||||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
|
||||||
}
|
|
||||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
|
||||||
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Turns on searching the include path for class files.
|
|
||||||
*
|
|
||||||
* @param bool $useIncludePath
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function setUseIncludePath($useIncludePath)
|
|
||||||
{
|
|
||||||
$this->useIncludePath = $useIncludePath;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Can be used to check if the autoloader uses the include path to check
|
|
||||||
* for classes.
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function getUseIncludePath()
|
|
||||||
{
|
|
||||||
return $this->useIncludePath;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Turns off searching the prefix and fallback directories for classes
|
|
||||||
* that have not been registered with the class map.
|
|
||||||
*
|
|
||||||
* @param bool $classMapAuthoritative
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function setClassMapAuthoritative($classMapAuthoritative)
|
|
||||||
{
|
|
||||||
$this->classMapAuthoritative = $classMapAuthoritative;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Should class lookup fail if not found in the current class map?
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function isClassMapAuthoritative()
|
|
||||||
{
|
|
||||||
return $this->classMapAuthoritative;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
|
|
||||||
*
|
|
||||||
* @param string|null $apcuPrefix
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function setApcuPrefix($apcuPrefix)
|
|
||||||
{
|
|
||||||
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The APCu prefix in use, or null if APCu caching is not enabled.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getApcuPrefix()
|
|
||||||
{
|
|
||||||
return $this->apcuPrefix;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Registers this instance as an autoloader.
|
|
||||||
*
|
|
||||||
* @param bool $prepend Whether to prepend the autoloader or not
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function register($prepend = false)
|
|
||||||
{
|
|
||||||
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
|
||||||
|
|
||||||
if (null === $this->vendorDir) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($prepend) {
|
|
||||||
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
|
|
||||||
} else {
|
|
||||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
|
||||||
self::$registeredLoaders[$this->vendorDir] = $this;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Unregisters this instance as an autoloader.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function unregister()
|
|
||||||
{
|
|
||||||
spl_autoload_unregister(array($this, 'loadClass'));
|
|
||||||
|
|
||||||
if (null !== $this->vendorDir) {
|
|
||||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Loads the given class or interface.
|
|
||||||
*
|
|
||||||
* @param string $class The name of the class
|
|
||||||
* @return true|null True if loaded, null otherwise
|
|
||||||
*/
|
|
||||||
public function loadClass($class)
|
|
||||||
{
|
|
||||||
if ($file = $this->findFile($class)) {
|
|
||||||
$includeFile = self::$includeFile;
|
|
||||||
$includeFile($file);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Finds the path to the file where the class is defined.
|
|
||||||
*
|
|
||||||
* @param string $class The name of the class
|
|
||||||
*
|
|
||||||
* @return string|false The path if found, false otherwise
|
|
||||||
*/
|
|
||||||
public function findFile($class)
|
|
||||||
{
|
|
||||||
// class map lookup
|
|
||||||
if (isset($this->classMap[$class])) {
|
|
||||||
return $this->classMap[$class];
|
|
||||||
}
|
|
||||||
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (null !== $this->apcuPrefix) {
|
|
||||||
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
|
|
||||||
if ($hit) {
|
|
||||||
return $file;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$file = $this->findFileWithExtension($class, '.php');
|
|
||||||
|
|
||||||
// Search for Hack files if we are running on HHVM
|
|
||||||
if (false === $file && defined('HHVM_VERSION')) {
|
|
||||||
$file = $this->findFileWithExtension($class, '.hh');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (null !== $this->apcuPrefix) {
|
|
||||||
apcu_add($this->apcuPrefix.$class, $file);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (false === $file) {
|
|
||||||
// Remember that this class does not exist.
|
|
||||||
$this->missingClasses[$class] = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $file;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the currently registered loaders indexed by their corresponding vendor directories.
|
|
||||||
*
|
|
||||||
* @return self[]
|
|
||||||
*/
|
|
||||||
public static function getRegisteredLoaders()
|
|
||||||
{
|
|
||||||
return self::$registeredLoaders;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $class
|
|
||||||
* @param string $ext
|
|
||||||
* @return string|false
|
|
||||||
*/
|
|
||||||
private function findFileWithExtension($class, $ext)
|
|
||||||
{
|
|
||||||
// PSR-4 lookup
|
|
||||||
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
|
|
||||||
|
|
||||||
$first = $class[0];
|
|
||||||
if (isset($this->prefixLengthsPsr4[$first])) {
|
|
||||||
$subPath = $class;
|
|
||||||
while (false !== $lastPos = strrpos($subPath, '\\')) {
|
|
||||||
$subPath = substr($subPath, 0, $lastPos);
|
|
||||||
$search = $subPath . '\\';
|
|
||||||
if (isset($this->prefixDirsPsr4[$search])) {
|
|
||||||
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
|
|
||||||
foreach ($this->prefixDirsPsr4[$search] as $dir) {
|
|
||||||
if (file_exists($file = $dir . $pathEnd)) {
|
|
||||||
return $file;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// PSR-4 fallback dirs
|
|
||||||
foreach ($this->fallbackDirsPsr4 as $dir) {
|
|
||||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
|
|
||||||
return $file;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// PSR-0 lookup
|
|
||||||
if (false !== $pos = strrpos($class, '\\')) {
|
|
||||||
// namespaced class name
|
|
||||||
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
|
|
||||||
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
|
|
||||||
} else {
|
|
||||||
// PEAR-like class name
|
|
||||||
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($this->prefixesPsr0[$first])) {
|
|
||||||
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
|
|
||||||
if (0 === strpos($class, $prefix)) {
|
|
||||||
foreach ($dirs as $dir) {
|
|
||||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
|
||||||
return $file;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// PSR-0 fallback dirs
|
|
||||||
foreach ($this->fallbackDirsPsr0 as $dir) {
|
|
||||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
|
||||||
return $file;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// PSR-0 include paths.
|
|
||||||
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
|
|
||||||
return $file;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private static function initializeIncludeClosure()
|
|
||||||
{
|
|
||||||
if (self::$includeFile !== null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Scope isolated include.
|
|
||||||
*
|
|
||||||
* Prevents access to $this/self from included files.
|
|
||||||
*
|
|
||||||
* @param string $file
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
self::$includeFile = \Closure::bind(static function($file) {
|
|
||||||
include $file;
|
|
||||||
}, null, null);
|
|
||||||
}
|
|
||||||
}
|
|
359
vendor/composer/InstalledVersions.php
vendored
359
vendor/composer/InstalledVersions.php
vendored
@ -1,359 +0,0 @@
|
|||||||
<?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;
|
|
||||||
}
|
|
||||||
}
|
|
656
vendor/composer/autoload_classmap.php
vendored
656
vendor/composer/autoload_classmap.php
vendored
@ -1,656 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
// autoload_classmap.php @generated by Composer
|
|
||||||
|
|
||||||
$vendorDir = dirname(__DIR__);
|
|
||||||
$baseDir = dirname($vendorDir);
|
|
||||||
|
|
||||||
return array(
|
|
||||||
'Collator' => $vendorDir . '/symfony/polyfill-intl-icu/Resources/stubs/Collator.php',
|
|
||||||
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
|
||||||
'DateError' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateError.php',
|
|
||||||
'DateException' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateException.php',
|
|
||||||
'DateInvalidOperationException' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php',
|
|
||||||
'DateInvalidTimeZoneException' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php',
|
|
||||||
'DateMalformedIntervalStringException' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php',
|
|
||||||
'DateMalformedPeriodStringException' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php',
|
|
||||||
'DateMalformedStringException' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php',
|
|
||||||
'DateObjectError' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateObjectError.php',
|
|
||||||
'DateRangeError' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/DateRangeError.php',
|
|
||||||
'IntlDateFormatter' => $vendorDir . '/symfony/polyfill-intl-icu/Resources/stubs/IntlDateFormatter.php',
|
|
||||||
'Locale' => $vendorDir . '/symfony/polyfill-intl-icu/Resources/stubs/Locale.php',
|
|
||||||
'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
|
|
||||||
'NumberFormatter' => $vendorDir . '/symfony/polyfill-intl-icu/Resources/stubs/NumberFormatter.php',
|
|
||||||
'Override' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/Override.php',
|
|
||||||
'PHPUnit\\Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php',
|
|
||||||
'PHPUnit\\Framework\\ActualValueIsNotAnObjectException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ActualValueIsNotAnObjectException.php',
|
|
||||||
'PHPUnit\\Framework\\Assert' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert.php',
|
|
||||||
'PHPUnit\\Framework\\AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/AssertionFailedError.php',
|
|
||||||
'PHPUnit\\Framework\\CodeCoverageException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/CodeCoverageException.php',
|
|
||||||
'PHPUnit\\Framework\\ComparisonMethodDoesNotAcceptParameterTypeException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotAcceptParameterTypeException.php',
|
|
||||||
'PHPUnit\\Framework\\ComparisonMethodDoesNotDeclareBoolReturnTypeException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareBoolReturnTypeException.php',
|
|
||||||
'PHPUnit\\Framework\\ComparisonMethodDoesNotDeclareExactlyOneParameterException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareExactlyOneParameterException.php',
|
|
||||||
'PHPUnit\\Framework\\ComparisonMethodDoesNotDeclareParameterTypeException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareParameterTypeException.php',
|
|
||||||
'PHPUnit\\Framework\\ComparisonMethodDoesNotExistException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotExistException.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\ArrayHasKey' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Traversable/ArrayHasKey.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\BinaryOperator' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/BinaryOperator.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\Callback' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Callback.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\ClassHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Object/ClassHasAttribute.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\ClassHasStaticAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Object/ClassHasStaticAttribute.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\Constraint' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Constraint.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\Count' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/Count.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\DirectoryExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Filesystem/DirectoryExists.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception/Exception.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\ExceptionCode' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionCode.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\ExceptionMessage' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessage.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\ExceptionMessageRegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessageRegularExpression.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\FileExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Filesystem/FileExists.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\GreaterThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/GreaterThan.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsAnything' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsEmpty' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/IsEmpty.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsEqual' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqual.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsEqualCanonicalizing' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualCanonicalizing.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsEqualIgnoringCase' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualIgnoringCase.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsEqualWithDelta' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualWithDelta.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsFalse' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Boolean/IsFalse.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsFinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Math/IsFinite.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsIdentical' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsInfinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Math/IsInfinite.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsInstanceOf' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Type/IsInstanceOf.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsJson' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/String/IsJson.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsNan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Math/IsNan.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsNull' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Type/IsNull.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsReadable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsReadable.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsTrue' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Boolean/IsTrue.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsType' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Type/IsType.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\IsWritable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsWritable.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\JsonMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\JsonMatchesErrorMessageProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\LessThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/LessThan.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\LogicalAnd' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalAnd.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\LogicalNot' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalNot.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\LogicalOr' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalOr.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\LogicalXor' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalXor.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\ObjectEquals' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Object/ObjectEquals.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Object/ObjectHasAttribute.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\ObjectHasProperty' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Object/ObjectHasProperty.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\Operator' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/Operator.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/String/RegularExpression.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\SameSize' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/SameSize.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\StringContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/String/StringContains.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\StringEndsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/String/StringEndsWith.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\StringMatchesFormatDescription' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/String/StringMatchesFormatDescription.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\StringStartsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/String/StringStartsWith.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\TraversableContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContains.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\TraversableContainsEqual' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsEqual.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\TraversableContainsIdentical' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsIdentical.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\TraversableContainsOnly' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsOnly.php',
|
|
||||||
'PHPUnit\\Framework\\Constraint\\UnaryOperator' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/UnaryOperator.php',
|
|
||||||
'PHPUnit\\Framework\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/CoveredCodeNotExecutedException.php',
|
|
||||||
'PHPUnit\\Framework\\DataProviderTestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/DataProviderTestSuite.php',
|
|
||||||
'PHPUnit\\Framework\\Error' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/Error.php',
|
|
||||||
'PHPUnit\\Framework\\ErrorTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/ErrorTestCase.php',
|
|
||||||
'PHPUnit\\Framework\\Error\\Deprecated' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Deprecated.php',
|
|
||||||
'PHPUnit\\Framework\\Error\\Error' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Error.php',
|
|
||||||
'PHPUnit\\Framework\\Error\\Notice' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Notice.php',
|
|
||||||
'PHPUnit\\Framework\\Error\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Warning.php',
|
|
||||||
'PHPUnit\\Framework\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/Exception.php',
|
|
||||||
'PHPUnit\\Framework\\ExceptionWrapper' => $vendorDir . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php',
|
|
||||||
'PHPUnit\\Framework\\ExecutionOrderDependency' => $vendorDir . '/phpunit/phpunit/src/Framework/ExecutionOrderDependency.php',
|
|
||||||
'PHPUnit\\Framework\\ExpectationFailedException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ExpectationFailedException.php',
|
|
||||||
'PHPUnit\\Framework\\IncompleteTest' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTest.php',
|
|
||||||
'PHPUnit\\Framework\\IncompleteTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php',
|
|
||||||
'PHPUnit\\Framework\\IncompleteTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/IncompleteTestError.php',
|
|
||||||
'PHPUnit\\Framework\\InvalidArgumentException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/InvalidArgumentException.php',
|
|
||||||
'PHPUnit\\Framework\\InvalidCoversTargetException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/InvalidCoversTargetException.php',
|
|
||||||
'PHPUnit\\Framework\\InvalidDataProviderException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/InvalidDataProviderException.php',
|
|
||||||
'PHPUnit\\Framework\\InvalidParameterGroupException' => $vendorDir . '/phpunit/phpunit/src/Framework/InvalidParameterGroupException.php',
|
|
||||||
'PHPUnit\\Framework\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/MissingCoversAnnotationException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Api' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Api/Api.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\BadMethodCallException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Builder\\Identity' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/Identity.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationMocker.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Builder\\InvocationStubber' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationStubber.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/MethodNameMatch.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/ParametersMatch.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/Stub.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\CannotUseAddMethodsException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseAddMethodsException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\CannotUseOnlyMethodsException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseOnlyMethodsException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\ClassAlreadyExistsException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ClassAlreadyExistsException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\ClassIsFinalException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ClassIsFinalException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\ClassIsReadonlyException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ClassIsReadonlyException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\ConfigurableMethod' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/ConfigurableMethod.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\ConfigurableMethodsAlreadyInitializedException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ConfigurableMethodsAlreadyInitializedException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\DuplicateMethodException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/DuplicateMethodException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Generator' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\IncompatibleReturnValueException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/IncompatibleReturnValueException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\InvalidMethodNameException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/InvalidMethodNameException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Invocation' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Invocation.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\InvocationHandler' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/InvocationHandler.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MatchBuilderNotFoundException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/MatchBuilderNotFoundException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Matcher' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MatcherAlreadyRegisteredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/MatcherAlreadyRegisteredException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Method' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Api/Method.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MethodCannotBeConfiguredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/MethodCannotBeConfiguredException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MethodNameAlreadyConfiguredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameAlreadyConfiguredException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MethodNameConstraint' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MethodNameConstraint.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MethodNameNotConfiguredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameNotConfiguredException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MethodParametersAlreadyConfiguredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/MethodParametersAlreadyConfiguredException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MockBuilder' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockBuilder.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MockClass' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockClass.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MockMethod' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockMethod.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MockMethodSet' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockMethodSet.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MockObject' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockObject.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MockTrait' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockTrait.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\MockType' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockType.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\OriginalConstructorInvocationRequiredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/OriginalConstructorInvocationRequiredException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\ReflectionException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ReflectionException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\ReturnValueNotConfiguredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ReturnValueNotConfiguredException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Rule\\AnyInvokedCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/AnyInvokedCount.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Rule\\AnyParameters' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/AnyParameters.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Rule\\ConsecutiveParameters' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/ConsecutiveParameters.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Rule\\InvocationOrder' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvocationOrder.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Rule\\InvokedAtIndex' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtIndex.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Rule\\InvokedAtLeastCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtLeastCount.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Rule\\InvokedAtLeastOnce' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtLeastOnce.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Rule\\InvokedAtMostCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtMostCount.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Rule\\InvokedCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedCount.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Rule\\MethodName' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/MethodName.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Rule\\Parameters' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/Parameters.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Rule\\ParametersRule' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/ParametersRule.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\RuntimeException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\SoapExtensionNotAvailableException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/SoapExtensionNotAvailableException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Stub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Stub\\ConsecutiveCalls' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ConsecutiveCalls.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Stub\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/Exception.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Stub\\ReturnArgument' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnArgument.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Stub\\ReturnCallback' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnCallback.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Stub\\ReturnReference' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnReference.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Stub\\ReturnSelf' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnSelf.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Stub\\ReturnStub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnStub.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnValueMap.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Stub\\Stub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/Stub.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\UnknownClassException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownClassException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\UnknownTraitException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownTraitException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\UnknownTypeException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownTypeException.php',
|
|
||||||
'PHPUnit\\Framework\\MockObject\\Verifiable' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Verifiable.php',
|
|
||||||
'PHPUnit\\Framework\\NoChildTestSuiteException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php',
|
|
||||||
'PHPUnit\\Framework\\OutputError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/OutputError.php',
|
|
||||||
'PHPUnit\\Framework\\PHPTAssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/PHPTAssertionFailedError.php',
|
|
||||||
'PHPUnit\\Framework\\Reorderable' => $vendorDir . '/phpunit/phpunit/src/Framework/Reorderable.php',
|
|
||||||
'PHPUnit\\Framework\\RiskyTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/RiskyTestError.php',
|
|
||||||
'PHPUnit\\Framework\\SelfDescribing' => $vendorDir . '/phpunit/phpunit/src/Framework/SelfDescribing.php',
|
|
||||||
'PHPUnit\\Framework\\SkippedTest' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTest.php',
|
|
||||||
'PHPUnit\\Framework\\SkippedTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestCase.php',
|
|
||||||
'PHPUnit\\Framework\\SkippedTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/SkippedTestError.php',
|
|
||||||
'PHPUnit\\Framework\\SkippedTestSuiteError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/SkippedTestSuiteError.php',
|
|
||||||
'PHPUnit\\Framework\\SyntheticError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/SyntheticError.php',
|
|
||||||
'PHPUnit\\Framework\\SyntheticSkippedError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/SyntheticSkippedError.php',
|
|
||||||
'PHPUnit\\Framework\\Test' => $vendorDir . '/phpunit/phpunit/src/Framework/Test.php',
|
|
||||||
'PHPUnit\\Framework\\TestBuilder' => $vendorDir . '/phpunit/phpunit/src/Framework/TestBuilder.php',
|
|
||||||
'PHPUnit\\Framework\\TestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/TestCase.php',
|
|
||||||
'PHPUnit\\Framework\\TestFailure' => $vendorDir . '/phpunit/phpunit/src/Framework/TestFailure.php',
|
|
||||||
'PHPUnit\\Framework\\TestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListener.php',
|
|
||||||
'PHPUnit\\Framework\\TestListenerDefaultImplementation' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php',
|
|
||||||
'PHPUnit\\Framework\\TestResult' => $vendorDir . '/phpunit/phpunit/src/Framework/TestResult.php',
|
|
||||||
'PHPUnit\\Framework\\TestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite.php',
|
|
||||||
'PHPUnit\\Framework\\TestSuiteIterator' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuiteIterator.php',
|
|
||||||
'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/UnintentionallyCoveredCodeError.php',
|
|
||||||
'PHPUnit\\Framework\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/Warning.php',
|
|
||||||
'PHPUnit\\Framework\\WarningTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/WarningTestCase.php',
|
|
||||||
'PHPUnit\\Runner\\AfterIncompleteTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterIncompleteTestHook.php',
|
|
||||||
'PHPUnit\\Runner\\AfterLastTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterLastTestHook.php',
|
|
||||||
'PHPUnit\\Runner\\AfterRiskyTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterRiskyTestHook.php',
|
|
||||||
'PHPUnit\\Runner\\AfterSkippedTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterSkippedTestHook.php',
|
|
||||||
'PHPUnit\\Runner\\AfterSuccessfulTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterSuccessfulTestHook.php',
|
|
||||||
'PHPUnit\\Runner\\AfterTestErrorHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestErrorHook.php',
|
|
||||||
'PHPUnit\\Runner\\AfterTestFailureHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestFailureHook.php',
|
|
||||||
'PHPUnit\\Runner\\AfterTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestHook.php',
|
|
||||||
'PHPUnit\\Runner\\AfterTestWarningHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestWarningHook.php',
|
|
||||||
'PHPUnit\\Runner\\BaseTestRunner' => $vendorDir . '/phpunit/phpunit/src/Runner/BaseTestRunner.php',
|
|
||||||
'PHPUnit\\Runner\\BeforeFirstTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/BeforeFirstTestHook.php',
|
|
||||||
'PHPUnit\\Runner\\BeforeTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/BeforeTestHook.php',
|
|
||||||
'PHPUnit\\Runner\\DefaultTestResultCache' => $vendorDir . '/phpunit/phpunit/src/Runner/DefaultTestResultCache.php',
|
|
||||||
'PHPUnit\\Runner\\Exception' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception.php',
|
|
||||||
'PHPUnit\\Runner\\Extension\\ExtensionHandler' => $vendorDir . '/phpunit/phpunit/src/Runner/Extension/ExtensionHandler.php',
|
|
||||||
'PHPUnit\\Runner\\Extension\\PharLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/Extension/PharLoader.php',
|
|
||||||
'PHPUnit\\Runner\\Filter\\ExcludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php',
|
|
||||||
'PHPUnit\\Runner\\Filter\\Factory' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Factory.php',
|
|
||||||
'PHPUnit\\Runner\\Filter\\GroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php',
|
|
||||||
'PHPUnit\\Runner\\Filter\\IncludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php',
|
|
||||||
'PHPUnit\\Runner\\Filter\\NameFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php',
|
|
||||||
'PHPUnit\\Runner\\Hook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/Hook.php',
|
|
||||||
'PHPUnit\\Runner\\NullTestResultCache' => $vendorDir . '/phpunit/phpunit/src/Runner/NullTestResultCache.php',
|
|
||||||
'PHPUnit\\Runner\\PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Runner/PhptTestCase.php',
|
|
||||||
'PHPUnit\\Runner\\ResultCacheExtension' => $vendorDir . '/phpunit/phpunit/src/Runner/ResultCacheExtension.php',
|
|
||||||
'PHPUnit\\Runner\\StandardTestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php',
|
|
||||||
'PHPUnit\\Runner\\TestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/TestHook.php',
|
|
||||||
'PHPUnit\\Runner\\TestListenerAdapter' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/TestListenerAdapter.php',
|
|
||||||
'PHPUnit\\Runner\\TestResultCache' => $vendorDir . '/phpunit/phpunit/src/Runner/TestResultCache.php',
|
|
||||||
'PHPUnit\\Runner\\TestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php',
|
|
||||||
'PHPUnit\\Runner\\TestSuiteSorter' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteSorter.php',
|
|
||||||
'PHPUnit\\Runner\\Version' => $vendorDir . '/phpunit/phpunit/src/Runner/Version.php',
|
|
||||||
'PHPUnit\\TextUI\\CliArguments\\Builder' => $vendorDir . '/phpunit/phpunit/src/TextUI/CliArguments/Builder.php',
|
|
||||||
'PHPUnit\\TextUI\\CliArguments\\Configuration' => $vendorDir . '/phpunit/phpunit/src/TextUI/CliArguments/Configuration.php',
|
|
||||||
'PHPUnit\\TextUI\\CliArguments\\Exception' => $vendorDir . '/phpunit/phpunit/src/TextUI/CliArguments/Exception.php',
|
|
||||||
'PHPUnit\\TextUI\\CliArguments\\Mapper' => $vendorDir . '/phpunit/phpunit/src/TextUI/CliArguments/Mapper.php',
|
|
||||||
'PHPUnit\\TextUI\\Command' => $vendorDir . '/phpunit/phpunit/src/TextUI/Command.php',
|
|
||||||
'PHPUnit\\TextUI\\DefaultResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/DefaultResultPrinter.php',
|
|
||||||
'PHPUnit\\TextUI\\Exception' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/Exception.php',
|
|
||||||
'PHPUnit\\TextUI\\Help' => $vendorDir . '/phpunit/phpunit/src/TextUI/Help.php',
|
|
||||||
'PHPUnit\\TextUI\\ReflectionException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/ReflectionException.php',
|
|
||||||
'PHPUnit\\TextUI\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/ResultPrinter.php',
|
|
||||||
'PHPUnit\\TextUI\\RuntimeException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/RuntimeException.php',
|
|
||||||
'PHPUnit\\TextUI\\TestDirectoryNotFoundException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/TestDirectoryNotFoundException.php',
|
|
||||||
'PHPUnit\\TextUI\\TestFileNotFoundException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/TestFileNotFoundException.php',
|
|
||||||
'PHPUnit\\TextUI\\TestRunner' => $vendorDir . '/phpunit/phpunit/src/TextUI/TestRunner.php',
|
|
||||||
'PHPUnit\\TextUI\\TestSuiteMapper' => $vendorDir . '/phpunit/phpunit/src/TextUI/TestSuiteMapper.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/CodeCoverage.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\FilterMapper' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/FilterMapper.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Filter\\Directory' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/Directory.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Filter\\DirectoryCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollection.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Filter\\DirectoryCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollectionIterator.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Clover' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Clover.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Cobertura' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Cobertura.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Crap4j' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Crap4j.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Html' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Html.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Php' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Php.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Text' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Text.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Xml' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Xml.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Configuration' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Configuration.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Constant' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Constant.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\ConstantCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/ConstantCollection.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\ConstantCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/ConstantCollectionIterator.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\ConvertLogTypes' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/ConvertLogTypes.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CoverageCloverToReport' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageCloverToReport.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CoverageCrap4jToReport' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageCrap4jToReport.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CoverageHtmlToReport' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageHtmlToReport.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CoveragePhpToReport' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoveragePhpToReport.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CoverageTextToReport' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageTextToReport.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\CoverageXmlToReport' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageXmlToReport.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Directory' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/Directory.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\DirectoryCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/DirectoryCollection.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\DirectoryCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/DirectoryCollectionIterator.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Exception' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Exception.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Extension' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/Extension.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\ExtensionCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/ExtensionCollection.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\ExtensionCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/ExtensionCollectionIterator.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\File' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/File.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\FileCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/FileCollection.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\FileCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/FileCollectionIterator.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Generator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Generator.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Group' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/Group.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\GroupCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/GroupCollection.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\GroupCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/GroupCollectionIterator.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Groups' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/Groups.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\IniSetting' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSetting.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\IniSettingCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSettingCollection.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\IniSettingCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSettingCollectionIterator.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\IntroduceCoverageElement' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/IntroduceCoverageElement.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Loader' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Loader.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\LogToReportMigration' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/LogToReportMigration.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\Junit' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Junit.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\Logging' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Logging.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TeamCity' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TeamCity.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TestDox\\Html' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Html.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TestDox\\Text' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Text.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TestDox\\Xml' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Xml.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\Text' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Text.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Migration' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/Migration.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\MigrationBuilder' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationBuilder.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\MigrationBuilderException' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationBuilderException.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\MigrationException' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationException.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Migrator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrator.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\MoveAttributesFromFilterWhitelistToCoverage' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\MoveAttributesFromRootToCoverage' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromRootToCoverage.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\MoveWhitelistExcludesToCoverage' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistExcludesToCoverage.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\MoveWhitelistIncludesToCoverage' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistIncludesToCoverage.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\PHPUnit' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/PHPUnit.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Php' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Php.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\PhpHandler' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/PhpHandler.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\RemoveCacheTokensAttribute' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveCacheTokensAttribute.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\RemoveEmptyFilter' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveEmptyFilter.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\RemoveLogTypes' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveLogTypes.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\TestDirectory' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectory.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\TestDirectoryCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollection.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\TestDirectoryCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollectionIterator.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\TestFile' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFile.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\TestFileCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFileCollection.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\TestFileCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFileCollectionIterator.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\TestSuite' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuite.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\TestSuiteCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuiteCollection.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\TestSuiteCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuiteCollectionIterator.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\UpdateSchemaLocationTo93' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/UpdateSchemaLocationTo93.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\Variable' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Variable.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\VariableCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/VariableCollection.php',
|
|
||||||
'PHPUnit\\TextUI\\XmlConfiguration\\VariableCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/VariableCollectionIterator.php',
|
|
||||||
'PHPUnit\\Util\\Annotation\\DocBlock' => $vendorDir . '/phpunit/phpunit/src/Util/Annotation/DocBlock.php',
|
|
||||||
'PHPUnit\\Util\\Annotation\\Registry' => $vendorDir . '/phpunit/phpunit/src/Util/Annotation/Registry.php',
|
|
||||||
'PHPUnit\\Util\\Blacklist' => $vendorDir . '/phpunit/phpunit/src/Util/Blacklist.php',
|
|
||||||
'PHPUnit\\Util\\Cloner' => $vendorDir . '/phpunit/phpunit/src/Util/Cloner.php',
|
|
||||||
'PHPUnit\\Util\\Color' => $vendorDir . '/phpunit/phpunit/src/Util/Color.php',
|
|
||||||
'PHPUnit\\Util\\ErrorHandler' => $vendorDir . '/phpunit/phpunit/src/Util/ErrorHandler.php',
|
|
||||||
'PHPUnit\\Util\\Exception' => $vendorDir . '/phpunit/phpunit/src/Util/Exception.php',
|
|
||||||
'PHPUnit\\Util\\ExcludeList' => $vendorDir . '/phpunit/phpunit/src/Util/ExcludeList.php',
|
|
||||||
'PHPUnit\\Util\\FileLoader' => $vendorDir . '/phpunit/phpunit/src/Util/FileLoader.php',
|
|
||||||
'PHPUnit\\Util\\Filesystem' => $vendorDir . '/phpunit/phpunit/src/Util/Filesystem.php',
|
|
||||||
'PHPUnit\\Util\\Filter' => $vendorDir . '/phpunit/phpunit/src/Util/Filter.php',
|
|
||||||
'PHPUnit\\Util\\GlobalState' => $vendorDir . '/phpunit/phpunit/src/Util/GlobalState.php',
|
|
||||||
'PHPUnit\\Util\\InvalidDataSetException' => $vendorDir . '/phpunit/phpunit/src/Util/InvalidDataSetException.php',
|
|
||||||
'PHPUnit\\Util\\Json' => $vendorDir . '/phpunit/phpunit/src/Util/Json.php',
|
|
||||||
'PHPUnit\\Util\\Log\\JUnit' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JUnit.php',
|
|
||||||
'PHPUnit\\Util\\Log\\TeamCity' => $vendorDir . '/phpunit/phpunit/src/Util/Log/TeamCity.php',
|
|
||||||
'PHPUnit\\Util\\PHP\\AbstractPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php',
|
|
||||||
'PHPUnit\\Util\\PHP\\DefaultPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php',
|
|
||||||
'PHPUnit\\Util\\PHP\\WindowsPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php',
|
|
||||||
'PHPUnit\\Util\\Printer' => $vendorDir . '/phpunit/phpunit/src/Util/Printer.php',
|
|
||||||
'PHPUnit\\Util\\Reflection' => $vendorDir . '/phpunit/phpunit/src/Util/Reflection.php',
|
|
||||||
'PHPUnit\\Util\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Util/RegularExpression.php',
|
|
||||||
'PHPUnit\\Util\\Test' => $vendorDir . '/phpunit/phpunit/src/Util/Test.php',
|
|
||||||
'PHPUnit\\Util\\TestDox\\CliTestDoxPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/CliTestDoxPrinter.php',
|
|
||||||
'PHPUnit\\Util\\TestDox\\HtmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php',
|
|
||||||
'PHPUnit\\Util\\TestDox\\NamePrettifier' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php',
|
|
||||||
'PHPUnit\\Util\\TestDox\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php',
|
|
||||||
'PHPUnit\\Util\\TestDox\\TestDoxPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/TestDoxPrinter.php',
|
|
||||||
'PHPUnit\\Util\\TestDox\\TextResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php',
|
|
||||||
'PHPUnit\\Util\\TestDox\\XmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php',
|
|
||||||
'PHPUnit\\Util\\TextTestListRenderer' => $vendorDir . '/phpunit/phpunit/src/Util/TextTestListRenderer.php',
|
|
||||||
'PHPUnit\\Util\\Type' => $vendorDir . '/phpunit/phpunit/src/Util/Type.php',
|
|
||||||
'PHPUnit\\Util\\VersionComparisonOperator' => $vendorDir . '/phpunit/phpunit/src/Util/VersionComparisonOperator.php',
|
|
||||||
'PHPUnit\\Util\\XdebugFilterScriptGenerator' => $vendorDir . '/phpunit/phpunit/src/Util/XdebugFilterScriptGenerator.php',
|
|
||||||
'PHPUnit\\Util\\Xml' => $vendorDir . '/phpunit/phpunit/src/Util/Xml.php',
|
|
||||||
'PHPUnit\\Util\\XmlTestListRenderer' => $vendorDir . '/phpunit/phpunit/src/Util/XmlTestListRenderer.php',
|
|
||||||
'PHPUnit\\Util\\Xml\\Exception' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/Exception.php',
|
|
||||||
'PHPUnit\\Util\\Xml\\FailedSchemaDetectionResult' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/FailedSchemaDetectionResult.php',
|
|
||||||
'PHPUnit\\Util\\Xml\\Loader' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/Loader.php',
|
|
||||||
'PHPUnit\\Util\\Xml\\SchemaDetectionResult' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/SchemaDetectionResult.php',
|
|
||||||
'PHPUnit\\Util\\Xml\\SchemaDetector' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/SchemaDetector.php',
|
|
||||||
'PHPUnit\\Util\\Xml\\SchemaFinder' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/SchemaFinder.php',
|
|
||||||
'PHPUnit\\Util\\Xml\\SnapshotNodeList' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/SnapshotNodeList.php',
|
|
||||||
'PHPUnit\\Util\\Xml\\SuccessfulSchemaDetectionResult' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/SuccessfulSchemaDetectionResult.php',
|
|
||||||
'PHPUnit\\Util\\Xml\\ValidationResult' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/ValidationResult.php',
|
|
||||||
'PHPUnit\\Util\\Xml\\Validator' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/Validator.php',
|
|
||||||
'PharIo\\Manifest\\Application' => $vendorDir . '/phar-io/manifest/src/values/Application.php',
|
|
||||||
'PharIo\\Manifest\\ApplicationName' => $vendorDir . '/phar-io/manifest/src/values/ApplicationName.php',
|
|
||||||
'PharIo\\Manifest\\Author' => $vendorDir . '/phar-io/manifest/src/values/Author.php',
|
|
||||||
'PharIo\\Manifest\\AuthorCollection' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollection.php',
|
|
||||||
'PharIo\\Manifest\\AuthorCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollectionIterator.php',
|
|
||||||
'PharIo\\Manifest\\AuthorElement' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElement.php',
|
|
||||||
'PharIo\\Manifest\\AuthorElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElementCollection.php',
|
|
||||||
'PharIo\\Manifest\\BundledComponent' => $vendorDir . '/phar-io/manifest/src/values/BundledComponent.php',
|
|
||||||
'PharIo\\Manifest\\BundledComponentCollection' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollection.php',
|
|
||||||
'PharIo\\Manifest\\BundledComponentCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollectionIterator.php',
|
|
||||||
'PharIo\\Manifest\\BundlesElement' => $vendorDir . '/phar-io/manifest/src/xml/BundlesElement.php',
|
|
||||||
'PharIo\\Manifest\\ComponentElement' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElement.php',
|
|
||||||
'PharIo\\Manifest\\ComponentElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElementCollection.php',
|
|
||||||
'PharIo\\Manifest\\ContainsElement' => $vendorDir . '/phar-io/manifest/src/xml/ContainsElement.php',
|
|
||||||
'PharIo\\Manifest\\CopyrightElement' => $vendorDir . '/phar-io/manifest/src/xml/CopyrightElement.php',
|
|
||||||
'PharIo\\Manifest\\CopyrightInformation' => $vendorDir . '/phar-io/manifest/src/values/CopyrightInformation.php',
|
|
||||||
'PharIo\\Manifest\\ElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ElementCollection.php',
|
|
||||||
'PharIo\\Manifest\\ElementCollectionException' => $vendorDir . '/phar-io/manifest/src/exceptions/ElementCollectionException.php',
|
|
||||||
'PharIo\\Manifest\\Email' => $vendorDir . '/phar-io/manifest/src/values/Email.php',
|
|
||||||
'PharIo\\Manifest\\Exception' => $vendorDir . '/phar-io/manifest/src/exceptions/Exception.php',
|
|
||||||
'PharIo\\Manifest\\ExtElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtElement.php',
|
|
||||||
'PharIo\\Manifest\\ExtElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ExtElementCollection.php',
|
|
||||||
'PharIo\\Manifest\\Extension' => $vendorDir . '/phar-io/manifest/src/values/Extension.php',
|
|
||||||
'PharIo\\Manifest\\ExtensionElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtensionElement.php',
|
|
||||||
'PharIo\\Manifest\\InvalidApplicationNameException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php',
|
|
||||||
'PharIo\\Manifest\\InvalidEmailException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidEmailException.php',
|
|
||||||
'PharIo\\Manifest\\InvalidUrlException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidUrlException.php',
|
|
||||||
'PharIo\\Manifest\\Library' => $vendorDir . '/phar-io/manifest/src/values/Library.php',
|
|
||||||
'PharIo\\Manifest\\License' => $vendorDir . '/phar-io/manifest/src/values/License.php',
|
|
||||||
'PharIo\\Manifest\\LicenseElement' => $vendorDir . '/phar-io/manifest/src/xml/LicenseElement.php',
|
|
||||||
'PharIo\\Manifest\\Manifest' => $vendorDir . '/phar-io/manifest/src/values/Manifest.php',
|
|
||||||
'PharIo\\Manifest\\ManifestDocument' => $vendorDir . '/phar-io/manifest/src/xml/ManifestDocument.php',
|
|
||||||
'PharIo\\Manifest\\ManifestDocumentException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentException.php',
|
|
||||||
'PharIo\\Manifest\\ManifestDocumentLoadingException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentLoadingException.php',
|
|
||||||
'PharIo\\Manifest\\ManifestDocumentMapper' => $vendorDir . '/phar-io/manifest/src/ManifestDocumentMapper.php',
|
|
||||||
'PharIo\\Manifest\\ManifestDocumentMapperException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php',
|
|
||||||
'PharIo\\Manifest\\ManifestElement' => $vendorDir . '/phar-io/manifest/src/xml/ManifestElement.php',
|
|
||||||
'PharIo\\Manifest\\ManifestElementException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestElementException.php',
|
|
||||||
'PharIo\\Manifest\\ManifestLoader' => $vendorDir . '/phar-io/manifest/src/ManifestLoader.php',
|
|
||||||
'PharIo\\Manifest\\ManifestLoaderException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestLoaderException.php',
|
|
||||||
'PharIo\\Manifest\\ManifestSerializer' => $vendorDir . '/phar-io/manifest/src/ManifestSerializer.php',
|
|
||||||
'PharIo\\Manifest\\NoEmailAddressException' => $vendorDir . '/phar-io/manifest/src/exceptions/NoEmailAddressException.php',
|
|
||||||
'PharIo\\Manifest\\PhpElement' => $vendorDir . '/phar-io/manifest/src/xml/PhpElement.php',
|
|
||||||
'PharIo\\Manifest\\PhpExtensionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpExtensionRequirement.php',
|
|
||||||
'PharIo\\Manifest\\PhpVersionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpVersionRequirement.php',
|
|
||||||
'PharIo\\Manifest\\Requirement' => $vendorDir . '/phar-io/manifest/src/values/Requirement.php',
|
|
||||||
'PharIo\\Manifest\\RequirementCollection' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollection.php',
|
|
||||||
'PharIo\\Manifest\\RequirementCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollectionIterator.php',
|
|
||||||
'PharIo\\Manifest\\RequiresElement' => $vendorDir . '/phar-io/manifest/src/xml/RequiresElement.php',
|
|
||||||
'PharIo\\Manifest\\Type' => $vendorDir . '/phar-io/manifest/src/values/Type.php',
|
|
||||||
'PharIo\\Manifest\\Url' => $vendorDir . '/phar-io/manifest/src/values/Url.php',
|
|
||||||
'PharIo\\Version\\AbstractVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/AbstractVersionConstraint.php',
|
|
||||||
'PharIo\\Version\\AndVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/constraints/AndVersionConstraintGroup.php',
|
|
||||||
'PharIo\\Version\\AnyVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/AnyVersionConstraint.php',
|
|
||||||
'PharIo\\Version\\BuildMetaData' => $vendorDir . '/phar-io/version/src/BuildMetaData.php',
|
|
||||||
'PharIo\\Version\\ExactVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/ExactVersionConstraint.php',
|
|
||||||
'PharIo\\Version\\Exception' => $vendorDir . '/phar-io/version/src/exceptions/Exception.php',
|
|
||||||
'PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/GreaterThanOrEqualToVersionConstraint.php',
|
|
||||||
'PharIo\\Version\\InvalidPreReleaseSuffixException' => $vendorDir . '/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php',
|
|
||||||
'PharIo\\Version\\InvalidVersionException' => $vendorDir . '/phar-io/version/src/exceptions/InvalidVersionException.php',
|
|
||||||
'PharIo\\Version\\NoBuildMetaDataException' => $vendorDir . '/phar-io/version/src/exceptions/NoBuildMetaDataException.php',
|
|
||||||
'PharIo\\Version\\NoPreReleaseSuffixException' => $vendorDir . '/phar-io/version/src/exceptions/NoPreReleaseSuffixException.php',
|
|
||||||
'PharIo\\Version\\OrVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/constraints/OrVersionConstraintGroup.php',
|
|
||||||
'PharIo\\Version\\PreReleaseSuffix' => $vendorDir . '/phar-io/version/src/PreReleaseSuffix.php',
|
|
||||||
'PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/SpecificMajorAndMinorVersionConstraint.php',
|
|
||||||
'PharIo\\Version\\SpecificMajorVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/SpecificMajorVersionConstraint.php',
|
|
||||||
'PharIo\\Version\\UnsupportedVersionConstraintException' => $vendorDir . '/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.php',
|
|
||||||
'PharIo\\Version\\Version' => $vendorDir . '/phar-io/version/src/Version.php',
|
|
||||||
'PharIo\\Version\\VersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/VersionConstraint.php',
|
|
||||||
'PharIo\\Version\\VersionConstraintParser' => $vendorDir . '/phar-io/version/src/VersionConstraintParser.php',
|
|
||||||
'PharIo\\Version\\VersionConstraintValue' => $vendorDir . '/phar-io/version/src/VersionConstraintValue.php',
|
|
||||||
'PharIo\\Version\\VersionNumber' => $vendorDir . '/phar-io/version/src/VersionNumber.php',
|
|
||||||
'SQLite3Exception' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/SQLite3Exception.php',
|
|
||||||
'SebastianBergmann\\CliParser\\AmbiguousOptionException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/AmbiguousOptionException.php',
|
|
||||||
'SebastianBergmann\\CliParser\\Exception' => $vendorDir . '/sebastian/cli-parser/src/exceptions/Exception.php',
|
|
||||||
'SebastianBergmann\\CliParser\\OptionDoesNotAllowArgumentException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/OptionDoesNotAllowArgumentException.php',
|
|
||||||
'SebastianBergmann\\CliParser\\Parser' => $vendorDir . '/sebastian/cli-parser/src/Parser.php',
|
|
||||||
'SebastianBergmann\\CliParser\\RequiredOptionArgumentMissingException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/RequiredOptionArgumentMissingException.php',
|
|
||||||
'SebastianBergmann\\CliParser\\UnknownOptionException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/UnknownOptionException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\BranchAndPathCoverageNotSupportedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/BranchAndPathCoverageNotSupportedException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\DeadCodeDetectionNotSupportedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/DeadCodeDetectionNotSupportedException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Driver.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\PathExistsButIsNotDirectoryException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/PathExistsButIsNotDirectoryException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\PcovDriver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/PcovDriver.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\PcovNotAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/PcovNotAvailableException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgDriver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/PhpdbgDriver.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgNotAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/PhpdbgNotAvailableException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\Selector' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Selector.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\WriteOperationFailedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/WriteOperationFailedException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\WrongXdebugVersionException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/WrongXdebugVersionException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Xdebug2Driver.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2NotEnabledException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Xdebug2NotEnabledException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Xdebug3Driver.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3NotEnabledException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Xdebug3NotEnabledException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Driver\\XdebugNotAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/XdebugNotAvailableException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Exception' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Exception.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Filter' => $vendorDir . '/phpunit/php-code-coverage/src/Filter.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverAvailableException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverWithPathCoverageSupportAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => $vendorDir . '/phpunit/php-code-coverage/src/Node/AbstractNode.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Node\\Builder' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Builder.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Node\\CrapIndex' => $vendorDir . '/phpunit/php-code-coverage/src/Node/CrapIndex.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Node\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Directory.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Node\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Node/File.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Iterator.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\ParserException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/ParserException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\ProcessedCodeCoverageData' => $vendorDir . '/phpunit/php-code-coverage/src/ProcessedCodeCoverageData.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\RawCodeCoverageData' => $vendorDir . '/phpunit/php-code-coverage/src/RawCodeCoverageData.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\ReflectionException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/ReflectionException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\ReportAlreadyFinalizedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/ReportAlreadyFinalizedException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Clover' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Clover.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Cobertura' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Cobertura.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Crap4j.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Facade.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\PHP' => $vendorDir . '/phpunit/php-code-coverage/src/Report/PHP.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Text' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Text.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/File.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Method.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Node.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Project.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Report.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Source.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\StaticAnalysisCacheNotConfiguredException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/StaticAnalysisCacheNotConfiguredException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CacheWarmer' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/CacheWarmer.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CachingFileAnalyser' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/CachingFileAnalyser.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CodeUnitFindingVisitor' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/CodeUnitFindingVisitor.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ExecutableLinesFindingVisitor' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/ExecutableLinesFindingVisitor.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\FileAnalyser' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/FileAnalyser.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\IgnoredLinesFindingVisitor' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/IgnoredLinesFindingVisitor.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ParsingFileAnalyser' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/ParsingFileAnalyser.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\TestIdMissingException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/TestIdMissingException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Util\\DirectoryCouldNotBeCreatedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/DirectoryCouldNotBeCreatedException.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Util\\Filesystem' => $vendorDir . '/phpunit/php-code-coverage/src/Util/Filesystem.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Util\\Percentage' => $vendorDir . '/phpunit/php-code-coverage/src/Util/Percentage.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\Version' => $vendorDir . '/phpunit/php-code-coverage/src/Version.php',
|
|
||||||
'SebastianBergmann\\CodeCoverage\\XmlException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/XmlException.php',
|
|
||||||
'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => $vendorDir . '/sebastian/code-unit-reverse-lookup/src/Wizard.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\ClassMethodUnit' => $vendorDir . '/sebastian/code-unit/src/ClassMethodUnit.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\ClassUnit' => $vendorDir . '/sebastian/code-unit/src/ClassUnit.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\CodeUnit' => $vendorDir . '/sebastian/code-unit/src/CodeUnit.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\CodeUnitCollection' => $vendorDir . '/sebastian/code-unit/src/CodeUnitCollection.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\CodeUnitCollectionIterator' => $vendorDir . '/sebastian/code-unit/src/CodeUnitCollectionIterator.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\Exception' => $vendorDir . '/sebastian/code-unit/src/exceptions/Exception.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\FunctionUnit' => $vendorDir . '/sebastian/code-unit/src/FunctionUnit.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\InterfaceMethodUnit' => $vendorDir . '/sebastian/code-unit/src/InterfaceMethodUnit.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\InterfaceUnit' => $vendorDir . '/sebastian/code-unit/src/InterfaceUnit.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\InvalidCodeUnitException' => $vendorDir . '/sebastian/code-unit/src/exceptions/InvalidCodeUnitException.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\Mapper' => $vendorDir . '/sebastian/code-unit/src/Mapper.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\NoTraitException' => $vendorDir . '/sebastian/code-unit/src/exceptions/NoTraitException.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\ReflectionException' => $vendorDir . '/sebastian/code-unit/src/exceptions/ReflectionException.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\TraitMethodUnit' => $vendorDir . '/sebastian/code-unit/src/TraitMethodUnit.php',
|
|
||||||
'SebastianBergmann\\CodeUnit\\TraitUnit' => $vendorDir . '/sebastian/code-unit/src/TraitUnit.php',
|
|
||||||
'SebastianBergmann\\Comparator\\ArrayComparator' => $vendorDir . '/sebastian/comparator/src/ArrayComparator.php',
|
|
||||||
'SebastianBergmann\\Comparator\\Comparator' => $vendorDir . '/sebastian/comparator/src/Comparator.php',
|
|
||||||
'SebastianBergmann\\Comparator\\ComparisonFailure' => $vendorDir . '/sebastian/comparator/src/ComparisonFailure.php',
|
|
||||||
'SebastianBergmann\\Comparator\\DOMNodeComparator' => $vendorDir . '/sebastian/comparator/src/DOMNodeComparator.php',
|
|
||||||
'SebastianBergmann\\Comparator\\DateTimeComparator' => $vendorDir . '/sebastian/comparator/src/DateTimeComparator.php',
|
|
||||||
'SebastianBergmann\\Comparator\\DoubleComparator' => $vendorDir . '/sebastian/comparator/src/DoubleComparator.php',
|
|
||||||
'SebastianBergmann\\Comparator\\Exception' => $vendorDir . '/sebastian/comparator/src/exceptions/Exception.php',
|
|
||||||
'SebastianBergmann\\Comparator\\ExceptionComparator' => $vendorDir . '/sebastian/comparator/src/ExceptionComparator.php',
|
|
||||||
'SebastianBergmann\\Comparator\\Factory' => $vendorDir . '/sebastian/comparator/src/Factory.php',
|
|
||||||
'SebastianBergmann\\Comparator\\MockObjectComparator' => $vendorDir . '/sebastian/comparator/src/MockObjectComparator.php',
|
|
||||||
'SebastianBergmann\\Comparator\\NumericComparator' => $vendorDir . '/sebastian/comparator/src/NumericComparator.php',
|
|
||||||
'SebastianBergmann\\Comparator\\ObjectComparator' => $vendorDir . '/sebastian/comparator/src/ObjectComparator.php',
|
|
||||||
'SebastianBergmann\\Comparator\\ResourceComparator' => $vendorDir . '/sebastian/comparator/src/ResourceComparator.php',
|
|
||||||
'SebastianBergmann\\Comparator\\RuntimeException' => $vendorDir . '/sebastian/comparator/src/exceptions/RuntimeException.php',
|
|
||||||
'SebastianBergmann\\Comparator\\ScalarComparator' => $vendorDir . '/sebastian/comparator/src/ScalarComparator.php',
|
|
||||||
'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => $vendorDir . '/sebastian/comparator/src/SplObjectStorageComparator.php',
|
|
||||||
'SebastianBergmann\\Comparator\\TypeComparator' => $vendorDir . '/sebastian/comparator/src/TypeComparator.php',
|
|
||||||
'SebastianBergmann\\Complexity\\Calculator' => $vendorDir . '/sebastian/complexity/src/Calculator.php',
|
|
||||||
'SebastianBergmann\\Complexity\\Complexity' => $vendorDir . '/sebastian/complexity/src/Complexity/Complexity.php',
|
|
||||||
'SebastianBergmann\\Complexity\\ComplexityCalculatingVisitor' => $vendorDir . '/sebastian/complexity/src/Visitor/ComplexityCalculatingVisitor.php',
|
|
||||||
'SebastianBergmann\\Complexity\\ComplexityCollection' => $vendorDir . '/sebastian/complexity/src/Complexity/ComplexityCollection.php',
|
|
||||||
'SebastianBergmann\\Complexity\\ComplexityCollectionIterator' => $vendorDir . '/sebastian/complexity/src/Complexity/ComplexityCollectionIterator.php',
|
|
||||||
'SebastianBergmann\\Complexity\\CyclomaticComplexityCalculatingVisitor' => $vendorDir . '/sebastian/complexity/src/Visitor/CyclomaticComplexityCalculatingVisitor.php',
|
|
||||||
'SebastianBergmann\\Complexity\\Exception' => $vendorDir . '/sebastian/complexity/src/Exception/Exception.php',
|
|
||||||
'SebastianBergmann\\Complexity\\RuntimeException' => $vendorDir . '/sebastian/complexity/src/Exception/RuntimeException.php',
|
|
||||||
'SebastianBergmann\\Diff\\Chunk' => $vendorDir . '/sebastian/diff/src/Chunk.php',
|
|
||||||
'SebastianBergmann\\Diff\\ConfigurationException' => $vendorDir . '/sebastian/diff/src/Exception/ConfigurationException.php',
|
|
||||||
'SebastianBergmann\\Diff\\Diff' => $vendorDir . '/sebastian/diff/src/Diff.php',
|
|
||||||
'SebastianBergmann\\Diff\\Differ' => $vendorDir . '/sebastian/diff/src/Differ.php',
|
|
||||||
'SebastianBergmann\\Diff\\Exception' => $vendorDir . '/sebastian/diff/src/Exception/Exception.php',
|
|
||||||
'SebastianBergmann\\Diff\\InvalidArgumentException' => $vendorDir . '/sebastian/diff/src/Exception/InvalidArgumentException.php',
|
|
||||||
'SebastianBergmann\\Diff\\Line' => $vendorDir . '/sebastian/diff/src/Line.php',
|
|
||||||
'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php',
|
|
||||||
'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php',
|
|
||||||
'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php',
|
|
||||||
'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php',
|
|
||||||
'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => $vendorDir . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php',
|
|
||||||
'SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php',
|
|
||||||
'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php',
|
|
||||||
'SebastianBergmann\\Diff\\Parser' => $vendorDir . '/sebastian/diff/src/Parser.php',
|
|
||||||
'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php',
|
|
||||||
'SebastianBergmann\\Environment\\Console' => $vendorDir . '/sebastian/environment/src/Console.php',
|
|
||||||
'SebastianBergmann\\Environment\\OperatingSystem' => $vendorDir . '/sebastian/environment/src/OperatingSystem.php',
|
|
||||||
'SebastianBergmann\\Environment\\Runtime' => $vendorDir . '/sebastian/environment/src/Runtime.php',
|
|
||||||
'SebastianBergmann\\Exporter\\Exporter' => $vendorDir . '/sebastian/exporter/src/Exporter.php',
|
|
||||||
'SebastianBergmann\\FileIterator\\Facade' => $vendorDir . '/phpunit/php-file-iterator/src/Facade.php',
|
|
||||||
'SebastianBergmann\\FileIterator\\Factory' => $vendorDir . '/phpunit/php-file-iterator/src/Factory.php',
|
|
||||||
'SebastianBergmann\\FileIterator\\Iterator' => $vendorDir . '/phpunit/php-file-iterator/src/Iterator.php',
|
|
||||||
'SebastianBergmann\\GlobalState\\CodeExporter' => $vendorDir . '/sebastian/global-state/src/CodeExporter.php',
|
|
||||||
'SebastianBergmann\\GlobalState\\Exception' => $vendorDir . '/sebastian/global-state/src/exceptions/Exception.php',
|
|
||||||
'SebastianBergmann\\GlobalState\\ExcludeList' => $vendorDir . '/sebastian/global-state/src/ExcludeList.php',
|
|
||||||
'SebastianBergmann\\GlobalState\\Restorer' => $vendorDir . '/sebastian/global-state/src/Restorer.php',
|
|
||||||
'SebastianBergmann\\GlobalState\\RuntimeException' => $vendorDir . '/sebastian/global-state/src/exceptions/RuntimeException.php',
|
|
||||||
'SebastianBergmann\\GlobalState\\Snapshot' => $vendorDir . '/sebastian/global-state/src/Snapshot.php',
|
|
||||||
'SebastianBergmann\\Invoker\\Exception' => $vendorDir . '/phpunit/php-invoker/src/exceptions/Exception.php',
|
|
||||||
'SebastianBergmann\\Invoker\\Invoker' => $vendorDir . '/phpunit/php-invoker/src/Invoker.php',
|
|
||||||
'SebastianBergmann\\Invoker\\ProcessControlExtensionNotLoadedException' => $vendorDir . '/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php',
|
|
||||||
'SebastianBergmann\\Invoker\\TimeoutException' => $vendorDir . '/phpunit/php-invoker/src/exceptions/TimeoutException.php',
|
|
||||||
'SebastianBergmann\\LinesOfCode\\Counter' => $vendorDir . '/sebastian/lines-of-code/src/Counter.php',
|
|
||||||
'SebastianBergmann\\LinesOfCode\\Exception' => $vendorDir . '/sebastian/lines-of-code/src/Exception/Exception.php',
|
|
||||||
'SebastianBergmann\\LinesOfCode\\IllogicalValuesException' => $vendorDir . '/sebastian/lines-of-code/src/Exception/IllogicalValuesException.php',
|
|
||||||
'SebastianBergmann\\LinesOfCode\\LineCountingVisitor' => $vendorDir . '/sebastian/lines-of-code/src/LineCountingVisitor.php',
|
|
||||||
'SebastianBergmann\\LinesOfCode\\LinesOfCode' => $vendorDir . '/sebastian/lines-of-code/src/LinesOfCode.php',
|
|
||||||
'SebastianBergmann\\LinesOfCode\\NegativeValueException' => $vendorDir . '/sebastian/lines-of-code/src/Exception/NegativeValueException.php',
|
|
||||||
'SebastianBergmann\\LinesOfCode\\RuntimeException' => $vendorDir . '/sebastian/lines-of-code/src/Exception/RuntimeException.php',
|
|
||||||
'SebastianBergmann\\ObjectEnumerator\\Enumerator' => $vendorDir . '/sebastian/object-enumerator/src/Enumerator.php',
|
|
||||||
'SebastianBergmann\\ObjectEnumerator\\Exception' => $vendorDir . '/sebastian/object-enumerator/src/Exception.php',
|
|
||||||
'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => $vendorDir . '/sebastian/object-enumerator/src/InvalidArgumentException.php',
|
|
||||||
'SebastianBergmann\\ObjectReflector\\Exception' => $vendorDir . '/sebastian/object-reflector/src/Exception.php',
|
|
||||||
'SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => $vendorDir . '/sebastian/object-reflector/src/InvalidArgumentException.php',
|
|
||||||
'SebastianBergmann\\ObjectReflector\\ObjectReflector' => $vendorDir . '/sebastian/object-reflector/src/ObjectReflector.php',
|
|
||||||
'SebastianBergmann\\RecursionContext\\Context' => $vendorDir . '/sebastian/recursion-context/src/Context.php',
|
|
||||||
'SebastianBergmann\\RecursionContext\\Exception' => $vendorDir . '/sebastian/recursion-context/src/Exception.php',
|
|
||||||
'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => $vendorDir . '/sebastian/recursion-context/src/InvalidArgumentException.php',
|
|
||||||
'SebastianBergmann\\ResourceOperations\\ResourceOperations' => $vendorDir . '/sebastian/resource-operations/src/ResourceOperations.php',
|
|
||||||
'SebastianBergmann\\Template\\Exception' => $vendorDir . '/phpunit/php-text-template/src/exceptions/Exception.php',
|
|
||||||
'SebastianBergmann\\Template\\InvalidArgumentException' => $vendorDir . '/phpunit/php-text-template/src/exceptions/InvalidArgumentException.php',
|
|
||||||
'SebastianBergmann\\Template\\RuntimeException' => $vendorDir . '/phpunit/php-text-template/src/exceptions/RuntimeException.php',
|
|
||||||
'SebastianBergmann\\Template\\Template' => $vendorDir . '/phpunit/php-text-template/src/Template.php',
|
|
||||||
'SebastianBergmann\\Timer\\Duration' => $vendorDir . '/phpunit/php-timer/src/Duration.php',
|
|
||||||
'SebastianBergmann\\Timer\\Exception' => $vendorDir . '/phpunit/php-timer/src/exceptions/Exception.php',
|
|
||||||
'SebastianBergmann\\Timer\\NoActiveTimerException' => $vendorDir . '/phpunit/php-timer/src/exceptions/NoActiveTimerException.php',
|
|
||||||
'SebastianBergmann\\Timer\\ResourceUsageFormatter' => $vendorDir . '/phpunit/php-timer/src/ResourceUsageFormatter.php',
|
|
||||||
'SebastianBergmann\\Timer\\TimeSinceStartOfRequestNotAvailableException' => $vendorDir . '/phpunit/php-timer/src/exceptions/TimeSinceStartOfRequestNotAvailableException.php',
|
|
||||||
'SebastianBergmann\\Timer\\Timer' => $vendorDir . '/phpunit/php-timer/src/Timer.php',
|
|
||||||
'SebastianBergmann\\Type\\CallableType' => $vendorDir . '/sebastian/type/src/type/CallableType.php',
|
|
||||||
'SebastianBergmann\\Type\\Exception' => $vendorDir . '/sebastian/type/src/exception/Exception.php',
|
|
||||||
'SebastianBergmann\\Type\\FalseType' => $vendorDir . '/sebastian/type/src/type/FalseType.php',
|
|
||||||
'SebastianBergmann\\Type\\GenericObjectType' => $vendorDir . '/sebastian/type/src/type/GenericObjectType.php',
|
|
||||||
'SebastianBergmann\\Type\\IntersectionType' => $vendorDir . '/sebastian/type/src/type/IntersectionType.php',
|
|
||||||
'SebastianBergmann\\Type\\IterableType' => $vendorDir . '/sebastian/type/src/type/IterableType.php',
|
|
||||||
'SebastianBergmann\\Type\\MixedType' => $vendorDir . '/sebastian/type/src/type/MixedType.php',
|
|
||||||
'SebastianBergmann\\Type\\NeverType' => $vendorDir . '/sebastian/type/src/type/NeverType.php',
|
|
||||||
'SebastianBergmann\\Type\\NullType' => $vendorDir . '/sebastian/type/src/type/NullType.php',
|
|
||||||
'SebastianBergmann\\Type\\ObjectType' => $vendorDir . '/sebastian/type/src/type/ObjectType.php',
|
|
||||||
'SebastianBergmann\\Type\\Parameter' => $vendorDir . '/sebastian/type/src/Parameter.php',
|
|
||||||
'SebastianBergmann\\Type\\ReflectionMapper' => $vendorDir . '/sebastian/type/src/ReflectionMapper.php',
|
|
||||||
'SebastianBergmann\\Type\\RuntimeException' => $vendorDir . '/sebastian/type/src/exception/RuntimeException.php',
|
|
||||||
'SebastianBergmann\\Type\\SimpleType' => $vendorDir . '/sebastian/type/src/type/SimpleType.php',
|
|
||||||
'SebastianBergmann\\Type\\StaticType' => $vendorDir . '/sebastian/type/src/type/StaticType.php',
|
|
||||||
'SebastianBergmann\\Type\\TrueType' => $vendorDir . '/sebastian/type/src/type/TrueType.php',
|
|
||||||
'SebastianBergmann\\Type\\Type' => $vendorDir . '/sebastian/type/src/type/Type.php',
|
|
||||||
'SebastianBergmann\\Type\\TypeName' => $vendorDir . '/sebastian/type/src/TypeName.php',
|
|
||||||
'SebastianBergmann\\Type\\UnionType' => $vendorDir . '/sebastian/type/src/type/UnionType.php',
|
|
||||||
'SebastianBergmann\\Type\\UnknownType' => $vendorDir . '/sebastian/type/src/type/UnknownType.php',
|
|
||||||
'SebastianBergmann\\Type\\VoidType' => $vendorDir . '/sebastian/type/src/type/VoidType.php',
|
|
||||||
'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php',
|
|
||||||
'TheSeer\\Tokenizer\\Exception' => $vendorDir . '/theseer/tokenizer/src/Exception.php',
|
|
||||||
'TheSeer\\Tokenizer\\NamespaceUri' => $vendorDir . '/theseer/tokenizer/src/NamespaceUri.php',
|
|
||||||
'TheSeer\\Tokenizer\\NamespaceUriException' => $vendorDir . '/theseer/tokenizer/src/NamespaceUriException.php',
|
|
||||||
'TheSeer\\Tokenizer\\Token' => $vendorDir . '/theseer/tokenizer/src/Token.php',
|
|
||||||
'TheSeer\\Tokenizer\\TokenCollection' => $vendorDir . '/theseer/tokenizer/src/TokenCollection.php',
|
|
||||||
'TheSeer\\Tokenizer\\TokenCollectionException' => $vendorDir . '/theseer/tokenizer/src/TokenCollectionException.php',
|
|
||||||
'TheSeer\\Tokenizer\\Tokenizer' => $vendorDir . '/theseer/tokenizer/src/Tokenizer.php',
|
|
||||||
'TheSeer\\Tokenizer\\XMLSerializer' => $vendorDir . '/theseer/tokenizer/src/XMLSerializer.php',
|
|
||||||
'©' => $vendorDir . '/symfony/cache/Traits/ValueWrapper.php',
|
|
||||||
);
|
|
27
vendor/composer/autoload_files.php
vendored
27
vendor/composer/autoload_files.php
vendored
@ -1,27 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
// autoload_files.php @generated by Composer
|
|
||||||
|
|
||||||
$vendorDir = dirname(__DIR__);
|
|
||||||
$baseDir = dirname($vendorDir);
|
|
||||||
|
|
||||||
return array(
|
|
||||||
'6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
|
|
||||||
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
|
|
||||||
'662a729f963d39afe703c9d9b7ab4a8c' => $vendorDir . '/symfony/polyfill-php83/bootstrap.php',
|
|
||||||
'667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
|
|
||||||
'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
|
|
||||||
'8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
|
|
||||||
'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php',
|
|
||||||
'89efb1254ef2d1c5d80096acd12c4098' => $vendorDir . '/twig/twig/src/Resources/core.php',
|
|
||||||
'ffecb95d45175fd40f75be8a23b34f90' => $vendorDir . '/twig/twig/src/Resources/debug.php',
|
|
||||||
'c7baa00073ee9c61edf148c51917cfb4' => $vendorDir . '/twig/twig/src/Resources/escaper.php',
|
|
||||||
'f844ccf1d25df8663951193c3fc307c8' => $vendorDir . '/twig/twig/src/Resources/string_loader.php',
|
|
||||||
'f598d06aa772fa33d905e87be6398fb1' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
|
|
||||||
'2203a247e6fda86070a5e4e07aed533a' => $vendorDir . '/symfony/clock/Resources/now.php',
|
|
||||||
'6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
|
|
||||||
'6a47392539ca2329373e0d33e1dba053' => $vendorDir . '/symfony/polyfill-intl-icu/bootstrap.php',
|
|
||||||
'ec07570ca5a812141189b1fa81503674' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert/Functions.php',
|
|
||||||
'92c8763cd6170fce6fcfe7e26b4e8c10' => $vendorDir . '/symfony/phpunit-bridge/bootstrap.php',
|
|
||||||
'a1105708a18b76903365ca1c4aa61b02' => $vendorDir . '/symfony/translation/Resources/functions.php',
|
|
||||||
);
|
|
9
vendor/composer/autoload_namespaces.php
vendored
9
vendor/composer/autoload_namespaces.php
vendored
@ -1,9 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
// autoload_namespaces.php @generated by Composer
|
|
||||||
|
|
||||||
$vendorDir = dirname(__DIR__);
|
|
||||||
$baseDir = dirname($vendorDir);
|
|
||||||
|
|
||||||
return array(
|
|
||||||
);
|
|
114
vendor/composer/autoload_psr4.php
vendored
114
vendor/composer/autoload_psr4.php
vendored
@ -1,114 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
// autoload_psr4.php @generated by Composer
|
|
||||||
|
|
||||||
$vendorDir = dirname(__DIR__);
|
|
||||||
$baseDir = dirname($vendorDir);
|
|
||||||
|
|
||||||
return array(
|
|
||||||
'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/type-resolver/src', $vendorDir . '/phpdocumentor/reflection-docblock/src'),
|
|
||||||
'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'),
|
|
||||||
'Twig\\Extra\\TwigExtraBundle\\' => array($vendorDir . '/twig/extra-bundle'),
|
|
||||||
'Twig\\' => array($vendorDir . '/twig/twig/src'),
|
|
||||||
'Symfony\\UX\\Turbo\\' => array($vendorDir . '/symfony/ux-turbo/src'),
|
|
||||||
'Symfony\\UX\\StimulusBundle\\' => array($vendorDir . '/symfony/stimulus-bundle/src'),
|
|
||||||
'Symfony\\Runtime\\Symfony\\Component\\' => array($vendorDir . '/symfony/runtime/Internal'),
|
|
||||||
'Symfony\\Polyfill\\Php83\\' => array($vendorDir . '/symfony/polyfill-php83'),
|
|
||||||
'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
|
|
||||||
'Symfony\\Polyfill\\Intl\\Normalizer\\' => array($vendorDir . '/symfony/polyfill-intl-normalizer'),
|
|
||||||
'Symfony\\Polyfill\\Intl\\Idn\\' => array($vendorDir . '/symfony/polyfill-intl-idn'),
|
|
||||||
'Symfony\\Polyfill\\Intl\\Icu\\' => array($vendorDir . '/symfony/polyfill-intl-icu'),
|
|
||||||
'Symfony\\Polyfill\\Intl\\Grapheme\\' => array($vendorDir . '/symfony/polyfill-intl-grapheme'),
|
|
||||||
'Symfony\\Flex\\' => array($vendorDir . '/symfony/flex/src'),
|
|
||||||
'Symfony\\Contracts\\Translation\\' => array($vendorDir . '/symfony/translation-contracts'),
|
|
||||||
'Symfony\\Contracts\\Service\\' => array($vendorDir . '/symfony/service-contracts'),
|
|
||||||
'Symfony\\Contracts\\HttpClient\\' => array($vendorDir . '/symfony/http-client-contracts'),
|
|
||||||
'Symfony\\Contracts\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher-contracts'),
|
|
||||||
'Symfony\\Contracts\\Cache\\' => array($vendorDir . '/symfony/cache-contracts'),
|
|
||||||
'Symfony\\Component\\Yaml\\' => array($vendorDir . '/symfony/yaml'),
|
|
||||||
'Symfony\\Component\\WebLink\\' => array($vendorDir . '/symfony/web-link'),
|
|
||||||
'Symfony\\Component\\VarExporter\\' => array($vendorDir . '/symfony/var-exporter'),
|
|
||||||
'Symfony\\Component\\VarDumper\\' => array($vendorDir . '/symfony/var-dumper'),
|
|
||||||
'Symfony\\Component\\Validator\\' => array($vendorDir . '/symfony/validator'),
|
|
||||||
'Symfony\\Component\\TypeInfo\\' => array($vendorDir . '/symfony/type-info'),
|
|
||||||
'Symfony\\Component\\Translation\\' => array($vendorDir . '/symfony/translation'),
|
|
||||||
'Symfony\\Component\\String\\' => array($vendorDir . '/symfony/string'),
|
|
||||||
'Symfony\\Component\\Stopwatch\\' => array($vendorDir . '/symfony/stopwatch'),
|
|
||||||
'Symfony\\Component\\Serializer\\' => array($vendorDir . '/symfony/serializer'),
|
|
||||||
'Symfony\\Component\\Security\\Http\\' => array($vendorDir . '/symfony/security-http'),
|
|
||||||
'Symfony\\Component\\Security\\Csrf\\' => array($vendorDir . '/symfony/security-csrf'),
|
|
||||||
'Symfony\\Component\\Security\\Core\\' => array($vendorDir . '/symfony/security-core'),
|
|
||||||
'Symfony\\Component\\Runtime\\' => array($vendorDir . '/symfony/runtime'),
|
|
||||||
'Symfony\\Component\\Routing\\' => array($vendorDir . '/symfony/routing'),
|
|
||||||
'Symfony\\Component\\PropertyInfo\\' => array($vendorDir . '/symfony/property-info'),
|
|
||||||
'Symfony\\Component\\PropertyAccess\\' => array($vendorDir . '/symfony/property-access'),
|
|
||||||
'Symfony\\Component\\Process\\' => array($vendorDir . '/symfony/process'),
|
|
||||||
'Symfony\\Component\\PasswordHasher\\' => array($vendorDir . '/symfony/password-hasher'),
|
|
||||||
'Symfony\\Component\\OptionsResolver\\' => array($vendorDir . '/symfony/options-resolver'),
|
|
||||||
'Symfony\\Component\\Notifier\\' => array($vendorDir . '/symfony/notifier'),
|
|
||||||
'Symfony\\Component\\Mime\\' => array($vendorDir . '/symfony/mime'),
|
|
||||||
'Symfony\\Component\\Messenger\\Bridge\\Doctrine\\' => array($vendorDir . '/symfony/doctrine-messenger'),
|
|
||||||
'Symfony\\Component\\Messenger\\' => array($vendorDir . '/symfony/messenger'),
|
|
||||||
'Symfony\\Component\\Mailer\\' => array($vendorDir . '/symfony/mailer'),
|
|
||||||
'Symfony\\Component\\Intl\\' => array($vendorDir . '/symfony/intl'),
|
|
||||||
'Symfony\\Component\\HttpKernel\\' => array($vendorDir . '/symfony/http-kernel'),
|
|
||||||
'Symfony\\Component\\HttpFoundation\\' => array($vendorDir . '/symfony/http-foundation'),
|
|
||||||
'Symfony\\Component\\HttpClient\\' => array($vendorDir . '/symfony/http-client'),
|
|
||||||
'Symfony\\Component\\Form\\' => array($vendorDir . '/symfony/form'),
|
|
||||||
'Symfony\\Component\\Finder\\' => array($vendorDir . '/symfony/finder'),
|
|
||||||
'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'),
|
|
||||||
'Symfony\\Component\\ExpressionLanguage\\' => array($vendorDir . '/symfony/expression-language'),
|
|
||||||
'Symfony\\Component\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher'),
|
|
||||||
'Symfony\\Component\\ErrorHandler\\' => array($vendorDir . '/symfony/error-handler'),
|
|
||||||
'Symfony\\Component\\Dotenv\\' => array($vendorDir . '/symfony/dotenv'),
|
|
||||||
'Symfony\\Component\\DomCrawler\\' => array($vendorDir . '/symfony/dom-crawler'),
|
|
||||||
'Symfony\\Component\\DependencyInjection\\' => array($vendorDir . '/symfony/dependency-injection'),
|
|
||||||
'Symfony\\Component\\CssSelector\\' => array($vendorDir . '/symfony/css-selector'),
|
|
||||||
'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
|
|
||||||
'Symfony\\Component\\Config\\' => array($vendorDir . '/symfony/config'),
|
|
||||||
'Symfony\\Component\\Clock\\' => array($vendorDir . '/symfony/clock'),
|
|
||||||
'Symfony\\Component\\Cache\\' => array($vendorDir . '/symfony/cache'),
|
|
||||||
'Symfony\\Component\\BrowserKit\\' => array($vendorDir . '/symfony/browser-kit'),
|
|
||||||
'Symfony\\Component\\Asset\\' => array($vendorDir . '/symfony/asset'),
|
|
||||||
'Symfony\\Component\\AssetMapper\\' => array($vendorDir . '/symfony/asset-mapper'),
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\' => array($vendorDir . '/symfony/web-profiler-bundle'),
|
|
||||||
'Symfony\\Bundle\\TwigBundle\\' => array($vendorDir . '/symfony/twig-bundle'),
|
|
||||||
'Symfony\\Bundle\\SecurityBundle\\' => array($vendorDir . '/symfony/security-bundle'),
|
|
||||||
'Symfony\\Bundle\\MonologBundle\\' => array($vendorDir . '/symfony/monolog-bundle'),
|
|
||||||
'Symfony\\Bundle\\MakerBundle\\' => array($vendorDir . '/symfony/maker-bundle/src'),
|
|
||||||
'Symfony\\Bundle\\FrameworkBundle\\' => array($vendorDir . '/symfony/framework-bundle'),
|
|
||||||
'Symfony\\Bundle\\DebugBundle\\' => array($vendorDir . '/symfony/debug-bundle'),
|
|
||||||
'Symfony\\Bridge\\Twig\\' => array($vendorDir . '/symfony/twig-bridge'),
|
|
||||||
'Symfony\\Bridge\\PhpUnit\\' => array($vendorDir . '/symfony/phpunit-bridge'),
|
|
||||||
'Symfony\\Bridge\\Monolog\\' => array($vendorDir . '/symfony/monolog-bridge'),
|
|
||||||
'Symfony\\Bridge\\Doctrine\\' => array($vendorDir . '/symfony/doctrine-bridge'),
|
|
||||||
'Psr\\Log\\' => array($vendorDir . '/psr/log/src'),
|
|
||||||
'Psr\\Link\\' => array($vendorDir . '/psr/link/src'),
|
|
||||||
'Psr\\EventDispatcher\\' => array($vendorDir . '/psr/event-dispatcher/src'),
|
|
||||||
'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
|
|
||||||
'Psr\\Clock\\' => array($vendorDir . '/psr/clock/src'),
|
|
||||||
'Psr\\Cache\\' => array($vendorDir . '/psr/cache/src'),
|
|
||||||
'PhpParser\\' => array($vendorDir . '/nikic/php-parser/lib/PhpParser'),
|
|
||||||
'PHPStan\\PhpDocParser\\' => array($vendorDir . '/phpstan/phpdoc-parser/src'),
|
|
||||||
'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'),
|
|
||||||
'Masterminds\\' => array($vendorDir . '/masterminds/html5/src'),
|
|
||||||
'Egulias\\EmailValidator\\' => array($vendorDir . '/egulias/email-validator/src'),
|
|
||||||
'Doctrine\\SqlFormatter\\' => array($vendorDir . '/doctrine/sql-formatter/src'),
|
|
||||||
'Doctrine\\Persistence\\' => array($vendorDir . '/doctrine/persistence/src/Persistence'),
|
|
||||||
'Doctrine\\ORM\\' => array($vendorDir . '/doctrine/orm/src'),
|
|
||||||
'Doctrine\\Migrations\\' => array($vendorDir . '/doctrine/migrations/src'),
|
|
||||||
'Doctrine\\Instantiator\\' => array($vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator'),
|
|
||||||
'Doctrine\\Inflector\\' => array($vendorDir . '/doctrine/inflector/lib/Doctrine/Inflector'),
|
|
||||||
'Doctrine\\Deprecations\\' => array($vendorDir . '/doctrine/deprecations/lib/Doctrine/Deprecations'),
|
|
||||||
'Doctrine\\DBAL\\' => array($vendorDir . '/doctrine/dbal/src'),
|
|
||||||
'Doctrine\\Common\\Lexer\\' => array($vendorDir . '/doctrine/lexer/src'),
|
|
||||||
'Doctrine\\Common\\Collections\\' => array($vendorDir . '/doctrine/collections/src'),
|
|
||||||
'Doctrine\\Common\\Cache\\' => array($vendorDir . '/doctrine/cache/lib/Doctrine/Common/Cache'),
|
|
||||||
'Doctrine\\Common\\' => array($vendorDir . '/doctrine/event-manager/src'),
|
|
||||||
'Doctrine\\Bundle\\MigrationsBundle\\' => array($vendorDir . '/doctrine/doctrine-migrations-bundle'),
|
|
||||||
'Doctrine\\Bundle\\DoctrineBundle\\' => array($vendorDir . '/doctrine/doctrine-bundle/src'),
|
|
||||||
'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'),
|
|
||||||
'Composer\\Semver\\' => array($vendorDir . '/composer/semver/src'),
|
|
||||||
'App\\Tests\\' => array($baseDir . '/tests'),
|
|
||||||
'App\\' => array($baseDir . '/src'),
|
|
||||||
);
|
|
50
vendor/composer/autoload_real.php
vendored
50
vendor/composer/autoload_real.php
vendored
@ -1,50 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
// autoload_real.php @generated by Composer
|
|
||||||
|
|
||||||
class ComposerAutoloaderInit0cc412674760ac32bd8551de9f3bebb9
|
|
||||||
{
|
|
||||||
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('ComposerAutoloaderInit0cc412674760ac32bd8551de9f3bebb9', 'loadClassLoader'), true, true);
|
|
||||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
|
||||||
spl_autoload_unregister(array('ComposerAutoloaderInit0cc412674760ac32bd8551de9f3bebb9', 'loadClassLoader'));
|
|
||||||
|
|
||||||
require __DIR__ . '/autoload_static.php';
|
|
||||||
call_user_func(\Composer\Autoload\ComposerStaticInit0cc412674760ac32bd8551de9f3bebb9::getInitializer($loader));
|
|
||||||
|
|
||||||
$loader->register(true);
|
|
||||||
|
|
||||||
$filesToLoad = \Composer\Autoload\ComposerStaticInit0cc412674760ac32bd8551de9f3bebb9::$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;
|
|
||||||
}
|
|
||||||
}
|
|
1252
vendor/composer/autoload_static.php
vendored
1252
vendor/composer/autoload_static.php
vendored
File diff suppressed because it is too large
Load Diff
10248
vendor/composer/installed.json
vendored
10248
vendor/composer/installed.json
vendored
File diff suppressed because it is too large
Load Diff
1332
vendor/composer/installed.php
vendored
1332
vendor/composer/installed.php
vendored
File diff suppressed because it is too large
Load Diff
26
vendor/composer/platform_check.php
vendored
26
vendor/composer/platform_check.php
vendored
@ -1,26 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
// platform_check.php @generated by Composer
|
|
||||||
|
|
||||||
$issues = array();
|
|
||||||
|
|
||||||
if (!(PHP_VERSION_ID >= 80200)) {
|
|
||||||
$issues[] = 'Your Composer dependencies require a PHP version ">= 8.2.0". You are running ' . PHP_VERSION . '.';
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($issues) {
|
|
||||||
if (!headers_sent()) {
|
|
||||||
header('HTTP/1.1 500 Internal Server Error');
|
|
||||||
}
|
|
||||||
if (!ini_get('display_errors')) {
|
|
||||||
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
|
|
||||||
fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
|
|
||||||
} elseif (!headers_sent()) {
|
|
||||||
echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
trigger_error(
|
|
||||||
'Composer detected issues in your platform: ' . implode(' ', $issues),
|
|
||||||
E_USER_ERROR
|
|
||||||
);
|
|
||||||
}
|
|
229
vendor/composer/semver/CHANGELOG.md
vendored
229
vendor/composer/semver/CHANGELOG.md
vendored
@ -1,229 +0,0 @@
|
|||||||
# Change Log
|
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
||||||
|
|
||||||
### [3.4.3] 2024-09-19
|
|
||||||
|
|
||||||
* Fixed some type annotations
|
|
||||||
|
|
||||||
### [3.4.2] 2024-07-12
|
|
||||||
|
|
||||||
* Fixed PHP 5.3 syntax error
|
|
||||||
|
|
||||||
### [3.4.1] 2024-07-12
|
|
||||||
|
|
||||||
* Fixed normalizeStability's return type to enforce valid stabilities
|
|
||||||
|
|
||||||
### [3.4.0] 2023-08-31
|
|
||||||
|
|
||||||
* Support larger major version numbers (#149)
|
|
||||||
|
|
||||||
### [3.3.2] 2022-04-01
|
|
||||||
|
|
||||||
* Fixed handling of non-string values (#134)
|
|
||||||
|
|
||||||
### [3.3.1] 2022-03-16
|
|
||||||
|
|
||||||
* Fixed possible cache key clash in the CompilingMatcher memoization (#132)
|
|
||||||
|
|
||||||
### [3.3.0] 2022-03-15
|
|
||||||
|
|
||||||
* Improved performance of CompilingMatcher by memoizing more (#131)
|
|
||||||
* Added CompilingMatcher::clear to clear all memoization caches
|
|
||||||
|
|
||||||
### [3.2.9] 2022-02-04
|
|
||||||
|
|
||||||
* Revert #129 (Fixed MultiConstraint with MatchAllConstraint) which caused regressions
|
|
||||||
|
|
||||||
### [3.2.8] 2022-02-04
|
|
||||||
|
|
||||||
* Updates to latest phpstan / CI by @Seldaek in https://github.com/composer/semver/pull/130
|
|
||||||
* Fixed MultiConstraint with MatchAllConstraint by @Toflar in https://github.com/composer/semver/pull/129
|
|
||||||
|
|
||||||
### [3.2.7] 2022-01-04
|
|
||||||
|
|
||||||
* Fixed: typo in type definition of Intervals class causing issues with Psalm scanning vendors
|
|
||||||
|
|
||||||
### [3.2.6] 2021-10-25
|
|
||||||
|
|
||||||
* Fixed: type improvements to parseStability
|
|
||||||
|
|
||||||
### [3.2.5] 2021-05-24
|
|
||||||
|
|
||||||
* Fixed: issue comparing disjunctive MultiConstraints to conjunctive ones (#127)
|
|
||||||
* Fixed: added complete type information using phpstan annotations
|
|
||||||
|
|
||||||
### [3.2.4] 2020-11-13
|
|
||||||
|
|
||||||
* Fixed: code clean-up
|
|
||||||
|
|
||||||
### [3.2.3] 2020-11-12
|
|
||||||
|
|
||||||
* Fixed: constraints in the form of `X || Y, >=Y.1` and other such complex constructs were in some cases being optimized into a more restrictive constraint
|
|
||||||
|
|
||||||
### [3.2.2] 2020-10-14
|
|
||||||
|
|
||||||
* Fixed: internal code cleanups
|
|
||||||
|
|
||||||
### [3.2.1] 2020-09-27
|
|
||||||
|
|
||||||
* Fixed: accidental validation of broken constraints combining ^/~ and wildcards, and -dev suffix allowing weird cases
|
|
||||||
* Fixed: normalization of beta0 and such which was dropping the 0
|
|
||||||
|
|
||||||
### [3.2.0] 2020-09-09
|
|
||||||
|
|
||||||
* Added: support for `x || @dev`, not very useful but seen in the wild and failed to validate with 1.5.2/1.6.0
|
|
||||||
* Added: support for `foobar-dev` being equal to `dev-foobar`, dev-foobar is the official way to write it but we need to support the other for BC and convenience
|
|
||||||
|
|
||||||
### [3.1.0] 2020-09-08
|
|
||||||
|
|
||||||
* Added: support for constraints like `^2.x-dev` and `~2.x-dev`, not very useful but seen in the wild and failed to validate with 3.0.1
|
|
||||||
* Fixed: invalid aliases will no longer throw, unless explicitly validated by Composer in the root package
|
|
||||||
|
|
||||||
### [3.0.1] 2020-09-08
|
|
||||||
|
|
||||||
* Fixed: handling of some invalid -dev versions which were seen as valid
|
|
||||||
|
|
||||||
### [3.0.0] 2020-05-26
|
|
||||||
|
|
||||||
* Break: Renamed `EmptyConstraint`, replace it with `MatchAllConstraint`
|
|
||||||
* Break: Unlikely to affect anyone but strictly speaking a breaking change, `*.*` and such variants will not match all `dev-*` versions anymore, only `*` does
|
|
||||||
* Break: ConstraintInterface is now considered internal/private and not meant to be implemented by third parties anymore
|
|
||||||
* Added `Intervals` class to check if a constraint is a subsets of another one, and allow compacting complex MultiConstraints into simpler ones
|
|
||||||
* Added `CompilingMatcher` class to speed up constraint matching against simple Constraint instances
|
|
||||||
* Added `MatchAllConstraint` and `MatchNoneConstraint` which match everything and nothing
|
|
||||||
* Added more advanced optimization of contiguous constraints inside MultiConstraint
|
|
||||||
* Added tentative support for PHP 8
|
|
||||||
* Fixed ConstraintInterface::matches to be commutative in all cases
|
|
||||||
|
|
||||||
### [2.0.0] 2020-04-21
|
|
||||||
|
|
||||||
* Break: `dev-master`, `dev-trunk` and `dev-default` now normalize to `dev-master`, `dev-trunk` and `dev-default` instead of `9999999-dev` in 1.x
|
|
||||||
* Break: Removed the deprecated `AbstractConstraint`
|
|
||||||
* Added `getUpperBound` and `getLowerBound` to ConstraintInterface. They return `Composer\Semver\Constraint\Bound` instances
|
|
||||||
* Added `MultiConstraint::create` to create the most-optimal form of ConstraintInterface from an array of constraint strings
|
|
||||||
|
|
||||||
### [1.7.2] 2020-12-03
|
|
||||||
|
|
||||||
* Fixed: Allow installing on php 8
|
|
||||||
|
|
||||||
### [1.7.1] 2020-09-27
|
|
||||||
|
|
||||||
* Fixed: accidental validation of broken constraints combining ^/~ and wildcards, and -dev suffix allowing weird cases
|
|
||||||
* Fixed: normalization of beta0 and such which was dropping the 0
|
|
||||||
|
|
||||||
### [1.7.0] 2020-09-09
|
|
||||||
|
|
||||||
* Added: support for `x || @dev`, not very useful but seen in the wild and failed to validate with 1.5.2/1.6.0
|
|
||||||
* Added: support for `foobar-dev` being equal to `dev-foobar`, dev-foobar is the official way to write it but we need to support the other for BC and convenience
|
|
||||||
|
|
||||||
### [1.6.0] 2020-09-08
|
|
||||||
|
|
||||||
* Added: support for constraints like `^2.x-dev` and `~2.x-dev`, not very useful but seen in the wild and failed to validate with 1.5.2
|
|
||||||
* Fixed: invalid aliases will no longer throw, unless explicitly validated by Composer in the root package
|
|
||||||
|
|
||||||
### [1.5.2] 2020-09-08
|
|
||||||
|
|
||||||
* Fixed: handling of some invalid -dev versions which were seen as valid
|
|
||||||
* Fixed: some doctypes
|
|
||||||
|
|
||||||
### [1.5.1] 2020-01-13
|
|
||||||
|
|
||||||
* Fixed: Parsing of aliased version was not validating the alias to be a valid version
|
|
||||||
|
|
||||||
### [1.5.0] 2019-03-19
|
|
||||||
|
|
||||||
* Added: some support for date versions (e.g. 201903) in `~` operator
|
|
||||||
* Fixed: support for stabilities in `~` operator was inconsistent
|
|
||||||
|
|
||||||
### [1.4.2] 2016-08-30
|
|
||||||
|
|
||||||
* Fixed: collapsing of complex constraints lead to buggy constraints
|
|
||||||
|
|
||||||
### [1.4.1] 2016-06-02
|
|
||||||
|
|
||||||
* Changed: branch-like requirements no longer strip build metadata - [composer/semver#38](https://github.com/composer/semver/pull/38).
|
|
||||||
|
|
||||||
### [1.4.0] 2016-03-30
|
|
||||||
|
|
||||||
* Added: getters on MultiConstraint - [composer/semver#35](https://github.com/composer/semver/pull/35).
|
|
||||||
|
|
||||||
### [1.3.0] 2016-02-25
|
|
||||||
|
|
||||||
* Fixed: stability parsing - [composer/composer#1234](https://github.com/composer/composer/issues/4889).
|
|
||||||
* Changed: collapse contiguous constraints when possible.
|
|
||||||
|
|
||||||
### [1.2.0] 2015-11-10
|
|
||||||
|
|
||||||
* Changed: allow multiple numerical identifiers in 'pre-release' version part.
|
|
||||||
* Changed: add more 'v' prefix support.
|
|
||||||
|
|
||||||
### [1.1.0] 2015-11-03
|
|
||||||
|
|
||||||
* Changed: dropped redundant `test` namespace.
|
|
||||||
* Changed: minor adjustment in datetime parsing normalization.
|
|
||||||
* Changed: `ConstraintInterface` relaxed, setPrettyString is not required anymore.
|
|
||||||
* Changed: `AbstractConstraint` marked deprecated, will be removed in 2.0.
|
|
||||||
* Changed: `Constraint` is now extensible.
|
|
||||||
|
|
||||||
### [1.0.0] 2015-09-21
|
|
||||||
|
|
||||||
* Break: `VersionConstraint` renamed to `Constraint`.
|
|
||||||
* Break: `SpecificConstraint` renamed to `AbstractConstraint`.
|
|
||||||
* Break: `LinkConstraintInterface` renamed to `ConstraintInterface`.
|
|
||||||
* Break: `VersionParser::parseNameVersionPairs` was removed.
|
|
||||||
* Changed: `VersionParser::parseConstraints` allows (but ignores) build metadata now.
|
|
||||||
* Changed: `VersionParser::parseConstraints` allows (but ignores) prefixing numeric versions with a 'v' now.
|
|
||||||
* Changed: Fixed namespace(s) of test files.
|
|
||||||
* Changed: `Comparator::compare` no longer throws `InvalidArgumentException`.
|
|
||||||
* Changed: `Constraint` now throws `InvalidArgumentException`.
|
|
||||||
|
|
||||||
### [0.1.0] 2015-07-23
|
|
||||||
|
|
||||||
* Added: `Composer\Semver\Comparator`, various methods to compare versions.
|
|
||||||
* Added: various documents such as README.md, LICENSE, etc.
|
|
||||||
* Added: configuration files for Git, Travis, php-cs-fixer, phpunit.
|
|
||||||
* Break: the following namespaces were renamed:
|
|
||||||
- Namespace: `Composer\Package\Version` -> `Composer\Semver`
|
|
||||||
- Namespace: `Composer\Package\LinkConstraint` -> `Composer\Semver\Constraint`
|
|
||||||
- Namespace: `Composer\Test\Package\Version` -> `Composer\Test\Semver`
|
|
||||||
- Namespace: `Composer\Test\Package\LinkConstraint` -> `Composer\Test\Semver\Constraint`
|
|
||||||
* Changed: code style using php-cs-fixer.
|
|
||||||
|
|
||||||
[3.4.3]: https://github.com/composer/semver/compare/3.4.2...3.4.3
|
|
||||||
[3.4.2]: https://github.com/composer/semver/compare/3.4.1...3.4.2
|
|
||||||
[3.4.1]: https://github.com/composer/semver/compare/3.4.0...3.4.1
|
|
||||||
[3.4.0]: https://github.com/composer/semver/compare/3.3.2...3.4.0
|
|
||||||
[3.3.2]: https://github.com/composer/semver/compare/3.3.1...3.3.2
|
|
||||||
[3.3.1]: https://github.com/composer/semver/compare/3.3.0...3.3.1
|
|
||||||
[3.3.0]: https://github.com/composer/semver/compare/3.2.9...3.3.0
|
|
||||||
[3.2.9]: https://github.com/composer/semver/compare/3.2.8...3.2.9
|
|
||||||
[3.2.8]: https://github.com/composer/semver/compare/3.2.7...3.2.8
|
|
||||||
[3.2.7]: https://github.com/composer/semver/compare/3.2.6...3.2.7
|
|
||||||
[3.2.6]: https://github.com/composer/semver/compare/3.2.5...3.2.6
|
|
||||||
[3.2.5]: https://github.com/composer/semver/compare/3.2.4...3.2.5
|
|
||||||
[3.2.4]: https://github.com/composer/semver/compare/3.2.3...3.2.4
|
|
||||||
[3.2.3]: https://github.com/composer/semver/compare/3.2.2...3.2.3
|
|
||||||
[3.2.2]: https://github.com/composer/semver/compare/3.2.1...3.2.2
|
|
||||||
[3.2.1]: https://github.com/composer/semver/compare/3.2.0...3.2.1
|
|
||||||
[3.2.0]: https://github.com/composer/semver/compare/3.1.0...3.2.0
|
|
||||||
[3.1.0]: https://github.com/composer/semver/compare/3.0.1...3.1.0
|
|
||||||
[3.0.1]: https://github.com/composer/semver/compare/3.0.0...3.0.1
|
|
||||||
[3.0.0]: https://github.com/composer/semver/compare/2.0.0...3.0.0
|
|
||||||
[2.0.0]: https://github.com/composer/semver/compare/1.5.1...2.0.0
|
|
||||||
[1.7.2]: https://github.com/composer/semver/compare/1.7.1...1.7.2
|
|
||||||
[1.7.1]: https://github.com/composer/semver/compare/1.7.0...1.7.1
|
|
||||||
[1.7.0]: https://github.com/composer/semver/compare/1.6.0...1.7.0
|
|
||||||
[1.6.0]: https://github.com/composer/semver/compare/1.5.2...1.6.0
|
|
||||||
[1.5.2]: https://github.com/composer/semver/compare/1.5.1...1.5.2
|
|
||||||
[1.5.1]: https://github.com/composer/semver/compare/1.5.0...1.5.1
|
|
||||||
[1.5.0]: https://github.com/composer/semver/compare/1.4.2...1.5.0
|
|
||||||
[1.4.2]: https://github.com/composer/semver/compare/1.4.1...1.4.2
|
|
||||||
[1.4.1]: https://github.com/composer/semver/compare/1.4.0...1.4.1
|
|
||||||
[1.4.0]: https://github.com/composer/semver/compare/1.3.0...1.4.0
|
|
||||||
[1.3.0]: https://github.com/composer/semver/compare/1.2.0...1.3.0
|
|
||||||
[1.2.0]: https://github.com/composer/semver/compare/1.1.0...1.2.0
|
|
||||||
[1.1.0]: https://github.com/composer/semver/compare/1.0.0...1.1.0
|
|
||||||
[1.0.0]: https://github.com/composer/semver/compare/0.1.0...1.0.0
|
|
||||||
[0.1.0]: https://github.com/composer/semver/compare/5e0b9a4da...0.1.0
|
|
99
vendor/composer/semver/README.md
vendored
99
vendor/composer/semver/README.md
vendored
@ -1,99 +0,0 @@
|
|||||||
composer/semver
|
|
||||||
===============
|
|
||||||
|
|
||||||
Semver (Semantic Versioning) library that offers utilities, version constraint parsing and validation.
|
|
||||||
|
|
||||||
Originally written as part of [composer/composer](https://github.com/composer/composer),
|
|
||||||
now extracted and made available as a stand-alone library.
|
|
||||||
|
|
||||||
[![Continuous Integration](https://github.com/composer/semver/actions/workflows/continuous-integration.yml/badge.svg?branch=main)](https://github.com/composer/semver/actions/workflows/continuous-integration.yml)
|
|
||||||
[![PHP Lint](https://github.com/composer/semver/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/composer/semver/actions/workflows/lint.yml)
|
|
||||||
[![PHPStan](https://github.com/composer/semver/actions/workflows/phpstan.yml/badge.svg?branch=main)](https://github.com/composer/semver/actions/workflows/phpstan.yml)
|
|
||||||
|
|
||||||
Installation
|
|
||||||
------------
|
|
||||||
|
|
||||||
Install the latest version with:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
composer require composer/semver
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
Requirements
|
|
||||||
------------
|
|
||||||
|
|
||||||
* PHP 5.3.2 is required but using the latest version of PHP is highly recommended.
|
|
||||||
|
|
||||||
|
|
||||||
Version Comparison
|
|
||||||
------------------
|
|
||||||
|
|
||||||
For details on how versions are compared, refer to the [Versions](https://getcomposer.org/doc/articles/versions.md)
|
|
||||||
article in the documentation section of the [getcomposer.org](https://getcomposer.org) website.
|
|
||||||
|
|
||||||
|
|
||||||
Basic usage
|
|
||||||
-----------
|
|
||||||
|
|
||||||
### Comparator
|
|
||||||
|
|
||||||
The [`Composer\Semver\Comparator`](https://github.com/composer/semver/blob/main/src/Comparator.php) class provides the following methods for comparing versions:
|
|
||||||
|
|
||||||
* greaterThan($v1, $v2)
|
|
||||||
* greaterThanOrEqualTo($v1, $v2)
|
|
||||||
* lessThan($v1, $v2)
|
|
||||||
* lessThanOrEqualTo($v1, $v2)
|
|
||||||
* equalTo($v1, $v2)
|
|
||||||
* notEqualTo($v1, $v2)
|
|
||||||
|
|
||||||
Each function takes two version strings as arguments and returns a boolean. For example:
|
|
||||||
|
|
||||||
```php
|
|
||||||
use Composer\Semver\Comparator;
|
|
||||||
|
|
||||||
Comparator::greaterThan('1.25.0', '1.24.0'); // 1.25.0 > 1.24.0
|
|
||||||
```
|
|
||||||
|
|
||||||
### Semver
|
|
||||||
|
|
||||||
The [`Composer\Semver\Semver`](https://github.com/composer/semver/blob/main/src/Semver.php) class provides the following methods:
|
|
||||||
|
|
||||||
* satisfies($version, $constraints)
|
|
||||||
* satisfiedBy(array $versions, $constraint)
|
|
||||||
* sort($versions)
|
|
||||||
* rsort($versions)
|
|
||||||
|
|
||||||
### Intervals
|
|
||||||
|
|
||||||
The [`Composer\Semver\Intervals`](https://github.com/composer/semver/blob/main/src/Intervals.php) static class provides
|
|
||||||
a few utilities to work with complex constraints or read version intervals from a constraint:
|
|
||||||
|
|
||||||
```php
|
|
||||||
use Composer\Semver\Intervals;
|
|
||||||
|
|
||||||
// Checks whether $candidate is a subset of $constraint
|
|
||||||
Intervals::isSubsetOf(ConstraintInterface $candidate, ConstraintInterface $constraint);
|
|
||||||
|
|
||||||
// Checks whether $a and $b have any intersection, equivalent to $a->matches($b)
|
|
||||||
Intervals::haveIntersections(ConstraintInterface $a, ConstraintInterface $b);
|
|
||||||
|
|
||||||
// Optimizes a complex multi constraint by merging all intervals down to the smallest
|
|
||||||
// possible multi constraint. The drawbacks are this is not very fast, and the resulting
|
|
||||||
// multi constraint will have no human readable prettyConstraint configured on it
|
|
||||||
Intervals::compactConstraint(ConstraintInterface $constraint);
|
|
||||||
|
|
||||||
// Creates an array of numeric intervals and branch constraints representing a given constraint
|
|
||||||
Intervals::get(ConstraintInterface $constraint);
|
|
||||||
|
|
||||||
// Clears the memoization cache when you are done processing constraints
|
|
||||||
Intervals::clear()
|
|
||||||
```
|
|
||||||
|
|
||||||
See the class docblocks for more details.
|
|
||||||
|
|
||||||
|
|
||||||
License
|
|
||||||
-------
|
|
||||||
|
|
||||||
composer/semver is licensed under the MIT License, see the LICENSE file for details.
|
|
59
vendor/composer/semver/composer.json
vendored
59
vendor/composer/semver/composer.json
vendored
@ -1,59 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "composer/semver",
|
|
||||||
"description": "Semver library that offers utilities, version constraint parsing and validation.",
|
|
||||||
"type": "library",
|
|
||||||
"license": "MIT",
|
|
||||||
"keywords": [
|
|
||||||
"semver",
|
|
||||||
"semantic",
|
|
||||||
"versioning",
|
|
||||||
"validation"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Nils Adermann",
|
|
||||||
"email": "naderman@naderman.de",
|
|
||||||
"homepage": "http://www.naderman.de"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Jordi Boggiano",
|
|
||||||
"email": "j.boggiano@seld.be",
|
|
||||||
"homepage": "http://seld.be"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Rob Bast",
|
|
||||||
"email": "rob.bast@gmail.com",
|
|
||||||
"homepage": "http://robbast.nl"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"irc": "ircs://irc.libera.chat:6697/composer",
|
|
||||||
"issues": "https://github.com/composer/semver/issues"
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": "^5.3.2 || ^7.0 || ^8.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"symfony/phpunit-bridge": "^3 || ^7",
|
|
||||||
"phpstan/phpstan": "^1.11"
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Composer\\Semver\\": "src"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload-dev": {
|
|
||||||
"psr-4": {
|
|
||||||
"Composer\\Semver\\": "tests"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-main": "3.x-dev"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"test": "SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1 vendor/bin/simple-phpunit",
|
|
||||||
"phpstan": "@php vendor/bin/phpstan analyse"
|
|
||||||
}
|
|
||||||
}
|
|
113
vendor/composer/semver/src/Comparator.php
vendored
113
vendor/composer/semver/src/Comparator.php
vendored
@ -1,113 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of composer/semver.
|
|
||||||
*
|
|
||||||
* (c) Composer <https://github.com/composer>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Semver;
|
|
||||||
|
|
||||||
use Composer\Semver\Constraint\Constraint;
|
|
||||||
|
|
||||||
class Comparator
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Evaluates the expression: $version1 > $version2.
|
|
||||||
*
|
|
||||||
* @param string $version1
|
|
||||||
* @param string $version2
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public static function greaterThan($version1, $version2)
|
|
||||||
{
|
|
||||||
return self::compare($version1, '>', $version2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Evaluates the expression: $version1 >= $version2.
|
|
||||||
*
|
|
||||||
* @param string $version1
|
|
||||||
* @param string $version2
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public static function greaterThanOrEqualTo($version1, $version2)
|
|
||||||
{
|
|
||||||
return self::compare($version1, '>=', $version2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Evaluates the expression: $version1 < $version2.
|
|
||||||
*
|
|
||||||
* @param string $version1
|
|
||||||
* @param string $version2
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public static function lessThan($version1, $version2)
|
|
||||||
{
|
|
||||||
return self::compare($version1, '<', $version2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Evaluates the expression: $version1 <= $version2.
|
|
||||||
*
|
|
||||||
* @param string $version1
|
|
||||||
* @param string $version2
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public static function lessThanOrEqualTo($version1, $version2)
|
|
||||||
{
|
|
||||||
return self::compare($version1, '<=', $version2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Evaluates the expression: $version1 == $version2.
|
|
||||||
*
|
|
||||||
* @param string $version1
|
|
||||||
* @param string $version2
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public static function equalTo($version1, $version2)
|
|
||||||
{
|
|
||||||
return self::compare($version1, '==', $version2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Evaluates the expression: $version1 != $version2.
|
|
||||||
*
|
|
||||||
* @param string $version1
|
|
||||||
* @param string $version2
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public static function notEqualTo($version1, $version2)
|
|
||||||
{
|
|
||||||
return self::compare($version1, '!=', $version2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Evaluates the expression: $version1 $operator $version2.
|
|
||||||
*
|
|
||||||
* @param string $version1
|
|
||||||
* @param string $operator
|
|
||||||
* @param string $version2
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*
|
|
||||||
* @phpstan-param Constraint::STR_OP_* $operator
|
|
||||||
*/
|
|
||||||
public static function compare($version1, $operator, $version2)
|
|
||||||
{
|
|
||||||
$constraint = new Constraint($operator, $version2);
|
|
||||||
|
|
||||||
return $constraint->matchSpecific(new Constraint('==', $version1), true);
|
|
||||||
}
|
|
||||||
}
|
|
94
vendor/composer/semver/src/CompilingMatcher.php
vendored
94
vendor/composer/semver/src/CompilingMatcher.php
vendored
@ -1,94 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of composer/semver.
|
|
||||||
*
|
|
||||||
* (c) Composer <https://github.com/composer>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Semver;
|
|
||||||
|
|
||||||
use Composer\Semver\Constraint\Constraint;
|
|
||||||
use Composer\Semver\Constraint\ConstraintInterface;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Helper class to evaluate constraint by compiling and reusing the code to evaluate
|
|
||||||
*/
|
|
||||||
class CompilingMatcher
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var array
|
|
||||||
* @phpstan-var array<string, callable>
|
|
||||||
*/
|
|
||||||
private static $compiledCheckerCache = array();
|
|
||||||
/**
|
|
||||||
* @var array
|
|
||||||
* @phpstan-var array<string, bool>
|
|
||||||
*/
|
|
||||||
private static $resultCache = array();
|
|
||||||
|
|
||||||
/** @var bool */
|
|
||||||
private static $enabled;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @phpstan-var array<Constraint::OP_*, Constraint::STR_OP_*>
|
|
||||||
*/
|
|
||||||
private static $transOpInt = array(
|
|
||||||
Constraint::OP_EQ => Constraint::STR_OP_EQ,
|
|
||||||
Constraint::OP_LT => Constraint::STR_OP_LT,
|
|
||||||
Constraint::OP_LE => Constraint::STR_OP_LE,
|
|
||||||
Constraint::OP_GT => Constraint::STR_OP_GT,
|
|
||||||
Constraint::OP_GE => Constraint::STR_OP_GE,
|
|
||||||
Constraint::OP_NE => Constraint::STR_OP_NE,
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Clears the memoization cache once you are done
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public static function clear()
|
|
||||||
{
|
|
||||||
self::$resultCache = array();
|
|
||||||
self::$compiledCheckerCache = array();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Evaluates the expression: $constraint match $operator $version
|
|
||||||
*
|
|
||||||
* @param ConstraintInterface $constraint
|
|
||||||
* @param int $operator
|
|
||||||
* @phpstan-param Constraint::OP_* $operator
|
|
||||||
* @param string $version
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public static function match(ConstraintInterface $constraint, $operator, $version)
|
|
||||||
{
|
|
||||||
$resultCacheKey = $operator.$constraint.';'.$version;
|
|
||||||
|
|
||||||
if (isset(self::$resultCache[$resultCacheKey])) {
|
|
||||||
return self::$resultCache[$resultCacheKey];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (self::$enabled === null) {
|
|
||||||
self::$enabled = !\in_array('eval', explode(',', (string) ini_get('disable_functions')), true);
|
|
||||||
}
|
|
||||||
if (!self::$enabled) {
|
|
||||||
return self::$resultCache[$resultCacheKey] = $constraint->matches(new Constraint(self::$transOpInt[$operator], $version));
|
|
||||||
}
|
|
||||||
|
|
||||||
$cacheKey = $operator.$constraint;
|
|
||||||
if (!isset(self::$compiledCheckerCache[$cacheKey])) {
|
|
||||||
$code = $constraint->compile($operator);
|
|
||||||
self::$compiledCheckerCache[$cacheKey] = $function = eval('return function($v, $b){return '.$code.';};');
|
|
||||||
} else {
|
|
||||||
$function = self::$compiledCheckerCache[$cacheKey];
|
|
||||||
}
|
|
||||||
|
|
||||||
return self::$resultCache[$resultCacheKey] = $function($version, strpos($version, 'dev-') === 0);
|
|
||||||
}
|
|
||||||
}
|
|
122
vendor/composer/semver/src/Constraint/Bound.php
vendored
122
vendor/composer/semver/src/Constraint/Bound.php
vendored
@ -1,122 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of composer/semver.
|
|
||||||
*
|
|
||||||
* (c) Composer <https://github.com/composer>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Semver\Constraint;
|
|
||||||
|
|
||||||
class Bound
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
private $version;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var bool
|
|
||||||
*/
|
|
||||||
private $isInclusive;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $version
|
|
||||||
* @param bool $isInclusive
|
|
||||||
*/
|
|
||||||
public function __construct($version, $isInclusive)
|
|
||||||
{
|
|
||||||
$this->version = $version;
|
|
||||||
$this->isInclusive = $isInclusive;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getVersion()
|
|
||||||
{
|
|
||||||
return $this->version;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function isInclusive()
|
|
||||||
{
|
|
||||||
return $this->isInclusive;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function isZero()
|
|
||||||
{
|
|
||||||
return $this->getVersion() === '0.0.0.0-dev' && $this->isInclusive();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function isPositiveInfinity()
|
|
||||||
{
|
|
||||||
return $this->getVersion() === PHP_INT_MAX.'.0.0.0' && !$this->isInclusive();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Compares a bound to another with a given operator.
|
|
||||||
*
|
|
||||||
* @param Bound $other
|
|
||||||
* @param string $operator
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function compareTo(Bound $other, $operator)
|
|
||||||
{
|
|
||||||
if (!\in_array($operator, array('<', '>'), true)) {
|
|
||||||
throw new \InvalidArgumentException('Does not support any other operator other than > or <.');
|
|
||||||
}
|
|
||||||
|
|
||||||
// If they are the same it doesn't matter
|
|
||||||
if ($this == $other) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$compareResult = version_compare($this->getVersion(), $other->getVersion());
|
|
||||||
|
|
||||||
// Not the same version means we don't need to check if the bounds are inclusive or not
|
|
||||||
if (0 !== $compareResult) {
|
|
||||||
return (('>' === $operator) ? 1 : -1) === $compareResult;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Question we're answering here is "am I higher than $other?"
|
|
||||||
return '>' === $operator ? $other->isInclusive() : !$other->isInclusive();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function __toString()
|
|
||||||
{
|
|
||||||
return sprintf(
|
|
||||||
'%s [%s]',
|
|
||||||
$this->getVersion(),
|
|
||||||
$this->isInclusive() ? 'inclusive' : 'exclusive'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return self
|
|
||||||
*/
|
|
||||||
public static function zero()
|
|
||||||
{
|
|
||||||
return new Bound('0.0.0.0-dev', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return self
|
|
||||||
*/
|
|
||||||
public static function positiveInfinity()
|
|
||||||
{
|
|
||||||
return new Bound(PHP_INT_MAX.'.0.0.0', false);
|
|
||||||
}
|
|
||||||
}
|
|
435
vendor/composer/semver/src/Constraint/Constraint.php
vendored
435
vendor/composer/semver/src/Constraint/Constraint.php
vendored
@ -1,435 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of composer/semver.
|
|
||||||
*
|
|
||||||
* (c) Composer <https://github.com/composer>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Semver\Constraint;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines a constraint.
|
|
||||||
*/
|
|
||||||
class Constraint implements ConstraintInterface
|
|
||||||
{
|
|
||||||
/* operator integer values */
|
|
||||||
const OP_EQ = 0;
|
|
||||||
const OP_LT = 1;
|
|
||||||
const OP_LE = 2;
|
|
||||||
const OP_GT = 3;
|
|
||||||
const OP_GE = 4;
|
|
||||||
const OP_NE = 5;
|
|
||||||
|
|
||||||
/* operator string values */
|
|
||||||
const STR_OP_EQ = '==';
|
|
||||||
const STR_OP_EQ_ALT = '=';
|
|
||||||
const STR_OP_LT = '<';
|
|
||||||
const STR_OP_LE = '<=';
|
|
||||||
const STR_OP_GT = '>';
|
|
||||||
const STR_OP_GE = '>=';
|
|
||||||
const STR_OP_NE = '!=';
|
|
||||||
const STR_OP_NE_ALT = '<>';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Operator to integer translation table.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
* @phpstan-var array<self::STR_OP_*, self::OP_*>
|
|
||||||
*/
|
|
||||||
private static $transOpStr = array(
|
|
||||||
'=' => self::OP_EQ,
|
|
||||||
'==' => self::OP_EQ,
|
|
||||||
'<' => self::OP_LT,
|
|
||||||
'<=' => self::OP_LE,
|
|
||||||
'>' => self::OP_GT,
|
|
||||||
'>=' => self::OP_GE,
|
|
||||||
'<>' => self::OP_NE,
|
|
||||||
'!=' => self::OP_NE,
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Integer to operator translation table.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
* @phpstan-var array<self::OP_*, self::STR_OP_*>
|
|
||||||
*/
|
|
||||||
private static $transOpInt = array(
|
|
||||||
self::OP_EQ => '==',
|
|
||||||
self::OP_LT => '<',
|
|
||||||
self::OP_LE => '<=',
|
|
||||||
self::OP_GT => '>',
|
|
||||||
self::OP_GE => '>=',
|
|
||||||
self::OP_NE => '!=',
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var int
|
|
||||||
* @phpstan-var self::OP_*
|
|
||||||
*/
|
|
||||||
protected $operator;
|
|
||||||
|
|
||||||
/** @var string */
|
|
||||||
protected $version;
|
|
||||||
|
|
||||||
/** @var string|null */
|
|
||||||
protected $prettyString;
|
|
||||||
|
|
||||||
/** @var Bound */
|
|
||||||
protected $lowerBound;
|
|
||||||
|
|
||||||
/** @var Bound */
|
|
||||||
protected $upperBound;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets operator and version to compare with.
|
|
||||||
*
|
|
||||||
* @param string $operator
|
|
||||||
* @param string $version
|
|
||||||
*
|
|
||||||
* @throws \InvalidArgumentException if invalid operator is given.
|
|
||||||
*
|
|
||||||
* @phpstan-param self::STR_OP_* $operator
|
|
||||||
*/
|
|
||||||
public function __construct($operator, $version)
|
|
||||||
{
|
|
||||||
if (!isset(self::$transOpStr[$operator])) {
|
|
||||||
throw new \InvalidArgumentException(sprintf(
|
|
||||||
'Invalid operator "%s" given, expected one of: %s',
|
|
||||||
$operator,
|
|
||||||
implode(', ', self::getSupportedOperators())
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->operator = self::$transOpStr[$operator];
|
|
||||||
$this->version = $version;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getVersion()
|
|
||||||
{
|
|
||||||
return $this->version;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return string
|
|
||||||
*
|
|
||||||
* @phpstan-return self::STR_OP_*
|
|
||||||
*/
|
|
||||||
public function getOperator()
|
|
||||||
{
|
|
||||||
return self::$transOpInt[$this->operator];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ConstraintInterface $provider
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function matches(ConstraintInterface $provider)
|
|
||||||
{
|
|
||||||
if ($provider instanceof self) {
|
|
||||||
return $this->matchSpecific($provider);
|
|
||||||
}
|
|
||||||
|
|
||||||
// turn matching around to find a match
|
|
||||||
return $provider->matches($this);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function setPrettyString($prettyString)
|
|
||||||
{
|
|
||||||
$this->prettyString = $prettyString;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getPrettyString()
|
|
||||||
{
|
|
||||||
if ($this->prettyString) {
|
|
||||||
return $this->prettyString;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->__toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get all supported comparison operators.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*
|
|
||||||
* @phpstan-return list<self::STR_OP_*>
|
|
||||||
*/
|
|
||||||
public static function getSupportedOperators()
|
|
||||||
{
|
|
||||||
return array_keys(self::$transOpStr);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $operator
|
|
||||||
* @return int
|
|
||||||
*
|
|
||||||
* @phpstan-param self::STR_OP_* $operator
|
|
||||||
* @phpstan-return self::OP_*
|
|
||||||
*/
|
|
||||||
public static function getOperatorConstant($operator)
|
|
||||||
{
|
|
||||||
return self::$transOpStr[$operator];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $a
|
|
||||||
* @param string $b
|
|
||||||
* @param string $operator
|
|
||||||
* @param bool $compareBranches
|
|
||||||
*
|
|
||||||
* @throws \InvalidArgumentException if invalid operator is given.
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*
|
|
||||||
* @phpstan-param self::STR_OP_* $operator
|
|
||||||
*/
|
|
||||||
public function versionCompare($a, $b, $operator, $compareBranches = false)
|
|
||||||
{
|
|
||||||
if (!isset(self::$transOpStr[$operator])) {
|
|
||||||
throw new \InvalidArgumentException(sprintf(
|
|
||||||
'Invalid operator "%s" given, expected one of: %s',
|
|
||||||
$operator,
|
|
||||||
implode(', ', self::getSupportedOperators())
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
$aIsBranch = strpos($a, 'dev-') === 0;
|
|
||||||
$bIsBranch = strpos($b, 'dev-') === 0;
|
|
||||||
|
|
||||||
if ($operator === '!=' && ($aIsBranch || $bIsBranch)) {
|
|
||||||
return $a !== $b;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($aIsBranch && $bIsBranch) {
|
|
||||||
return $operator === '==' && $a === $b;
|
|
||||||
}
|
|
||||||
|
|
||||||
// when branches are not comparable, we make sure dev branches never match anything
|
|
||||||
if (!$compareBranches && ($aIsBranch || $bIsBranch)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return \version_compare($a, $b, $operator);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function compile($otherOperator)
|
|
||||||
{
|
|
||||||
if (strpos($this->version, 'dev-') === 0) {
|
|
||||||
if (self::OP_EQ === $this->operator) {
|
|
||||||
if (self::OP_EQ === $otherOperator) {
|
|
||||||
return sprintf('$b && $v === %s', \var_export($this->version, true));
|
|
||||||
}
|
|
||||||
if (self::OP_NE === $otherOperator) {
|
|
||||||
return sprintf('!$b || $v !== %s', \var_export($this->version, true));
|
|
||||||
}
|
|
||||||
return 'false';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (self::OP_NE === $this->operator) {
|
|
||||||
if (self::OP_EQ === $otherOperator) {
|
|
||||||
return sprintf('!$b || $v !== %s', \var_export($this->version, true));
|
|
||||||
}
|
|
||||||
if (self::OP_NE === $otherOperator) {
|
|
||||||
return 'true';
|
|
||||||
}
|
|
||||||
return '!$b';
|
|
||||||
}
|
|
||||||
|
|
||||||
return 'false';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (self::OP_EQ === $this->operator) {
|
|
||||||
if (self::OP_EQ === $otherOperator) {
|
|
||||||
return sprintf('\version_compare($v, %s, \'==\')', \var_export($this->version, true));
|
|
||||||
}
|
|
||||||
if (self::OP_NE === $otherOperator) {
|
|
||||||
return sprintf('$b || \version_compare($v, %s, \'!=\')', \var_export($this->version, true));
|
|
||||||
}
|
|
||||||
|
|
||||||
return sprintf('!$b && \version_compare(%s, $v, \'%s\')', \var_export($this->version, true), self::$transOpInt[$otherOperator]);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (self::OP_NE === $this->operator) {
|
|
||||||
if (self::OP_EQ === $otherOperator) {
|
|
||||||
return sprintf('$b || (!$b && \version_compare($v, %s, \'!=\'))', \var_export($this->version, true));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (self::OP_NE === $otherOperator) {
|
|
||||||
return 'true';
|
|
||||||
}
|
|
||||||
return '!$b';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (self::OP_LT === $this->operator || self::OP_LE === $this->operator) {
|
|
||||||
if (self::OP_LT === $otherOperator || self::OP_LE === $otherOperator) {
|
|
||||||
return '!$b';
|
|
||||||
}
|
|
||||||
} else { // $this->operator must be self::OP_GT || self::OP_GE here
|
|
||||||
if (self::OP_GT === $otherOperator || self::OP_GE === $otherOperator) {
|
|
||||||
return '!$b';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (self::OP_NE === $otherOperator) {
|
|
||||||
return 'true';
|
|
||||||
}
|
|
||||||
|
|
||||||
$codeComparison = sprintf('\version_compare($v, %s, \'%s\')', \var_export($this->version, true), self::$transOpInt[$this->operator]);
|
|
||||||
if ($this->operator === self::OP_LE) {
|
|
||||||
if ($otherOperator === self::OP_GT) {
|
|
||||||
return sprintf('!$b && \version_compare($v, %s, \'!=\') && ', \var_export($this->version, true)) . $codeComparison;
|
|
||||||
}
|
|
||||||
} elseif ($this->operator === self::OP_GE) {
|
|
||||||
if ($otherOperator === self::OP_LT) {
|
|
||||||
return sprintf('!$b && \version_compare($v, %s, \'!=\') && ', \var_export($this->version, true)) . $codeComparison;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return sprintf('!$b && %s', $codeComparison);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Constraint $provider
|
|
||||||
* @param bool $compareBranches
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function matchSpecific(Constraint $provider, $compareBranches = false)
|
|
||||||
{
|
|
||||||
$noEqualOp = str_replace('=', '', self::$transOpInt[$this->operator]);
|
|
||||||
$providerNoEqualOp = str_replace('=', '', self::$transOpInt[$provider->operator]);
|
|
||||||
|
|
||||||
$isEqualOp = self::OP_EQ === $this->operator;
|
|
||||||
$isNonEqualOp = self::OP_NE === $this->operator;
|
|
||||||
$isProviderEqualOp = self::OP_EQ === $provider->operator;
|
|
||||||
$isProviderNonEqualOp = self::OP_NE === $provider->operator;
|
|
||||||
|
|
||||||
// '!=' operator is match when other operator is not '==' operator or version is not match
|
|
||||||
// these kinds of comparisons always have a solution
|
|
||||||
if ($isNonEqualOp || $isProviderNonEqualOp) {
|
|
||||||
if ($isNonEqualOp && !$isProviderNonEqualOp && !$isProviderEqualOp && strpos($provider->version, 'dev-') === 0) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($isProviderNonEqualOp && !$isNonEqualOp && !$isEqualOp && strpos($this->version, 'dev-') === 0) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$isEqualOp && !$isProviderEqualOp) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return $this->versionCompare($provider->version, $this->version, '!=', $compareBranches);
|
|
||||||
}
|
|
||||||
|
|
||||||
// an example for the condition is <= 2.0 & < 1.0
|
|
||||||
// these kinds of comparisons always have a solution
|
|
||||||
if ($this->operator !== self::OP_EQ && $noEqualOp === $providerNoEqualOp) {
|
|
||||||
return !(strpos($this->version, 'dev-') === 0 || strpos($provider->version, 'dev-') === 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
$version1 = $isEqualOp ? $this->version : $provider->version;
|
|
||||||
$version2 = $isEqualOp ? $provider->version : $this->version;
|
|
||||||
$operator = $isEqualOp ? $provider->operator : $this->operator;
|
|
||||||
|
|
||||||
if ($this->versionCompare($version1, $version2, self::$transOpInt[$operator], $compareBranches)) {
|
|
||||||
// special case, e.g. require >= 1.0 and provide < 1.0
|
|
||||||
// 1.0 >= 1.0 but 1.0 is outside of the provided interval
|
|
||||||
|
|
||||||
return !(self::$transOpInt[$provider->operator] === $providerNoEqualOp
|
|
||||||
&& self::$transOpInt[$this->operator] !== $noEqualOp
|
|
||||||
&& \version_compare($provider->version, $this->version, '=='));
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function __toString()
|
|
||||||
{
|
|
||||||
return self::$transOpInt[$this->operator] . ' ' . $this->version;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getLowerBound()
|
|
||||||
{
|
|
||||||
$this->extractBounds();
|
|
||||||
|
|
||||||
return $this->lowerBound;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getUpperBound()
|
|
||||||
{
|
|
||||||
$this->extractBounds();
|
|
||||||
|
|
||||||
return $this->upperBound;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function extractBounds()
|
|
||||||
{
|
|
||||||
if (null !== $this->lowerBound) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Branches
|
|
||||||
if (strpos($this->version, 'dev-') === 0) {
|
|
||||||
$this->lowerBound = Bound::zero();
|
|
||||||
$this->upperBound = Bound::positiveInfinity();
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch ($this->operator) {
|
|
||||||
case self::OP_EQ:
|
|
||||||
$this->lowerBound = new Bound($this->version, true);
|
|
||||||
$this->upperBound = new Bound($this->version, true);
|
|
||||||
break;
|
|
||||||
case self::OP_LT:
|
|
||||||
$this->lowerBound = Bound::zero();
|
|
||||||
$this->upperBound = new Bound($this->version, false);
|
|
||||||
break;
|
|
||||||
case self::OP_LE:
|
|
||||||
$this->lowerBound = Bound::zero();
|
|
||||||
$this->upperBound = new Bound($this->version, true);
|
|
||||||
break;
|
|
||||||
case self::OP_GT:
|
|
||||||
$this->lowerBound = new Bound($this->version, false);
|
|
||||||
$this->upperBound = Bound::positiveInfinity();
|
|
||||||
break;
|
|
||||||
case self::OP_GE:
|
|
||||||
$this->lowerBound = new Bound($this->version, true);
|
|
||||||
$this->upperBound = Bound::positiveInfinity();
|
|
||||||
break;
|
|
||||||
case self::OP_NE:
|
|
||||||
$this->lowerBound = Bound::zero();
|
|
||||||
$this->upperBound = Bound::positiveInfinity();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,75 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of composer/semver.
|
|
||||||
*
|
|
||||||
* (c) Composer <https://github.com/composer>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Semver\Constraint;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DO NOT IMPLEMENT this interface. It is only meant for usage as a type hint
|
|
||||||
* in libraries relying on composer/semver but creating your own constraint class
|
|
||||||
* that implements this interface is not a supported use case and will cause the
|
|
||||||
* composer/semver components to return unexpected results.
|
|
||||||
*/
|
|
||||||
interface ConstraintInterface
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Checks whether the given constraint intersects in any way with this constraint
|
|
||||||
*
|
|
||||||
* @param ConstraintInterface $provider
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function matches(ConstraintInterface $provider);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides a compiled version of the constraint for the given operator
|
|
||||||
* The compiled version must be a PHP expression.
|
|
||||||
* Executor of compile version must provide 2 variables:
|
|
||||||
* - $v = the string version to compare with
|
|
||||||
* - $b = whether or not the version is a non-comparable branch (starts with "dev-")
|
|
||||||
*
|
|
||||||
* @see Constraint::OP_* for the list of available operators.
|
|
||||||
* @example return '!$b && version_compare($v, '1.0', '>')';
|
|
||||||
*
|
|
||||||
* @param int $otherOperator one Constraint::OP_*
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*
|
|
||||||
* @phpstan-param Constraint::OP_* $otherOperator
|
|
||||||
*/
|
|
||||||
public function compile($otherOperator);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Bound
|
|
||||||
*/
|
|
||||||
public function getUpperBound();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Bound
|
|
||||||
*/
|
|
||||||
public function getLowerBound();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getPrettyString();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string|null $prettyString
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function setPrettyString($prettyString);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function __toString();
|
|
||||||
}
|
|
@ -1,85 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of composer/semver.
|
|
||||||
*
|
|
||||||
* (c) Composer <https://github.com/composer>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Semver\Constraint;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the absence of a constraint.
|
|
||||||
*
|
|
||||||
* This constraint matches everything.
|
|
||||||
*/
|
|
||||||
class MatchAllConstraint implements ConstraintInterface
|
|
||||||
{
|
|
||||||
/** @var string|null */
|
|
||||||
protected $prettyString;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ConstraintInterface $provider
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function matches(ConstraintInterface $provider)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function compile($otherOperator)
|
|
||||||
{
|
|
||||||
return 'true';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function setPrettyString($prettyString)
|
|
||||||
{
|
|
||||||
$this->prettyString = $prettyString;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getPrettyString()
|
|
||||||
{
|
|
||||||
if ($this->prettyString) {
|
|
||||||
return $this->prettyString;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (string) $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function __toString()
|
|
||||||
{
|
|
||||||
return '*';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getUpperBound()
|
|
||||||
{
|
|
||||||
return Bound::positiveInfinity();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getLowerBound()
|
|
||||||
{
|
|
||||||
return Bound::zero();
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,83 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of composer/semver.
|
|
||||||
*
|
|
||||||
* (c) Composer <https://github.com/composer>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Semver\Constraint;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Blackhole of constraints, nothing escapes it
|
|
||||||
*/
|
|
||||||
class MatchNoneConstraint implements ConstraintInterface
|
|
||||||
{
|
|
||||||
/** @var string|null */
|
|
||||||
protected $prettyString;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ConstraintInterface $provider
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function matches(ConstraintInterface $provider)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function compile($otherOperator)
|
|
||||||
{
|
|
||||||
return 'false';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function setPrettyString($prettyString)
|
|
||||||
{
|
|
||||||
$this->prettyString = $prettyString;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getPrettyString()
|
|
||||||
{
|
|
||||||
if ($this->prettyString) {
|
|
||||||
return $this->prettyString;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (string) $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function __toString()
|
|
||||||
{
|
|
||||||
return '[]';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getUpperBound()
|
|
||||||
{
|
|
||||||
return new Bound('0.0.0.0-dev', false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getLowerBound()
|
|
||||||
{
|
|
||||||
return new Bound('0.0.0.0-dev', false);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,325 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of composer/semver.
|
|
||||||
*
|
|
||||||
* (c) Composer <https://github.com/composer>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Semver\Constraint;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines a conjunctive or disjunctive set of constraints.
|
|
||||||
*/
|
|
||||||
class MultiConstraint implements ConstraintInterface
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var ConstraintInterface[]
|
|
||||||
* @phpstan-var non-empty-array<ConstraintInterface>
|
|
||||||
*/
|
|
||||||
protected $constraints;
|
|
||||||
|
|
||||||
/** @var string|null */
|
|
||||||
protected $prettyString;
|
|
||||||
|
|
||||||
/** @var string|null */
|
|
||||||
protected $string;
|
|
||||||
|
|
||||||
/** @var bool */
|
|
||||||
protected $conjunctive;
|
|
||||||
|
|
||||||
/** @var Bound|null */
|
|
||||||
protected $lowerBound;
|
|
||||||
|
|
||||||
/** @var Bound|null */
|
|
||||||
protected $upperBound;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ConstraintInterface[] $constraints A set of constraints
|
|
||||||
* @param bool $conjunctive Whether the constraints should be treated as conjunctive or disjunctive
|
|
||||||
*
|
|
||||||
* @throws \InvalidArgumentException If less than 2 constraints are passed
|
|
||||||
*/
|
|
||||||
public function __construct(array $constraints, $conjunctive = true)
|
|
||||||
{
|
|
||||||
if (\count($constraints) < 2) {
|
|
||||||
throw new \InvalidArgumentException(
|
|
||||||
'Must provide at least two constraints for a MultiConstraint. Use '.
|
|
||||||
'the regular Constraint class for one constraint only or MatchAllConstraint for none. You may use '.
|
|
||||||
'MultiConstraint::create() which optimizes and handles those cases automatically.'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->constraints = $constraints;
|
|
||||||
$this->conjunctive = $conjunctive;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return ConstraintInterface[]
|
|
||||||
*/
|
|
||||||
public function getConstraints()
|
|
||||||
{
|
|
||||||
return $this->constraints;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function isConjunctive()
|
|
||||||
{
|
|
||||||
return $this->conjunctive;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function isDisjunctive()
|
|
||||||
{
|
|
||||||
return !$this->conjunctive;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function compile($otherOperator)
|
|
||||||
{
|
|
||||||
$parts = array();
|
|
||||||
foreach ($this->constraints as $constraint) {
|
|
||||||
$code = $constraint->compile($otherOperator);
|
|
||||||
if ($code === 'true') {
|
|
||||||
if (!$this->conjunctive) {
|
|
||||||
return 'true';
|
|
||||||
}
|
|
||||||
} elseif ($code === 'false') {
|
|
||||||
if ($this->conjunctive) {
|
|
||||||
return 'false';
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$parts[] = '('.$code.')';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$parts) {
|
|
||||||
return $this->conjunctive ? 'true' : 'false';
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->conjunctive ? implode('&&', $parts) : implode('||', $parts);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ConstraintInterface $provider
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function matches(ConstraintInterface $provider)
|
|
||||||
{
|
|
||||||
if (false === $this->conjunctive) {
|
|
||||||
foreach ($this->constraints as $constraint) {
|
|
||||||
if ($provider->matches($constraint)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// when matching a conjunctive and a disjunctive multi constraint we have to iterate over the disjunctive one
|
|
||||||
// otherwise we'd return true if different parts of the disjunctive constraint match the conjunctive one
|
|
||||||
// which would lead to incorrect results, e.g. [>1 and <2] would match [<1 or >2] although they do not intersect
|
|
||||||
if ($provider instanceof MultiConstraint && $provider->isDisjunctive()) {
|
|
||||||
return $provider->matches($this);
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($this->constraints as $constraint) {
|
|
||||||
if (!$provider->matches($constraint)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function setPrettyString($prettyString)
|
|
||||||
{
|
|
||||||
$this->prettyString = $prettyString;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getPrettyString()
|
|
||||||
{
|
|
||||||
if ($this->prettyString) {
|
|
||||||
return $this->prettyString;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (string) $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function __toString()
|
|
||||||
{
|
|
||||||
if ($this->string !== null) {
|
|
||||||
return $this->string;
|
|
||||||
}
|
|
||||||
|
|
||||||
$constraints = array();
|
|
||||||
foreach ($this->constraints as $constraint) {
|
|
||||||
$constraints[] = (string) $constraint;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->string = '[' . implode($this->conjunctive ? ' ' : ' || ', $constraints) . ']';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getLowerBound()
|
|
||||||
{
|
|
||||||
$this->extractBounds();
|
|
||||||
|
|
||||||
if (null === $this->lowerBound) {
|
|
||||||
throw new \LogicException('extractBounds should have populated the lowerBound property');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->lowerBound;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getUpperBound()
|
|
||||||
{
|
|
||||||
$this->extractBounds();
|
|
||||||
|
|
||||||
if (null === $this->upperBound) {
|
|
||||||
throw new \LogicException('extractBounds should have populated the upperBound property');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->upperBound;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tries to optimize the constraints as much as possible, meaning
|
|
||||||
* reducing/collapsing congruent constraints etc.
|
|
||||||
* Does not necessarily return a MultiConstraint instance if
|
|
||||||
* things can be reduced to a simple constraint
|
|
||||||
*
|
|
||||||
* @param ConstraintInterface[] $constraints A set of constraints
|
|
||||||
* @param bool $conjunctive Whether the constraints should be treated as conjunctive or disjunctive
|
|
||||||
*
|
|
||||||
* @return ConstraintInterface
|
|
||||||
*/
|
|
||||||
public static function create(array $constraints, $conjunctive = true)
|
|
||||||
{
|
|
||||||
if (0 === \count($constraints)) {
|
|
||||||
return new MatchAllConstraint();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (1 === \count($constraints)) {
|
|
||||||
return $constraints[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
$optimized = self::optimizeConstraints($constraints, $conjunctive);
|
|
||||||
if ($optimized !== null) {
|
|
||||||
list($constraints, $conjunctive) = $optimized;
|
|
||||||
if (\count($constraints) === 1) {
|
|
||||||
return $constraints[0];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return new self($constraints, $conjunctive);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ConstraintInterface[] $constraints
|
|
||||||
* @param bool $conjunctive
|
|
||||||
* @return ?array
|
|
||||||
*
|
|
||||||
* @phpstan-return array{0: list<ConstraintInterface>, 1: bool}|null
|
|
||||||
*/
|
|
||||||
private static function optimizeConstraints(array $constraints, $conjunctive)
|
|
||||||
{
|
|
||||||
// parse the two OR groups and if they are contiguous we collapse
|
|
||||||
// them into one constraint
|
|
||||||
// [>= 1 < 2] || [>= 2 < 3] || [>= 3 < 4] => [>= 1 < 4]
|
|
||||||
if (!$conjunctive) {
|
|
||||||
$left = $constraints[0];
|
|
||||||
$mergedConstraints = array();
|
|
||||||
$optimized = false;
|
|
||||||
for ($i = 1, $l = \count($constraints); $i < $l; $i++) {
|
|
||||||
$right = $constraints[$i];
|
|
||||||
if (
|
|
||||||
$left instanceof self
|
|
||||||
&& $left->conjunctive
|
|
||||||
&& $right instanceof self
|
|
||||||
&& $right->conjunctive
|
|
||||||
&& \count($left->constraints) === 2
|
|
||||||
&& \count($right->constraints) === 2
|
|
||||||
&& ($left0 = (string) $left->constraints[0])
|
|
||||||
&& $left0[0] === '>' && $left0[1] === '='
|
|
||||||
&& ($left1 = (string) $left->constraints[1])
|
|
||||||
&& $left1[0] === '<'
|
|
||||||
&& ($right0 = (string) $right->constraints[0])
|
|
||||||
&& $right0[0] === '>' && $right0[1] === '='
|
|
||||||
&& ($right1 = (string) $right->constraints[1])
|
|
||||||
&& $right1[0] === '<'
|
|
||||||
&& substr($left1, 2) === substr($right0, 3)
|
|
||||||
) {
|
|
||||||
$optimized = true;
|
|
||||||
$left = new MultiConstraint(
|
|
||||||
array(
|
|
||||||
$left->constraints[0],
|
|
||||||
$right->constraints[1],
|
|
||||||
),
|
|
||||||
true);
|
|
||||||
} else {
|
|
||||||
$mergedConstraints[] = $left;
|
|
||||||
$left = $right;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ($optimized) {
|
|
||||||
$mergedConstraints[] = $left;
|
|
||||||
return array($mergedConstraints, false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: Here's the place to put more optimizations
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function extractBounds()
|
|
||||||
{
|
|
||||||
if (null !== $this->lowerBound) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($this->constraints as $constraint) {
|
|
||||||
if (null === $this->lowerBound || null === $this->upperBound) {
|
|
||||||
$this->lowerBound = $constraint->getLowerBound();
|
|
||||||
$this->upperBound = $constraint->getUpperBound();
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($constraint->getLowerBound()->compareTo($this->lowerBound, $this->isConjunctive() ? '>' : '<')) {
|
|
||||||
$this->lowerBound = $constraint->getLowerBound();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($constraint->getUpperBound()->compareTo($this->upperBound, $this->isConjunctive() ? '<' : '>')) {
|
|
||||||
$this->upperBound = $constraint->getUpperBound();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
98
vendor/composer/semver/src/Interval.php
vendored
98
vendor/composer/semver/src/Interval.php
vendored
@ -1,98 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of composer/semver.
|
|
||||||
*
|
|
||||||
* (c) Composer <https://github.com/composer>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Semver;
|
|
||||||
|
|
||||||
use Composer\Semver\Constraint\Constraint;
|
|
||||||
|
|
||||||
class Interval
|
|
||||||
{
|
|
||||||
/** @var Constraint */
|
|
||||||
private $start;
|
|
||||||
/** @var Constraint */
|
|
||||||
private $end;
|
|
||||||
|
|
||||||
public function __construct(Constraint $start, Constraint $end)
|
|
||||||
{
|
|
||||||
$this->start = $start;
|
|
||||||
$this->end = $end;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Constraint
|
|
||||||
*/
|
|
||||||
public function getStart()
|
|
||||||
{
|
|
||||||
return $this->start;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Constraint
|
|
||||||
*/
|
|
||||||
public function getEnd()
|
|
||||||
{
|
|
||||||
return $this->end;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Constraint
|
|
||||||
*/
|
|
||||||
public static function fromZero()
|
|
||||||
{
|
|
||||||
static $zero;
|
|
||||||
|
|
||||||
if (null === $zero) {
|
|
||||||
$zero = new Constraint('>=', '0.0.0.0-dev');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $zero;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Constraint
|
|
||||||
*/
|
|
||||||
public static function untilPositiveInfinity()
|
|
||||||
{
|
|
||||||
static $positiveInfinity;
|
|
||||||
|
|
||||||
if (null === $positiveInfinity) {
|
|
||||||
$positiveInfinity = new Constraint('<', PHP_INT_MAX.'.0.0.0');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $positiveInfinity;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return self
|
|
||||||
*/
|
|
||||||
public static function any()
|
|
||||||
{
|
|
||||||
return new self(self::fromZero(), self::untilPositiveInfinity());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array{'names': string[], 'exclude': bool}
|
|
||||||
*/
|
|
||||||
public static function anyDev()
|
|
||||||
{
|
|
||||||
// any == exclude nothing
|
|
||||||
return array('names' => array(), 'exclude' => true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array{'names': string[], 'exclude': bool}
|
|
||||||
*/
|
|
||||||
public static function noDev()
|
|
||||||
{
|
|
||||||
// nothing == no names included
|
|
||||||
return array('names' => array(), 'exclude' => false);
|
|
||||||
}
|
|
||||||
}
|
|
478
vendor/composer/semver/src/Intervals.php
vendored
478
vendor/composer/semver/src/Intervals.php
vendored
@ -1,478 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of composer/semver.
|
|
||||||
*
|
|
||||||
* (c) Composer <https://github.com/composer>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Semver;
|
|
||||||
|
|
||||||
use Composer\Semver\Constraint\Constraint;
|
|
||||||
use Composer\Semver\Constraint\ConstraintInterface;
|
|
||||||
use Composer\Semver\Constraint\MatchAllConstraint;
|
|
||||||
use Composer\Semver\Constraint\MatchNoneConstraint;
|
|
||||||
use Composer\Semver\Constraint\MultiConstraint;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Helper class generating intervals from constraints
|
|
||||||
*
|
|
||||||
* This contains utilities for:
|
|
||||||
*
|
|
||||||
* - compacting an existing constraint which can be used to combine several into one
|
|
||||||
* by creating a MultiConstraint out of the many constraints you have.
|
|
||||||
*
|
|
||||||
* - checking whether one subset is a subset of another.
|
|
||||||
*
|
|
||||||
* Note: You should call clear to free memoization memory usage when you are done using this class
|
|
||||||
*/
|
|
||||||
class Intervals
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @phpstan-var array<string, array{'numeric': Interval[], 'branches': array{'names': string[], 'exclude': bool}}>
|
|
||||||
*/
|
|
||||||
private static $intervalsCache = array();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @phpstan-var array<string, int>
|
|
||||||
*/
|
|
||||||
private static $opSortOrder = array(
|
|
||||||
'>=' => -3,
|
|
||||||
'<' => -2,
|
|
||||||
'>' => 2,
|
|
||||||
'<=' => 3,
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Clears the memoization cache once you are done
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public static function clear()
|
|
||||||
{
|
|
||||||
self::$intervalsCache = array();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks whether $candidate is a subset of $constraint
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public static function isSubsetOf(ConstraintInterface $candidate, ConstraintInterface $constraint)
|
|
||||||
{
|
|
||||||
if ($constraint instanceof MatchAllConstraint) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($candidate instanceof MatchNoneConstraint || $constraint instanceof MatchNoneConstraint) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$intersectionIntervals = self::get(new MultiConstraint(array($candidate, $constraint), true));
|
|
||||||
$candidateIntervals = self::get($candidate);
|
|
||||||
if (\count($intersectionIntervals['numeric']) !== \count($candidateIntervals['numeric'])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($intersectionIntervals['numeric'] as $index => $interval) {
|
|
||||||
if (!isset($candidateIntervals['numeric'][$index])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((string) $candidateIntervals['numeric'][$index]->getStart() !== (string) $interval->getStart()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((string) $candidateIntervals['numeric'][$index]->getEnd() !== (string) $interval->getEnd()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($intersectionIntervals['branches']['exclude'] !== $candidateIntervals['branches']['exclude']) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (\count($intersectionIntervals['branches']['names']) !== \count($candidateIntervals['branches']['names'])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
foreach ($intersectionIntervals['branches']['names'] as $index => $name) {
|
|
||||||
if ($name !== $candidateIntervals['branches']['names'][$index]) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks whether $a and $b have any intersection, equivalent to $a->matches($b)
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public static function haveIntersections(ConstraintInterface $a, ConstraintInterface $b)
|
|
||||||
{
|
|
||||||
if ($a instanceof MatchAllConstraint || $b instanceof MatchAllConstraint) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($a instanceof MatchNoneConstraint || $b instanceof MatchNoneConstraint) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$intersectionIntervals = self::generateIntervals(new MultiConstraint(array($a, $b), true), true);
|
|
||||||
|
|
||||||
return \count($intersectionIntervals['numeric']) > 0 || $intersectionIntervals['branches']['exclude'] || \count($intersectionIntervals['branches']['names']) > 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Attempts to optimize a MultiConstraint
|
|
||||||
*
|
|
||||||
* When merging MultiConstraints together they can get very large, this will
|
|
||||||
* compact it by looking at the real intervals covered by all the constraints
|
|
||||||
* and then creates a new constraint containing only the smallest amount of rules
|
|
||||||
* to match the same intervals.
|
|
||||||
*
|
|
||||||
* @return ConstraintInterface
|
|
||||||
*/
|
|
||||||
public static function compactConstraint(ConstraintInterface $constraint)
|
|
||||||
{
|
|
||||||
if (!$constraint instanceof MultiConstraint) {
|
|
||||||
return $constraint;
|
|
||||||
}
|
|
||||||
|
|
||||||
$intervals = self::generateIntervals($constraint);
|
|
||||||
$constraints = array();
|
|
||||||
$hasNumericMatchAll = false;
|
|
||||||
|
|
||||||
if (\count($intervals['numeric']) === 1 && (string) $intervals['numeric'][0]->getStart() === (string) Interval::fromZero() && (string) $intervals['numeric'][0]->getEnd() === (string) Interval::untilPositiveInfinity()) {
|
|
||||||
$constraints[] = $intervals['numeric'][0]->getStart();
|
|
||||||
$hasNumericMatchAll = true;
|
|
||||||
} else {
|
|
||||||
$unEqualConstraints = array();
|
|
||||||
for ($i = 0, $count = \count($intervals['numeric']); $i < $count; $i++) {
|
|
||||||
$interval = $intervals['numeric'][$i];
|
|
||||||
|
|
||||||
// if current interval ends with < N and next interval begins with > N we can swap this out for != N
|
|
||||||
// but this needs to happen as a conjunctive expression together with the start of the current interval
|
|
||||||
// and end of next interval, so [>=M, <N] || [>N, <P] => [>=M, !=N, <P] but M/P can be skipped if
|
|
||||||
// they are zero/+inf
|
|
||||||
if ($interval->getEnd()->getOperator() === '<' && $i+1 < $count) {
|
|
||||||
$nextInterval = $intervals['numeric'][$i+1];
|
|
||||||
if ($interval->getEnd()->getVersion() === $nextInterval->getStart()->getVersion() && $nextInterval->getStart()->getOperator() === '>') {
|
|
||||||
// only add a start if we didn't already do so, can be skipped if we're looking at second
|
|
||||||
// interval in [>=M, <N] || [>N, <P] || [>P, <Q] where unEqualConstraints currently contains
|
|
||||||
// [>=M, !=N] already and we only want to add !=P right now
|
|
||||||
if (\count($unEqualConstraints) === 0 && (string) $interval->getStart() !== (string) Interval::fromZero()) {
|
|
||||||
$unEqualConstraints[] = $interval->getStart();
|
|
||||||
}
|
|
||||||
$unEqualConstraints[] = new Constraint('!=', $interval->getEnd()->getVersion());
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (\count($unEqualConstraints) > 0) {
|
|
||||||
// this is where the end of the following interval of a != constraint is added as explained above
|
|
||||||
if ((string) $interval->getEnd() !== (string) Interval::untilPositiveInfinity()) {
|
|
||||||
$unEqualConstraints[] = $interval->getEnd();
|
|
||||||
}
|
|
||||||
|
|
||||||
// count is 1 if entire constraint is just one != expression
|
|
||||||
if (\count($unEqualConstraints) > 1) {
|
|
||||||
$constraints[] = new MultiConstraint($unEqualConstraints, true);
|
|
||||||
} else {
|
|
||||||
$constraints[] = $unEqualConstraints[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
$unEqualConstraints = array();
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// convert back >= x - <= x intervals to == x
|
|
||||||
if ($interval->getStart()->getVersion() === $interval->getEnd()->getVersion() && $interval->getStart()->getOperator() === '>=' && $interval->getEnd()->getOperator() === '<=') {
|
|
||||||
$constraints[] = new Constraint('==', $interval->getStart()->getVersion());
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((string) $interval->getStart() === (string) Interval::fromZero()) {
|
|
||||||
$constraints[] = $interval->getEnd();
|
|
||||||
} elseif ((string) $interval->getEnd() === (string) Interval::untilPositiveInfinity()) {
|
|
||||||
$constraints[] = $interval->getStart();
|
|
||||||
} else {
|
|
||||||
$constraints[] = new MultiConstraint(array($interval->getStart(), $interval->getEnd()), true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$devConstraints = array();
|
|
||||||
|
|
||||||
if (0 === \count($intervals['branches']['names'])) {
|
|
||||||
if ($intervals['branches']['exclude']) {
|
|
||||||
if ($hasNumericMatchAll) {
|
|
||||||
return new MatchAllConstraint;
|
|
||||||
}
|
|
||||||
// otherwise constraint should contain a != operator and already cover this
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
foreach ($intervals['branches']['names'] as $branchName) {
|
|
||||||
if ($intervals['branches']['exclude']) {
|
|
||||||
$devConstraints[] = new Constraint('!=', $branchName);
|
|
||||||
} else {
|
|
||||||
$devConstraints[] = new Constraint('==', $branchName);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// excluded branches, e.g. != dev-foo are conjunctive with the interval, so
|
|
||||||
// > 2.0 != dev-foo must return a conjunctive constraint
|
|
||||||
if ($intervals['branches']['exclude']) {
|
|
||||||
if (\count($constraints) > 1) {
|
|
||||||
return new MultiConstraint(array_merge(
|
|
||||||
array(new MultiConstraint($constraints, false)),
|
|
||||||
$devConstraints
|
|
||||||
), true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (\count($constraints) === 1 && (string)$constraints[0] === (string)Interval::fromZero()) {
|
|
||||||
if (\count($devConstraints) > 1) {
|
|
||||||
return new MultiConstraint($devConstraints, true);
|
|
||||||
}
|
|
||||||
return $devConstraints[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
return new MultiConstraint(array_merge($constraints, $devConstraints), true);
|
|
||||||
}
|
|
||||||
|
|
||||||
// otherwise devConstraints contains a list of == operators for branches which are disjunctive with the
|
|
||||||
// rest of the constraint
|
|
||||||
$constraints = array_merge($constraints, $devConstraints);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (\count($constraints) > 1) {
|
|
||||||
return new MultiConstraint($constraints, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (\count($constraints) === 1) {
|
|
||||||
return $constraints[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
return new MatchNoneConstraint;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates an array of numeric intervals and branch constraints representing a given constraint
|
|
||||||
*
|
|
||||||
* if the returned numeric array is empty it means the constraint matches nothing in the numeric range (0 - +inf)
|
|
||||||
* if the returned branches array is empty it means no dev-* versions are matched
|
|
||||||
* if a constraint matches all possible dev-* versions, branches will contain Interval::anyDev()
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
* @phpstan-return array{'numeric': Interval[], 'branches': array{'names': string[], 'exclude': bool}}
|
|
||||||
*/
|
|
||||||
public static function get(ConstraintInterface $constraint)
|
|
||||||
{
|
|
||||||
$key = (string) $constraint;
|
|
||||||
|
|
||||||
if (!isset(self::$intervalsCache[$key])) {
|
|
||||||
self::$intervalsCache[$key] = self::generateIntervals($constraint);
|
|
||||||
}
|
|
||||||
|
|
||||||
return self::$intervalsCache[$key];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param bool $stopOnFirstValidInterval
|
|
||||||
*
|
|
||||||
* @phpstan-return array{'numeric': Interval[], 'branches': array{'names': string[], 'exclude': bool}}
|
|
||||||
*/
|
|
||||||
private static function generateIntervals(ConstraintInterface $constraint, $stopOnFirstValidInterval = false)
|
|
||||||
{
|
|
||||||
if ($constraint instanceof MatchAllConstraint) {
|
|
||||||
return array('numeric' => array(new Interval(Interval::fromZero(), Interval::untilPositiveInfinity())), 'branches' => Interval::anyDev());
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($constraint instanceof MatchNoneConstraint) {
|
|
||||||
return array('numeric' => array(), 'branches' => array('names' => array(), 'exclude' => false));
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($constraint instanceof Constraint) {
|
|
||||||
return self::generateSingleConstraintIntervals($constraint);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$constraint instanceof MultiConstraint) {
|
|
||||||
throw new \UnexpectedValueException('The constraint passed in should be an MatchAllConstraint, Constraint or MultiConstraint instance, got '.\get_class($constraint).'.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$constraints = $constraint->getConstraints();
|
|
||||||
|
|
||||||
$numericGroups = array();
|
|
||||||
$constraintBranches = array();
|
|
||||||
foreach ($constraints as $c) {
|
|
||||||
$res = self::get($c);
|
|
||||||
$numericGroups[] = $res['numeric'];
|
|
||||||
$constraintBranches[] = $res['branches'];
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($constraint->isDisjunctive()) {
|
|
||||||
$branches = Interval::noDev();
|
|
||||||
foreach ($constraintBranches as $b) {
|
|
||||||
if ($b['exclude']) {
|
|
||||||
if ($branches['exclude']) {
|
|
||||||
// disjunctive constraint, so only exclude what's excluded in all constraints
|
|
||||||
// !=a,!=b || !=b,!=c => !=b
|
|
||||||
$branches['names'] = array_intersect($branches['names'], $b['names']);
|
|
||||||
} else {
|
|
||||||
// disjunctive constraint so exclude all names which are not explicitly included in the alternative
|
|
||||||
// (==b || ==c) || !=a,!=b => !=a
|
|
||||||
$branches['exclude'] = true;
|
|
||||||
$branches['names'] = array_diff($b['names'], $branches['names']);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if ($branches['exclude']) {
|
|
||||||
// disjunctive constraint so exclude all names which are not explicitly included in the alternative
|
|
||||||
// !=a,!=b || (==b || ==c) => !=a
|
|
||||||
$branches['names'] = array_diff($branches['names'], $b['names']);
|
|
||||||
} else {
|
|
||||||
// disjunctive constraint, so just add all the other branches
|
|
||||||
// (==a || ==b) || ==c => ==a || ==b || ==c
|
|
||||||
$branches['names'] = array_merge($branches['names'], $b['names']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$branches = Interval::anyDev();
|
|
||||||
foreach ($constraintBranches as $b) {
|
|
||||||
if ($b['exclude']) {
|
|
||||||
if ($branches['exclude']) {
|
|
||||||
// conjunctive, so just add all branch names to be excluded
|
|
||||||
// !=a && !=b => !=a,!=b
|
|
||||||
$branches['names'] = array_merge($branches['names'], $b['names']);
|
|
||||||
} else {
|
|
||||||
// conjunctive, so only keep included names which are not excluded
|
|
||||||
// (==a||==c) && !=a,!=b => ==c
|
|
||||||
$branches['names'] = array_diff($branches['names'], $b['names']);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if ($branches['exclude']) {
|
|
||||||
// conjunctive, so only keep included names which are not excluded
|
|
||||||
// !=a,!=b && (==a||==c) => ==c
|
|
||||||
$branches['names'] = array_diff($b['names'], $branches['names']);
|
|
||||||
$branches['exclude'] = false;
|
|
||||||
} else {
|
|
||||||
// conjunctive, so only keep names that are included in both
|
|
||||||
// (==a||==b) && (==a||==c) => ==a
|
|
||||||
$branches['names'] = array_intersect($branches['names'], $b['names']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$branches['names'] = array_unique($branches['names']);
|
|
||||||
|
|
||||||
if (\count($numericGroups) === 1) {
|
|
||||||
return array('numeric' => $numericGroups[0], 'branches' => $branches);
|
|
||||||
}
|
|
||||||
|
|
||||||
$borders = array();
|
|
||||||
foreach ($numericGroups as $group) {
|
|
||||||
foreach ($group as $interval) {
|
|
||||||
$borders[] = array('version' => $interval->getStart()->getVersion(), 'operator' => $interval->getStart()->getOperator(), 'side' => 'start');
|
|
||||||
$borders[] = array('version' => $interval->getEnd()->getVersion(), 'operator' => $interval->getEnd()->getOperator(), 'side' => 'end');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$opSortOrder = self::$opSortOrder;
|
|
||||||
usort($borders, function ($a, $b) use ($opSortOrder) {
|
|
||||||
$order = version_compare($a['version'], $b['version']);
|
|
||||||
if ($order === 0) {
|
|
||||||
return $opSortOrder[$a['operator']] - $opSortOrder[$b['operator']];
|
|
||||||
}
|
|
||||||
|
|
||||||
return $order;
|
|
||||||
});
|
|
||||||
|
|
||||||
$activeIntervals = 0;
|
|
||||||
$intervals = array();
|
|
||||||
$index = 0;
|
|
||||||
$activationThreshold = $constraint->isConjunctive() ? \count($numericGroups) : 1;
|
|
||||||
$start = null;
|
|
||||||
foreach ($borders as $border) {
|
|
||||||
if ($border['side'] === 'start') {
|
|
||||||
$activeIntervals++;
|
|
||||||
} else {
|
|
||||||
$activeIntervals--;
|
|
||||||
}
|
|
||||||
if (!$start && $activeIntervals >= $activationThreshold) {
|
|
||||||
$start = new Constraint($border['operator'], $border['version']);
|
|
||||||
} elseif ($start && $activeIntervals < $activationThreshold) {
|
|
||||||
// filter out invalid intervals like > x - <= x, or >= x - < x
|
|
||||||
if (
|
|
||||||
version_compare($start->getVersion(), $border['version'], '=')
|
|
||||||
&& (
|
|
||||||
($start->getOperator() === '>' && $border['operator'] === '<=')
|
|
||||||
|| ($start->getOperator() === '>=' && $border['operator'] === '<')
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
unset($intervals[$index]);
|
|
||||||
} else {
|
|
||||||
$intervals[$index] = new Interval($start, new Constraint($border['operator'], $border['version']));
|
|
||||||
$index++;
|
|
||||||
|
|
||||||
if ($stopOnFirstValidInterval) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$start = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return array('numeric' => $intervals, 'branches' => $branches);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @phpstan-return array{'numeric': Interval[], 'branches': array{'names': string[], 'exclude': bool}}
|
|
||||||
*/
|
|
||||||
private static function generateSingleConstraintIntervals(Constraint $constraint)
|
|
||||||
{
|
|
||||||
$op = $constraint->getOperator();
|
|
||||||
|
|
||||||
// handle branch constraints first
|
|
||||||
if (strpos($constraint->getVersion(), 'dev-') === 0) {
|
|
||||||
$intervals = array();
|
|
||||||
$branches = array('names' => array(), 'exclude' => false);
|
|
||||||
|
|
||||||
// != dev-foo means any numeric version may match, we treat >/< like != they are not really defined for branches
|
|
||||||
if ($op === '!=') {
|
|
||||||
$intervals[] = new Interval(Interval::fromZero(), Interval::untilPositiveInfinity());
|
|
||||||
$branches = array('names' => array($constraint->getVersion()), 'exclude' => true);
|
|
||||||
} elseif ($op === '==') {
|
|
||||||
$branches['names'][] = $constraint->getVersion();
|
|
||||||
}
|
|
||||||
|
|
||||||
return array(
|
|
||||||
'numeric' => $intervals,
|
|
||||||
'branches' => $branches,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($op[0] === '>') { // > & >=
|
|
||||||
return array('numeric' => array(new Interval($constraint, Interval::untilPositiveInfinity())), 'branches' => Interval::noDev());
|
|
||||||
}
|
|
||||||
if ($op[0] === '<') { // < & <=
|
|
||||||
return array('numeric' => array(new Interval(Interval::fromZero(), $constraint)), 'branches' => Interval::noDev());
|
|
||||||
}
|
|
||||||
if ($op === '!=') {
|
|
||||||
// convert !=x to intervals of 0 - <x && >x - +inf + dev*
|
|
||||||
return array('numeric' => array(
|
|
||||||
new Interval(Interval::fromZero(), new Constraint('<', $constraint->getVersion())),
|
|
||||||
new Interval(new Constraint('>', $constraint->getVersion()), Interval::untilPositiveInfinity()),
|
|
||||||
), 'branches' => Interval::anyDev());
|
|
||||||
}
|
|
||||||
|
|
||||||
// convert ==x to an interval of >=x - <=x
|
|
||||||
return array('numeric' => array(
|
|
||||||
new Interval(new Constraint('>=', $constraint->getVersion()), new Constraint('<=', $constraint->getVersion())),
|
|
||||||
), 'branches' => Interval::noDev());
|
|
||||||
}
|
|
||||||
}
|
|
129
vendor/composer/semver/src/Semver.php
vendored
129
vendor/composer/semver/src/Semver.php
vendored
@ -1,129 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of composer/semver.
|
|
||||||
*
|
|
||||||
* (c) Composer <https://github.com/composer>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Semver;
|
|
||||||
|
|
||||||
use Composer\Semver\Constraint\Constraint;
|
|
||||||
|
|
||||||
class Semver
|
|
||||||
{
|
|
||||||
const SORT_ASC = 1;
|
|
||||||
const SORT_DESC = -1;
|
|
||||||
|
|
||||||
/** @var VersionParser */
|
|
||||||
private static $versionParser;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine if given version satisfies given constraints.
|
|
||||||
*
|
|
||||||
* @param string $version
|
|
||||||
* @param string $constraints
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public static function satisfies($version, $constraints)
|
|
||||||
{
|
|
||||||
if (null === self::$versionParser) {
|
|
||||||
self::$versionParser = new VersionParser();
|
|
||||||
}
|
|
||||||
|
|
||||||
$versionParser = self::$versionParser;
|
|
||||||
$provider = new Constraint('==', $versionParser->normalize($version));
|
|
||||||
$parsedConstraints = $versionParser->parseConstraints($constraints);
|
|
||||||
|
|
||||||
return $parsedConstraints->matches($provider);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return all versions that satisfy given constraints.
|
|
||||||
*
|
|
||||||
* @param string[] $versions
|
|
||||||
* @param string $constraints
|
|
||||||
*
|
|
||||||
* @return string[]
|
|
||||||
*/
|
|
||||||
public static function satisfiedBy(array $versions, $constraints)
|
|
||||||
{
|
|
||||||
$versions = array_filter($versions, function ($version) use ($constraints) {
|
|
||||||
return Semver::satisfies($version, $constraints);
|
|
||||||
});
|
|
||||||
|
|
||||||
return array_values($versions);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sort given array of versions.
|
|
||||||
*
|
|
||||||
* @param string[] $versions
|
|
||||||
*
|
|
||||||
* @return string[]
|
|
||||||
*/
|
|
||||||
public static function sort(array $versions)
|
|
||||||
{
|
|
||||||
return self::usort($versions, self::SORT_ASC);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sort given array of versions in reverse.
|
|
||||||
*
|
|
||||||
* @param string[] $versions
|
|
||||||
*
|
|
||||||
* @return string[]
|
|
||||||
*/
|
|
||||||
public static function rsort(array $versions)
|
|
||||||
{
|
|
||||||
return self::usort($versions, self::SORT_DESC);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string[] $versions
|
|
||||||
* @param int $direction
|
|
||||||
*
|
|
||||||
* @return string[]
|
|
||||||
*/
|
|
||||||
private static function usort(array $versions, $direction)
|
|
||||||
{
|
|
||||||
if (null === self::$versionParser) {
|
|
||||||
self::$versionParser = new VersionParser();
|
|
||||||
}
|
|
||||||
|
|
||||||
$versionParser = self::$versionParser;
|
|
||||||
$normalized = array();
|
|
||||||
|
|
||||||
// Normalize outside of usort() scope for minor performance increase.
|
|
||||||
// Creates an array of arrays: [[normalized, key], ...]
|
|
||||||
foreach ($versions as $key => $version) {
|
|
||||||
$normalizedVersion = $versionParser->normalize($version);
|
|
||||||
$normalizedVersion = $versionParser->normalizeDefaultBranch($normalizedVersion);
|
|
||||||
$normalized[] = array($normalizedVersion, $key);
|
|
||||||
}
|
|
||||||
|
|
||||||
usort($normalized, function (array $left, array $right) use ($direction) {
|
|
||||||
if ($left[0] === $right[0]) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Comparator::lessThan($left[0], $right[0])) {
|
|
||||||
return -$direction;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $direction;
|
|
||||||
});
|
|
||||||
|
|
||||||
// Recreate input array, using the original indexes which are now in sorted order.
|
|
||||||
$sorted = array();
|
|
||||||
foreach ($normalized as $item) {
|
|
||||||
$sorted[] = $versions[$item[1]];
|
|
||||||
}
|
|
||||||
|
|
||||||
return $sorted;
|
|
||||||
}
|
|
||||||
}
|
|
591
vendor/composer/semver/src/VersionParser.php
vendored
591
vendor/composer/semver/src/VersionParser.php
vendored
@ -1,591 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of composer/semver.
|
|
||||||
*
|
|
||||||
* (c) Composer <https://github.com/composer>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view
|
|
||||||
* the LICENSE file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Composer\Semver;
|
|
||||||
|
|
||||||
use Composer\Semver\Constraint\ConstraintInterface;
|
|
||||||
use Composer\Semver\Constraint\MatchAllConstraint;
|
|
||||||
use Composer\Semver\Constraint\MultiConstraint;
|
|
||||||
use Composer\Semver\Constraint\Constraint;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version parser.
|
|
||||||
*
|
|
||||||
* @author Jordi Boggiano <j.boggiano@seld.be>
|
|
||||||
*/
|
|
||||||
class VersionParser
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Regex to match pre-release data (sort of).
|
|
||||||
*
|
|
||||||
* Due to backwards compatibility:
|
|
||||||
* - Instead of enforcing hyphen, an underscore, dot or nothing at all are also accepted.
|
|
||||||
* - Only stabilities as recognized by Composer are allowed to precede a numerical identifier.
|
|
||||||
* - Numerical-only pre-release identifiers are not supported, see tests.
|
|
||||||
*
|
|
||||||
* |--------------|
|
|
||||||
* [major].[minor].[patch] -[pre-release] +[build-metadata]
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
private static $modifierRegex = '[._-]?(?:(stable|beta|b|RC|alpha|a|patch|pl|p)((?:[.-]?\d+)*+)?)?([.-]?dev)?';
|
|
||||||
|
|
||||||
/** @var string */
|
|
||||||
private static $stabilitiesRegex = 'stable|RC|beta|alpha|dev';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the stability of a version.
|
|
||||||
*
|
|
||||||
* @param string $version
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
* @phpstan-return 'stable'|'RC'|'beta'|'alpha'|'dev'
|
|
||||||
*/
|
|
||||||
public static function parseStability($version)
|
|
||||||
{
|
|
||||||
$version = (string) preg_replace('{#.+$}', '', (string) $version);
|
|
||||||
|
|
||||||
if (strpos($version, 'dev-') === 0 || '-dev' === substr($version, -4)) {
|
|
||||||
return 'dev';
|
|
||||||
}
|
|
||||||
|
|
||||||
preg_match('{' . self::$modifierRegex . '(?:\+.*)?$}i', strtolower($version), $match);
|
|
||||||
|
|
||||||
if (!empty($match[3])) {
|
|
||||||
return 'dev';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($match[1])) {
|
|
||||||
if ('beta' === $match[1] || 'b' === $match[1]) {
|
|
||||||
return 'beta';
|
|
||||||
}
|
|
||||||
if ('alpha' === $match[1] || 'a' === $match[1]) {
|
|
||||||
return 'alpha';
|
|
||||||
}
|
|
||||||
if ('rc' === $match[1]) {
|
|
||||||
return 'RC';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return 'stable';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $stability
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
* @phpstan-return 'stable'|'RC'|'beta'|'alpha'|'dev'
|
|
||||||
*/
|
|
||||||
public static function normalizeStability($stability)
|
|
||||||
{
|
|
||||||
$stability = strtolower((string) $stability);
|
|
||||||
|
|
||||||
if (!in_array($stability, array('stable', 'rc', 'beta', 'alpha', 'dev'), true)) {
|
|
||||||
throw new \InvalidArgumentException('Invalid stability string "'.$stability.'", expected one of stable, RC, beta, alpha or dev');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $stability === 'rc' ? 'RC' : $stability;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Normalizes a version string to be able to perform comparisons on it.
|
|
||||||
*
|
|
||||||
* @param string $version
|
|
||||||
* @param ?string $fullVersion optional complete version string to give more context
|
|
||||||
*
|
|
||||||
* @throws \UnexpectedValueException
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function normalize($version, $fullVersion = null)
|
|
||||||
{
|
|
||||||
$version = trim((string) $version);
|
|
||||||
$origVersion = $version;
|
|
||||||
if (null === $fullVersion) {
|
|
||||||
$fullVersion = $version;
|
|
||||||
}
|
|
||||||
|
|
||||||
// strip off aliasing
|
|
||||||
if (preg_match('{^([^,\s]++) ++as ++([^,\s]++)$}', $version, $match)) {
|
|
||||||
$version = $match[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
// strip off stability flag
|
|
||||||
if (preg_match('{@(?:' . self::$stabilitiesRegex . ')$}i', $version, $match)) {
|
|
||||||
$version = substr($version, 0, strlen($version) - strlen($match[0]));
|
|
||||||
}
|
|
||||||
|
|
||||||
// normalize master/trunk/default branches to dev-name for BC with 1.x as these used to be valid constraints
|
|
||||||
if (\in_array($version, array('master', 'trunk', 'default'), true)) {
|
|
||||||
$version = 'dev-' . $version;
|
|
||||||
}
|
|
||||||
|
|
||||||
// if requirement is branch-like, use full name
|
|
||||||
if (stripos($version, 'dev-') === 0) {
|
|
||||||
return 'dev-' . substr($version, 4);
|
|
||||||
}
|
|
||||||
|
|
||||||
// strip off build metadata
|
|
||||||
if (preg_match('{^([^,\s+]++)\+[^\s]++$}', $version, $match)) {
|
|
||||||
$version = $match[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
// match classical versioning
|
|
||||||
if (preg_match('{^v?(\d{1,5}+)(\.\d++)?(\.\d++)?(\.\d++)?' . self::$modifierRegex . '$}i', $version, $matches)) {
|
|
||||||
$version = $matches[1]
|
|
||||||
. (!empty($matches[2]) ? $matches[2] : '.0')
|
|
||||||
. (!empty($matches[3]) ? $matches[3] : '.0')
|
|
||||||
. (!empty($matches[4]) ? $matches[4] : '.0');
|
|
||||||
$index = 5;
|
|
||||||
// match date(time) based versioning
|
|
||||||
} elseif (preg_match('{^v?(\d{4}(?:[.:-]?\d{2}){1,6}(?:[.:-]?\d{1,3}){0,2})' . self::$modifierRegex . '$}i', $version, $matches)) {
|
|
||||||
$version = (string) preg_replace('{\D}', '.', $matches[1]);
|
|
||||||
$index = 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
// add version modifiers if a version was matched
|
|
||||||
if (isset($index)) {
|
|
||||||
if (!empty($matches[$index])) {
|
|
||||||
if ('stable' === $matches[$index]) {
|
|
||||||
return $version;
|
|
||||||
}
|
|
||||||
$version .= '-' . $this->expandStability($matches[$index]) . (isset($matches[$index + 1]) && '' !== $matches[$index + 1] ? ltrim($matches[$index + 1], '.-') : '');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($matches[$index + 2])) {
|
|
||||||
$version .= '-dev';
|
|
||||||
}
|
|
||||||
|
|
||||||
return $version;
|
|
||||||
}
|
|
||||||
|
|
||||||
// match dev branches
|
|
||||||
if (preg_match('{(.*?)[.-]?dev$}i', $version, $match)) {
|
|
||||||
try {
|
|
||||||
$normalized = $this->normalizeBranch($match[1]);
|
|
||||||
// a branch ending with -dev is only valid if it is numeric
|
|
||||||
// if it gets prefixed with dev- it means the branch name should
|
|
||||||
// have had a dev- prefix already when passed to normalize
|
|
||||||
if (strpos($normalized, 'dev-') === false) {
|
|
||||||
return $normalized;
|
|
||||||
}
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$extraMessage = '';
|
|
||||||
if (preg_match('{ +as +' . preg_quote($version) . '(?:@(?:'.self::$stabilitiesRegex.'))?$}', $fullVersion)) {
|
|
||||||
$extraMessage = ' in "' . $fullVersion . '", the alias must be an exact version';
|
|
||||||
} elseif (preg_match('{^' . preg_quote($version) . '(?:@(?:'.self::$stabilitiesRegex.'))? +as +}', $fullVersion)) {
|
|
||||||
$extraMessage = ' in "' . $fullVersion . '", the alias source must be an exact version, if it is a branch name you should prefix it with dev-';
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new \UnexpectedValueException('Invalid version string "' . $origVersion . '"' . $extraMessage);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Extract numeric prefix from alias, if it is in numeric format, suitable for version comparison.
|
|
||||||
*
|
|
||||||
* @param string $branch Branch name (e.g. 2.1.x-dev)
|
|
||||||
*
|
|
||||||
* @return string|false Numeric prefix if present (e.g. 2.1.) or false
|
|
||||||
*/
|
|
||||||
public function parseNumericAliasPrefix($branch)
|
|
||||||
{
|
|
||||||
if (preg_match('{^(?P<version>(\d++\\.)*\d++)(?:\.x)?-dev$}i', (string) $branch, $matches)) {
|
|
||||||
return $matches['version'] . '.';
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Normalizes a branch name to be able to perform comparisons on it.
|
|
||||||
*
|
|
||||||
* @param string $name
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function normalizeBranch($name)
|
|
||||||
{
|
|
||||||
$name = trim((string) $name);
|
|
||||||
|
|
||||||
if (preg_match('{^v?(\d++)(\.(?:\d++|[xX*]))?(\.(?:\d++|[xX*]))?(\.(?:\d++|[xX*]))?$}i', $name, $matches)) {
|
|
||||||
$version = '';
|
|
||||||
for ($i = 1; $i < 5; ++$i) {
|
|
||||||
$version .= isset($matches[$i]) ? str_replace(array('*', 'X'), 'x', $matches[$i]) : '.x';
|
|
||||||
}
|
|
||||||
|
|
||||||
return str_replace('x', '9999999', $version) . '-dev';
|
|
||||||
}
|
|
||||||
|
|
||||||
return 'dev-' . $name;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Normalizes a default branch name (i.e. master on git) to 9999999-dev.
|
|
||||||
*
|
|
||||||
* @param string $name
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*
|
|
||||||
* @deprecated No need to use this anymore in theory, Composer 2 does not normalize any branch names to 9999999-dev anymore
|
|
||||||
*/
|
|
||||||
public function normalizeDefaultBranch($name)
|
|
||||||
{
|
|
||||||
if ($name === 'dev-master' || $name === 'dev-default' || $name === 'dev-trunk') {
|
|
||||||
return '9999999-dev';
|
|
||||||
}
|
|
||||||
|
|
||||||
return (string) $name;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Parses a constraint string into MultiConstraint and/or Constraint objects.
|
|
||||||
*
|
|
||||||
* @param string $constraints
|
|
||||||
*
|
|
||||||
* @return ConstraintInterface
|
|
||||||
*/
|
|
||||||
public function parseConstraints($constraints)
|
|
||||||
{
|
|
||||||
$prettyConstraint = (string) $constraints;
|
|
||||||
|
|
||||||
$orConstraints = preg_split('{\s*\|\|?\s*}', trim((string) $constraints));
|
|
||||||
if (false === $orConstraints) {
|
|
||||||
throw new \RuntimeException('Failed to preg_split string: '.$constraints);
|
|
||||||
}
|
|
||||||
$orGroups = array();
|
|
||||||
|
|
||||||
foreach ($orConstraints as $orConstraint) {
|
|
||||||
$andConstraints = preg_split('{(?<!^|as|[=>< ,]) *(?<!-)[, ](?!-) *(?!,|as|$)}', $orConstraint);
|
|
||||||
if (false === $andConstraints) {
|
|
||||||
throw new \RuntimeException('Failed to preg_split string: '.$orConstraint);
|
|
||||||
}
|
|
||||||
if (\count($andConstraints) > 1) {
|
|
||||||
$constraintObjects = array();
|
|
||||||
foreach ($andConstraints as $andConstraint) {
|
|
||||||
foreach ($this->parseConstraint($andConstraint) as $parsedAndConstraint) {
|
|
||||||
$constraintObjects[] = $parsedAndConstraint;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$constraintObjects = $this->parseConstraint($andConstraints[0]);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (1 === \count($constraintObjects)) {
|
|
||||||
$constraint = $constraintObjects[0];
|
|
||||||
} else {
|
|
||||||
$constraint = new MultiConstraint($constraintObjects);
|
|
||||||
}
|
|
||||||
|
|
||||||
$orGroups[] = $constraint;
|
|
||||||
}
|
|
||||||
|
|
||||||
$parsedConstraint = MultiConstraint::create($orGroups, false);
|
|
||||||
|
|
||||||
$parsedConstraint->setPrettyString($prettyConstraint);
|
|
||||||
|
|
||||||
return $parsedConstraint;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $constraint
|
|
||||||
*
|
|
||||||
* @throws \UnexpectedValueException
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*
|
|
||||||
* @phpstan-return non-empty-array<ConstraintInterface>
|
|
||||||
*/
|
|
||||||
private function parseConstraint($constraint)
|
|
||||||
{
|
|
||||||
// strip off aliasing
|
|
||||||
if (preg_match('{^([^,\s]++) ++as ++([^,\s]++)$}', $constraint, $match)) {
|
|
||||||
$constraint = $match[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
// strip @stability flags, and keep it for later use
|
|
||||||
if (preg_match('{^([^,\s]*?)@(' . self::$stabilitiesRegex . ')$}i', $constraint, $match)) {
|
|
||||||
$constraint = '' !== $match[1] ? $match[1] : '*';
|
|
||||||
if ($match[2] !== 'stable') {
|
|
||||||
$stabilityModifier = $match[2];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// get rid of #refs as those are used by composer only
|
|
||||||
if (preg_match('{^(dev-[^,\s@]+?|[^,\s@]+?\.x-dev)#.+$}i', $constraint, $match)) {
|
|
||||||
$constraint = $match[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (preg_match('{^(v)?[xX*](\.[xX*])*$}i', $constraint, $match)) {
|
|
||||||
if (!empty($match[1]) || !empty($match[2])) {
|
|
||||||
return array(new Constraint('>=', '0.0.0.0-dev'));
|
|
||||||
}
|
|
||||||
|
|
||||||
return array(new MatchAllConstraint());
|
|
||||||
}
|
|
||||||
|
|
||||||
$versionRegex = 'v?(\d++)(?:\.(\d++))?(?:\.(\d++))?(?:\.(\d++))?(?:' . self::$modifierRegex . '|\.([xX*][.-]?dev))(?:\+[^\s]+)?';
|
|
||||||
|
|
||||||
// Tilde Range
|
|
||||||
//
|
|
||||||
// Like wildcard constraints, unsuffixed tilde constraints say that they must be greater than the previous
|
|
||||||
// version, to ensure that unstable instances of the current version are allowed. However, if a stability
|
|
||||||
// suffix is added to the constraint, then a >= match on the current version is used instead.
|
|
||||||
if (preg_match('{^~>?' . $versionRegex . '$}i', $constraint, $matches)) {
|
|
||||||
if (strpos($constraint, '~>') === 0) {
|
|
||||||
throw new \UnexpectedValueException(
|
|
||||||
'Could not parse version constraint ' . $constraint . ': ' .
|
|
||||||
'Invalid operator "~>", you probably meant to use the "~" operator'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Work out which position in the version we are operating at
|
|
||||||
if (isset($matches[4]) && '' !== $matches[4] && null !== $matches[4]) {
|
|
||||||
$position = 4;
|
|
||||||
} elseif (isset($matches[3]) && '' !== $matches[3] && null !== $matches[3]) {
|
|
||||||
$position = 3;
|
|
||||||
} elseif (isset($matches[2]) && '' !== $matches[2] && null !== $matches[2]) {
|
|
||||||
$position = 2;
|
|
||||||
} else {
|
|
||||||
$position = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// when matching 2.x-dev or 3.0.x-dev we have to shift the second or third number, despite no second/third number matching above
|
|
||||||
if (!empty($matches[8])) {
|
|
||||||
$position++;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Calculate the stability suffix
|
|
||||||
$stabilitySuffix = '';
|
|
||||||
if (empty($matches[5]) && empty($matches[7]) && empty($matches[8])) {
|
|
||||||
$stabilitySuffix .= '-dev';
|
|
||||||
}
|
|
||||||
|
|
||||||
$lowVersion = $this->normalize(substr($constraint . $stabilitySuffix, 1));
|
|
||||||
$lowerBound = new Constraint('>=', $lowVersion);
|
|
||||||
|
|
||||||
// For upper bound, we increment the position of one more significance,
|
|
||||||
// but highPosition = 0 would be illegal
|
|
||||||
$highPosition = max(1, $position - 1);
|
|
||||||
$highVersion = $this->manipulateVersionString($matches, $highPosition, 1) . '-dev';
|
|
||||||
$upperBound = new Constraint('<', $highVersion);
|
|
||||||
|
|
||||||
return array(
|
|
||||||
$lowerBound,
|
|
||||||
$upperBound,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Caret Range
|
|
||||||
//
|
|
||||||
// Allows changes that do not modify the left-most non-zero digit in the [major, minor, patch] tuple.
|
|
||||||
// In other words, this allows patch and minor updates for versions 1.0.0 and above, patch updates for
|
|
||||||
// versions 0.X >=0.1.0, and no updates for versions 0.0.X
|
|
||||||
if (preg_match('{^\^' . $versionRegex . '($)}i', $constraint, $matches)) {
|
|
||||||
// Work out which position in the version we are operating at
|
|
||||||
if ('0' !== $matches[1] || '' === $matches[2] || null === $matches[2]) {
|
|
||||||
$position = 1;
|
|
||||||
} elseif ('0' !== $matches[2] || '' === $matches[3] || null === $matches[3]) {
|
|
||||||
$position = 2;
|
|
||||||
} else {
|
|
||||||
$position = 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Calculate the stability suffix
|
|
||||||
$stabilitySuffix = '';
|
|
||||||
if (empty($matches[5]) && empty($matches[7]) && empty($matches[8])) {
|
|
||||||
$stabilitySuffix .= '-dev';
|
|
||||||
}
|
|
||||||
|
|
||||||
$lowVersion = $this->normalize(substr($constraint . $stabilitySuffix, 1));
|
|
||||||
$lowerBound = new Constraint('>=', $lowVersion);
|
|
||||||
|
|
||||||
// For upper bound, we increment the position of one more significance,
|
|
||||||
// but highPosition = 0 would be illegal
|
|
||||||
$highVersion = $this->manipulateVersionString($matches, $position, 1) . '-dev';
|
|
||||||
$upperBound = new Constraint('<', $highVersion);
|
|
||||||
|
|
||||||
return array(
|
|
||||||
$lowerBound,
|
|
||||||
$upperBound,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// X Range
|
|
||||||
//
|
|
||||||
// Any of X, x, or * may be used to "stand in" for one of the numeric values in the [major, minor, patch] tuple.
|
|
||||||
// A partial version range is treated as an X-Range, so the special character is in fact optional.
|
|
||||||
if (preg_match('{^v?(\d++)(?:\.(\d++))?(?:\.(\d++))?(?:\.[xX*])++$}', $constraint, $matches)) {
|
|
||||||
if (isset($matches[3]) && '' !== $matches[3] && null !== $matches[3]) {
|
|
||||||
$position = 3;
|
|
||||||
} elseif (isset($matches[2]) && '' !== $matches[2] && null !== $matches[2]) {
|
|
||||||
$position = 2;
|
|
||||||
} else {
|
|
||||||
$position = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
$lowVersion = $this->manipulateVersionString($matches, $position) . '-dev';
|
|
||||||
$highVersion = $this->manipulateVersionString($matches, $position, 1) . '-dev';
|
|
||||||
|
|
||||||
if ($lowVersion === '0.0.0.0-dev') {
|
|
||||||
return array(new Constraint('<', $highVersion));
|
|
||||||
}
|
|
||||||
|
|
||||||
return array(
|
|
||||||
new Constraint('>=', $lowVersion),
|
|
||||||
new Constraint('<', $highVersion),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Hyphen Range
|
|
||||||
//
|
|
||||||
// Specifies an inclusive set. If a partial version is provided as the first version in the inclusive range,
|
|
||||||
// then the missing pieces are replaced with zeroes. If a partial version is provided as the second version in
|
|
||||||
// the inclusive range, then all versions that start with the supplied parts of the tuple are accepted, but
|
|
||||||
// nothing that would be greater than the provided tuple parts.
|
|
||||||
if (preg_match('{^(?P<from>' . $versionRegex . ') +- +(?P<to>' . $versionRegex . ')($)}i', $constraint, $matches)) {
|
|
||||||
// Calculate the stability suffix
|
|
||||||
$lowStabilitySuffix = '';
|
|
||||||
if (empty($matches[6]) && empty($matches[8]) && empty($matches[9])) {
|
|
||||||
$lowStabilitySuffix = '-dev';
|
|
||||||
}
|
|
||||||
|
|
||||||
$lowVersion = $this->normalize($matches['from']);
|
|
||||||
$lowerBound = new Constraint('>=', $lowVersion . $lowStabilitySuffix);
|
|
||||||
|
|
||||||
$empty = function ($x) {
|
|
||||||
return ($x === 0 || $x === '0') ? false : empty($x);
|
|
||||||
};
|
|
||||||
|
|
||||||
if ((!$empty($matches[12]) && !$empty($matches[13])) || !empty($matches[15]) || !empty($matches[17]) || !empty($matches[18])) {
|
|
||||||
$highVersion = $this->normalize($matches['to']);
|
|
||||||
$upperBound = new Constraint('<=', $highVersion);
|
|
||||||
} else {
|
|
||||||
$highMatch = array('', $matches[11], $matches[12], $matches[13], $matches[14]);
|
|
||||||
|
|
||||||
// validate to version
|
|
||||||
$this->normalize($matches['to']);
|
|
||||||
|
|
||||||
$highVersion = $this->manipulateVersionString($highMatch, $empty($matches[12]) ? 1 : 2, 1) . '-dev';
|
|
||||||
$upperBound = new Constraint('<', $highVersion);
|
|
||||||
}
|
|
||||||
|
|
||||||
return array(
|
|
||||||
$lowerBound,
|
|
||||||
$upperBound,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Basic Comparators
|
|
||||||
if (preg_match('{^(<>|!=|>=?|<=?|==?)?\s*(.*)}', $constraint, $matches)) {
|
|
||||||
try {
|
|
||||||
try {
|
|
||||||
$version = $this->normalize($matches[2]);
|
|
||||||
} catch (\UnexpectedValueException $e) {
|
|
||||||
// recover from an invalid constraint like foobar-dev which should be dev-foobar
|
|
||||||
// except if the constraint uses a known operator, in which case it must be a parse error
|
|
||||||
if (substr($matches[2], -4) === '-dev' && preg_match('{^[0-9a-zA-Z-./]+$}', $matches[2])) {
|
|
||||||
$version = $this->normalize('dev-'.substr($matches[2], 0, -4));
|
|
||||||
} else {
|
|
||||||
throw $e;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$op = $matches[1] ?: '=';
|
|
||||||
|
|
||||||
if ($op !== '==' && $op !== '=' && !empty($stabilityModifier) && self::parseStability($version) === 'stable') {
|
|
||||||
$version .= '-' . $stabilityModifier;
|
|
||||||
} elseif ('<' === $op || '>=' === $op) {
|
|
||||||
if (!preg_match('/-' . self::$modifierRegex . '$/', strtolower($matches[2]))) {
|
|
||||||
if (strpos($matches[2], 'dev-') !== 0) {
|
|
||||||
$version .= '-dev';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return array(new Constraint($matches[1] ?: '=', $version));
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$message = 'Could not parse version constraint ' . $constraint;
|
|
||||||
if (isset($e)) {
|
|
||||||
$message .= ': ' . $e->getMessage();
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new \UnexpectedValueException($message);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Increment, decrement, or simply pad a version number.
|
|
||||||
*
|
|
||||||
* Support function for {@link parseConstraint()}
|
|
||||||
*
|
|
||||||
* @param array $matches Array with version parts in array indexes 1,2,3,4
|
|
||||||
* @param int $position 1,2,3,4 - which segment of the version to increment/decrement
|
|
||||||
* @param int $increment
|
|
||||||
* @param string $pad The string to pad version parts after $position
|
|
||||||
*
|
|
||||||
* @return string|null The new version
|
|
||||||
*
|
|
||||||
* @phpstan-param string[] $matches
|
|
||||||
*/
|
|
||||||
private function manipulateVersionString(array $matches, $position, $increment = 0, $pad = '0')
|
|
||||||
{
|
|
||||||
for ($i = 4; $i > 0; --$i) {
|
|
||||||
if ($i > $position) {
|
|
||||||
$matches[$i] = $pad;
|
|
||||||
} elseif ($i === $position && $increment) {
|
|
||||||
$matches[$i] += $increment;
|
|
||||||
// If $matches[$i] was 0, carry the decrement
|
|
||||||
if ($matches[$i] < 0) {
|
|
||||||
$matches[$i] = $pad;
|
|
||||||
--$position;
|
|
||||||
|
|
||||||
// Return null on a carry overflow
|
|
||||||
if ($i === 1) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $matches[1] . '.' . $matches[2] . '.' . $matches[3] . '.' . $matches[4];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Expand shorthand stability string to long version.
|
|
||||||
*
|
|
||||||
* @param string $stability
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
private function expandStability($stability)
|
|
||||||
{
|
|
||||||
$stability = strtolower($stability);
|
|
||||||
|
|
||||||
switch ($stability) {
|
|
||||||
case 'a':
|
|
||||||
return 'alpha';
|
|
||||||
case 'b':
|
|
||||||
return 'beta';
|
|
||||||
case 'p':
|
|
||||||
case 'pl':
|
|
||||||
return 'patch';
|
|
||||||
case 'rc':
|
|
||||||
return 'RC';
|
|
||||||
default:
|
|
||||||
return $stability;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
13
vendor/doctrine/cache/README.md
vendored
13
vendor/doctrine/cache/README.md
vendored
@ -1,13 +0,0 @@
|
|||||||
# Doctrine Cache
|
|
||||||
|
|
||||||
[![Build Status](https://github.com/doctrine/cache/workflows/Continuous%20Integration/badge.svg)](https://github.com/doctrine/cache/actions)
|
|
||||||
[![Code Coverage](https://codecov.io/gh/doctrine/cache/branch/1.10.x/graph/badge.svg)](https://codecov.io/gh/doctrine/cache/branch/1.10.x)
|
|
||||||
|
|
||||||
[![Latest Stable Version](https://img.shields.io/packagist/v/doctrine/cache.svg?style=flat-square)](https://packagist.org/packages/doctrine/cache)
|
|
||||||
[![Total Downloads](https://img.shields.io/packagist/dt/doctrine/cache.svg?style=flat-square)](https://packagist.org/packages/doctrine/cache)
|
|
||||||
|
|
||||||
Cache component extracted from the Doctrine Common project. [Documentation](https://www.doctrine-project.org/projects/doctrine-cache/en/current/index.html)
|
|
||||||
|
|
||||||
This library is deprecated and will no longer receive bug fixes from the
|
|
||||||
Doctrine Project. Please use a different cache library, preferably PSR-6 or
|
|
||||||
PSR-16 instead.
|
|
27
vendor/doctrine/cache/UPGRADE-1.11.md
vendored
27
vendor/doctrine/cache/UPGRADE-1.11.md
vendored
@ -1,27 +0,0 @@
|
|||||||
# Upgrade to 1.11
|
|
||||||
|
|
||||||
doctrine/cache will no longer be maintained and all cache implementations have
|
|
||||||
been marked as deprecated. These implementations will be removed in 2.0, which
|
|
||||||
will only contain interfaces to provide a lightweight package for backward
|
|
||||||
compatibility.
|
|
||||||
|
|
||||||
There are two new classes to use in the `Doctrine\Common\Cache\Psr6` namespace:
|
|
||||||
* The `CacheAdapter` class allows using any Doctrine Cache as PSR-6 cache. This
|
|
||||||
is useful to provide a forward compatibility layer in libraries that accept
|
|
||||||
Doctrine cache implementations and switch to PSR-6.
|
|
||||||
* The `DoctrineProvider` class allows using any PSR-6 cache as Doctrine cache.
|
|
||||||
This implementation is designed for libraries that leak the cache and want to
|
|
||||||
switch to allowing PSR-6 implementations. This class is design to be used
|
|
||||||
during the transition phase of sunsetting doctrine/cache support.
|
|
||||||
|
|
||||||
A full example to setup a filesystem based PSR-6 cache with symfony/cache
|
|
||||||
using the `DoctrineProvider` to convert back to Doctrine's `Cache` interface:
|
|
||||||
|
|
||||||
```php
|
|
||||||
use Doctrine\Common\Cache\Psr6\DoctrineProvider;
|
|
||||||
use Symfony\Component\Cache\Adapter\FilesystemAdapter;
|
|
||||||
|
|
||||||
$cachePool = new FilesystemAdapter();
|
|
||||||
$cache = DoctrineProvider::wrap($cachePool);
|
|
||||||
// $cache instanceof \Doctrine\Common\Cache\Cache
|
|
||||||
```
|
|
16
vendor/doctrine/cache/UPGRADE-1.4.md
vendored
16
vendor/doctrine/cache/UPGRADE-1.4.md
vendored
@ -1,16 +0,0 @@
|
|||||||
# Upgrade to 1.4
|
|
||||||
|
|
||||||
## Minor BC Break: `Doctrine\Common\Cache\FileCache#$extension` is now `private`.
|
|
||||||
|
|
||||||
If you need to override the value of `Doctrine\Common\Cache\FileCache#$extension`, then use the
|
|
||||||
second parameter of `Doctrine\Common\Cache\FileCache#__construct()` instead of overriding
|
|
||||||
the property in your own implementation.
|
|
||||||
|
|
||||||
## Minor BC Break: file based caches paths changed
|
|
||||||
|
|
||||||
`Doctrine\Common\Cache\FileCache`, `Doctrine\Common\Cache\PhpFileCache` and
|
|
||||||
`Doctrine\Common\Cache\FilesystemCache` are using a different cache paths structure.
|
|
||||||
|
|
||||||
If you rely on warmed up caches for deployments, consider that caches generated
|
|
||||||
with `doctrine/cache` `<1.4` are not compatible with the new directory structure,
|
|
||||||
and will be ignored.
|
|
50
vendor/doctrine/cache/composer.json
vendored
50
vendor/doctrine/cache/composer.json
vendored
@ -1,50 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "doctrine/cache",
|
|
||||||
"type": "library",
|
|
||||||
"description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
|
|
||||||
"keywords": [
|
|
||||||
"php",
|
|
||||||
"cache",
|
|
||||||
"caching",
|
|
||||||
"abstraction",
|
|
||||||
"redis",
|
|
||||||
"memcached",
|
|
||||||
"couchdb",
|
|
||||||
"xcache",
|
|
||||||
"apcu"
|
|
||||||
],
|
|
||||||
"homepage": "https://www.doctrine-project.org/projects/cache.html",
|
|
||||||
"license": "MIT",
|
|
||||||
"authors": [
|
|
||||||
{"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
|
|
||||||
{"name": "Roman Borschel", "email": "roman@code-factory.org"},
|
|
||||||
{"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
|
|
||||||
{"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
|
|
||||||
{"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"}
|
|
||||||
],
|
|
||||||
"require": {
|
|
||||||
"php": "~7.1 || ^8.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
|
|
||||||
"doctrine/coding-standard": "^9",
|
|
||||||
"psr/cache": "^1.0 || ^2.0 || ^3.0",
|
|
||||||
"cache/integration-tests": "dev-master",
|
|
||||||
"symfony/cache": "^4.4 || ^5.4 || ^6",
|
|
||||||
"symfony/var-exporter": "^4.4 || ^5.4 || ^6"
|
|
||||||
},
|
|
||||||
"conflict": {
|
|
||||||
"doctrine/common": ">2.2,<2.4"
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": { "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" }
|
|
||||||
},
|
|
||||||
"autoload-dev": {
|
|
||||||
"psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests" }
|
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"allow-plugins": {
|
|
||||||
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,90 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Interface for cache drivers.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
*/
|
|
||||||
interface Cache
|
|
||||||
{
|
|
||||||
public const STATS_HITS = 'hits';
|
|
||||||
public const STATS_MISSES = 'misses';
|
|
||||||
public const STATS_UPTIME = 'uptime';
|
|
||||||
public const STATS_MEMORY_USAGE = 'memory_usage';
|
|
||||||
public const STATS_MEMORY_AVAILABLE = 'memory_available';
|
|
||||||
/**
|
|
||||||
* Only for backward compatibility (may be removed in next major release)
|
|
||||||
*
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
public const STATS_MEMORY_AVAILIABLE = 'memory_available';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fetches an entry from the cache.
|
|
||||||
*
|
|
||||||
* @param string $id The id of the cache entry to fetch.
|
|
||||||
*
|
|
||||||
* @return mixed The cached data or FALSE, if no cache entry exists for the given id.
|
|
||||||
*/
|
|
||||||
public function fetch($id);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tests if an entry exists in the cache.
|
|
||||||
*
|
|
||||||
* @param string $id The cache id of the entry to check for.
|
|
||||||
*
|
|
||||||
* @return bool TRUE if a cache entry exists for the given cache id, FALSE otherwise.
|
|
||||||
*/
|
|
||||||
public function contains($id);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Puts data into the cache.
|
|
||||||
*
|
|
||||||
* If a cache entry with the given id already exists, its data will be replaced.
|
|
||||||
*
|
|
||||||
* @param string $id The cache id.
|
|
||||||
* @param mixed $data The cache entry/data.
|
|
||||||
* @param int $lifeTime The lifetime in number of seconds for this cache entry.
|
|
||||||
* If zero (the default), the entry never expires (although it may be deleted from the cache
|
|
||||||
* to make place for other entries).
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the entry was successfully stored in the cache, FALSE otherwise.
|
|
||||||
*/
|
|
||||||
public function save($id, $data, $lifeTime = 0);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Deletes a cache entry.
|
|
||||||
*
|
|
||||||
* @param string $id The cache id.
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the cache entry was successfully deleted, FALSE otherwise.
|
|
||||||
* Deleting a non-existing entry is considered successful.
|
|
||||||
*/
|
|
||||||
public function delete($id);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieves cached information from the data store.
|
|
||||||
*
|
|
||||||
* The server's statistics array has the following values:
|
|
||||||
*
|
|
||||||
* - <b>hits</b>
|
|
||||||
* Number of keys that have been requested and found present.
|
|
||||||
*
|
|
||||||
* - <b>misses</b>
|
|
||||||
* Number of items that have been requested and not found.
|
|
||||||
*
|
|
||||||
* - <b>uptime</b>
|
|
||||||
* Time that the server is running.
|
|
||||||
*
|
|
||||||
* - <b>memory_usage</b>
|
|
||||||
* Memory used by this server to store items.
|
|
||||||
*
|
|
||||||
* - <b>memory_available</b>
|
|
||||||
* Memory allowed to use for storage.
|
|
||||||
*
|
|
||||||
* @return mixed[]|null An associative array with server's statistics if available, NULL otherwise.
|
|
||||||
*/
|
|
||||||
public function getStats();
|
|
||||||
}
|
|
@ -1,325 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
use function array_combine;
|
|
||||||
use function array_key_exists;
|
|
||||||
use function array_map;
|
|
||||||
use function sprintf;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Base class for cache provider implementations.
|
|
||||||
*/
|
|
||||||
abstract class CacheProvider implements Cache, FlushableCache, ClearableCache, MultiOperationCache
|
|
||||||
{
|
|
||||||
public const DOCTRINE_NAMESPACE_CACHEKEY = 'DoctrineNamespaceCacheKey[%s]';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The namespace to prefix all cache ids with.
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
private $namespace = '';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The namespace version.
|
|
||||||
*
|
|
||||||
* @var int|null
|
|
||||||
*/
|
|
||||||
private $namespaceVersion;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the namespace to prefix all cache ids with.
|
|
||||||
*
|
|
||||||
* @param string $namespace
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function setNamespace($namespace)
|
|
||||||
{
|
|
||||||
$this->namespace = (string) $namespace;
|
|
||||||
$this->namespaceVersion = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieves the namespace that prefixes all cache ids.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getNamespace()
|
|
||||||
{
|
|
||||||
return $this->namespace;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
public function fetch($id)
|
|
||||||
{
|
|
||||||
return $this->doFetch($this->getNamespacedId($id));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
public function fetchMultiple(array $keys)
|
|
||||||
{
|
|
||||||
if (empty($keys)) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
// note: the array_combine() is in place to keep an association between our $keys and the $namespacedKeys
|
|
||||||
$namespacedKeys = array_combine($keys, array_map([$this, 'getNamespacedId'], $keys));
|
|
||||||
$items = $this->doFetchMultiple($namespacedKeys);
|
|
||||||
$foundItems = [];
|
|
||||||
|
|
||||||
// no internal array function supports this sort of mapping: needs to be iterative
|
|
||||||
// this filters and combines keys in one pass
|
|
||||||
foreach ($namespacedKeys as $requestedKey => $namespacedKey) {
|
|
||||||
if (! isset($items[$namespacedKey]) && ! array_key_exists($namespacedKey, $items)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$foundItems[$requestedKey] = $items[$namespacedKey];
|
|
||||||
}
|
|
||||||
|
|
||||||
return $foundItems;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
public function saveMultiple(array $keysAndValues, $lifetime = 0)
|
|
||||||
{
|
|
||||||
$namespacedKeysAndValues = [];
|
|
||||||
foreach ($keysAndValues as $key => $value) {
|
|
||||||
$namespacedKeysAndValues[$this->getNamespacedId($key)] = $value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->doSaveMultiple($namespacedKeysAndValues, $lifetime);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
public function contains($id)
|
|
||||||
{
|
|
||||||
return $this->doContains($this->getNamespacedId($id));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
public function save($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
return $this->doSave($this->getNamespacedId($id), $data, $lifeTime);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
public function deleteMultiple(array $keys)
|
|
||||||
{
|
|
||||||
return $this->doDeleteMultiple(array_map([$this, 'getNamespacedId'], $keys));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
public function delete($id)
|
|
||||||
{
|
|
||||||
return $this->doDelete($this->getNamespacedId($id));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
public function getStats()
|
|
||||||
{
|
|
||||||
return $this->doGetStats();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function flushAll()
|
|
||||||
{
|
|
||||||
return $this->doFlush();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function deleteAll()
|
|
||||||
{
|
|
||||||
$namespaceCacheKey = $this->getNamespaceCacheKey();
|
|
||||||
$namespaceVersion = $this->getNamespaceVersion() + 1;
|
|
||||||
|
|
||||||
if ($this->doSave($namespaceCacheKey, $namespaceVersion)) {
|
|
||||||
$this->namespaceVersion = $namespaceVersion;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Prefixes the passed id with the configured namespace value.
|
|
||||||
*
|
|
||||||
* @param string $id The id to namespace.
|
|
||||||
*
|
|
||||||
* @return string The namespaced id.
|
|
||||||
*/
|
|
||||||
private function getNamespacedId(string $id): string
|
|
||||||
{
|
|
||||||
$namespaceVersion = $this->getNamespaceVersion();
|
|
||||||
|
|
||||||
return sprintf('%s[%s][%s]', $this->namespace, $id, $namespaceVersion);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the namespace cache key.
|
|
||||||
*/
|
|
||||||
private function getNamespaceCacheKey(): string
|
|
||||||
{
|
|
||||||
return sprintf(self::DOCTRINE_NAMESPACE_CACHEKEY, $this->namespace);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the namespace version.
|
|
||||||
*/
|
|
||||||
private function getNamespaceVersion(): int
|
|
||||||
{
|
|
||||||
if ($this->namespaceVersion !== null) {
|
|
||||||
return $this->namespaceVersion;
|
|
||||||
}
|
|
||||||
|
|
||||||
$namespaceCacheKey = $this->getNamespaceCacheKey();
|
|
||||||
$this->namespaceVersion = (int) $this->doFetch($namespaceCacheKey) ?: 1;
|
|
||||||
|
|
||||||
return $this->namespaceVersion;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Default implementation of doFetchMultiple. Each driver that supports multi-get should owerwrite it.
|
|
||||||
*
|
|
||||||
* @param string[] $keys Array of keys to retrieve from cache
|
|
||||||
*
|
|
||||||
* @return mixed[] Array of values retrieved for the given keys.
|
|
||||||
*/
|
|
||||||
protected function doFetchMultiple(array $keys)
|
|
||||||
{
|
|
||||||
$returnValues = [];
|
|
||||||
|
|
||||||
foreach ($keys as $key) {
|
|
||||||
$item = $this->doFetch($key);
|
|
||||||
if ($item === false && ! $this->doContains($key)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$returnValues[$key] = $item;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $returnValues;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fetches an entry from the cache.
|
|
||||||
*
|
|
||||||
* @param string $id The id of the cache entry to fetch.
|
|
||||||
*
|
|
||||||
* @return mixed|false The cached data or FALSE, if no cache entry exists for the given id.
|
|
||||||
*/
|
|
||||||
abstract protected function doFetch($id);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tests if an entry exists in the cache.
|
|
||||||
*
|
|
||||||
* @param string $id The cache id of the entry to check for.
|
|
||||||
*
|
|
||||||
* @return bool TRUE if a cache entry exists for the given cache id, FALSE otherwise.
|
|
||||||
*/
|
|
||||||
abstract protected function doContains($id);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Default implementation of doSaveMultiple. Each driver that supports multi-put should override it.
|
|
||||||
*
|
|
||||||
* @param mixed[] $keysAndValues Array of keys and values to save in cache
|
|
||||||
* @param int $lifetime The lifetime. If != 0, sets a specific lifetime for these
|
|
||||||
* cache entries (0 => infinite lifeTime).
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the operation was successful, FALSE if it wasn't.
|
|
||||||
*/
|
|
||||||
protected function doSaveMultiple(array $keysAndValues, $lifetime = 0)
|
|
||||||
{
|
|
||||||
$success = true;
|
|
||||||
|
|
||||||
foreach ($keysAndValues as $key => $value) {
|
|
||||||
if ($this->doSave($key, $value, $lifetime)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$success = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $success;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Puts data into the cache.
|
|
||||||
*
|
|
||||||
* @param string $id The cache id.
|
|
||||||
* @param string $data The cache entry/data.
|
|
||||||
* @param int $lifeTime The lifetime. If != 0, sets a specific lifetime for this
|
|
||||||
* cache entry (0 => infinite lifeTime).
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the entry was successfully stored in the cache, FALSE otherwise.
|
|
||||||
*/
|
|
||||||
abstract protected function doSave($id, $data, $lifeTime = 0);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Default implementation of doDeleteMultiple. Each driver that supports multi-delete should override it.
|
|
||||||
*
|
|
||||||
* @param string[] $keys Array of keys to delete from cache
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the operation was successful, FALSE if it wasn't
|
|
||||||
*/
|
|
||||||
protected function doDeleteMultiple(array $keys)
|
|
||||||
{
|
|
||||||
$success = true;
|
|
||||||
|
|
||||||
foreach ($keys as $key) {
|
|
||||||
if ($this->doDelete($key)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$success = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $success;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Deletes a cache entry.
|
|
||||||
*
|
|
||||||
* @param string $id The cache id.
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the cache entry was successfully deleted, FALSE otherwise.
|
|
||||||
*/
|
|
||||||
abstract protected function doDelete($id);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Flushes all cache entries.
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the cache entries were successfully flushed, FALSE otherwise.
|
|
||||||
*/
|
|
||||||
abstract protected function doFlush();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieves cached information from the data store.
|
|
||||||
*
|
|
||||||
* @return mixed[]|null An associative array with server's statistics if available, NULL otherwise.
|
|
||||||
*/
|
|
||||||
abstract protected function doGetStats();
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Interface for cache that can be flushed.
|
|
||||||
*
|
|
||||||
* Intended to be used for partial clearing of a cache namespace. For a more
|
|
||||||
* global "flushing", see {@see FlushableCache}.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
*/
|
|
||||||
interface ClearableCache
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Deletes all cache entries in the current cache namespace.
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the cache entries were successfully deleted, FALSE otherwise.
|
|
||||||
*/
|
|
||||||
public function deleteAll();
|
|
||||||
}
|
|
@ -1,18 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Interface for cache that can be flushed.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
*/
|
|
||||||
interface FlushableCache
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Flushes all cache entries, globally.
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the cache entries were successfully flushed, FALSE otherwise.
|
|
||||||
*/
|
|
||||||
public function flushAll();
|
|
||||||
}
|
|
@ -1,22 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Interface for cache drivers that allows to put many items at once.
|
|
||||||
*
|
|
||||||
* @deprecated
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
*/
|
|
||||||
interface MultiDeleteCache
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Deletes several cache entries.
|
|
||||||
*
|
|
||||||
* @param string[] $keys Array of keys to delete from cache
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the operation was successful, FALSE if it wasn't.
|
|
||||||
*/
|
|
||||||
public function deleteMultiple(array $keys);
|
|
||||||
}
|
|
@ -1,23 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Interface for cache drivers that allows to get many items at once.
|
|
||||||
*
|
|
||||||
* @deprecated
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
*/
|
|
||||||
interface MultiGetCache
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Returns an associative array of values for keys is found in cache.
|
|
||||||
*
|
|
||||||
* @param string[] $keys Array of keys to retrieve from cache
|
|
||||||
*
|
|
||||||
* @return mixed[] Array of retrieved values, indexed by the specified keys.
|
|
||||||
* Values that couldn't be retrieved are not contained in this array.
|
|
||||||
*/
|
|
||||||
public function fetchMultiple(array $keys);
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Interface for cache drivers that supports multiple items manipulation.
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
*/
|
|
||||||
interface MultiOperationCache extends MultiGetCache, MultiDeleteCache, MultiPutCache
|
|
||||||
{
|
|
||||||
}
|
|
@ -1,24 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Interface for cache drivers that allows to put many items at once.
|
|
||||||
*
|
|
||||||
* @deprecated
|
|
||||||
*
|
|
||||||
* @link www.doctrine-project.org
|
|
||||||
*/
|
|
||||||
interface MultiPutCache
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Returns a boolean value indicating if the operation succeeded.
|
|
||||||
*
|
|
||||||
* @param mixed[] $keysAndValues Array of keys and values to save in cache
|
|
||||||
* @param int $lifetime The lifetime. If != 0, sets a specific lifetime for these
|
|
||||||
* cache entries (0 => infinite lifeTime).
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the operation was successful, FALSE if it wasn't.
|
|
||||||
*/
|
|
||||||
public function saveMultiple(array $keysAndValues, $lifetime = 0);
|
|
||||||
}
|
|
@ -1,340 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache\Psr6;
|
|
||||||
|
|
||||||
use Doctrine\Common\Cache\Cache;
|
|
||||||
use Doctrine\Common\Cache\ClearableCache;
|
|
||||||
use Doctrine\Common\Cache\MultiDeleteCache;
|
|
||||||
use Doctrine\Common\Cache\MultiGetCache;
|
|
||||||
use Doctrine\Common\Cache\MultiPutCache;
|
|
||||||
use Psr\Cache\CacheItemInterface;
|
|
||||||
use Psr\Cache\CacheItemPoolInterface;
|
|
||||||
use Symfony\Component\Cache\DoctrineProvider as SymfonyDoctrineProvider;
|
|
||||||
|
|
||||||
use function array_key_exists;
|
|
||||||
use function assert;
|
|
||||||
use function count;
|
|
||||||
use function current;
|
|
||||||
use function get_class;
|
|
||||||
use function gettype;
|
|
||||||
use function is_object;
|
|
||||||
use function is_string;
|
|
||||||
use function microtime;
|
|
||||||
use function sprintf;
|
|
||||||
use function strpbrk;
|
|
||||||
|
|
||||||
use const PHP_VERSION_ID;
|
|
||||||
|
|
||||||
final class CacheAdapter implements CacheItemPoolInterface
|
|
||||||
{
|
|
||||||
private const RESERVED_CHARACTERS = '{}()/\@:';
|
|
||||||
|
|
||||||
/** @var Cache */
|
|
||||||
private $cache;
|
|
||||||
|
|
||||||
/** @var array<CacheItem|TypedCacheItem> */
|
|
||||||
private $deferredItems = [];
|
|
||||||
|
|
||||||
public static function wrap(Cache $cache): CacheItemPoolInterface
|
|
||||||
{
|
|
||||||
if ($cache instanceof DoctrineProvider && ! $cache->getNamespace()) {
|
|
||||||
return $cache->getPool();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($cache instanceof SymfonyDoctrineProvider && ! $cache->getNamespace()) {
|
|
||||||
$getPool = function () {
|
|
||||||
// phpcs:ignore Squiz.Scope.StaticThisUsage.Found
|
|
||||||
return $this->pool;
|
|
||||||
};
|
|
||||||
|
|
||||||
return $getPool->bindTo($cache, SymfonyDoctrineProvider::class)();
|
|
||||||
}
|
|
||||||
|
|
||||||
return new self($cache);
|
|
||||||
}
|
|
||||||
|
|
||||||
private function __construct(Cache $cache)
|
|
||||||
{
|
|
||||||
$this->cache = $cache;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @internal */
|
|
||||||
public function getCache(): Cache
|
|
||||||
{
|
|
||||||
return $this->cache;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getItem($key): CacheItemInterface
|
|
||||||
{
|
|
||||||
assert(self::validKey($key));
|
|
||||||
|
|
||||||
if (isset($this->deferredItems[$key])) {
|
|
||||||
$this->commit();
|
|
||||||
}
|
|
||||||
|
|
||||||
$value = $this->cache->fetch($key);
|
|
||||||
|
|
||||||
if (PHP_VERSION_ID >= 80000) {
|
|
||||||
if ($value !== false) {
|
|
||||||
return new TypedCacheItem($key, $value, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new TypedCacheItem($key, null, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($value !== false) {
|
|
||||||
return new CacheItem($key, $value, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new CacheItem($key, null, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getItems(array $keys = []): array
|
|
||||||
{
|
|
||||||
if ($this->deferredItems) {
|
|
||||||
$this->commit();
|
|
||||||
}
|
|
||||||
|
|
||||||
assert(self::validKeys($keys));
|
|
||||||
|
|
||||||
$values = $this->doFetchMultiple($keys);
|
|
||||||
$items = [];
|
|
||||||
|
|
||||||
if (PHP_VERSION_ID >= 80000) {
|
|
||||||
foreach ($keys as $key) {
|
|
||||||
if (array_key_exists($key, $values)) {
|
|
||||||
$items[$key] = new TypedCacheItem($key, $values[$key], true);
|
|
||||||
} else {
|
|
||||||
$items[$key] = new TypedCacheItem($key, null, false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $items;
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($keys as $key) {
|
|
||||||
if (array_key_exists($key, $values)) {
|
|
||||||
$items[$key] = new CacheItem($key, $values[$key], true);
|
|
||||||
} else {
|
|
||||||
$items[$key] = new CacheItem($key, null, false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $items;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function hasItem($key): bool
|
|
||||||
{
|
|
||||||
assert(self::validKey($key));
|
|
||||||
|
|
||||||
if (isset($this->deferredItems[$key])) {
|
|
||||||
$this->commit();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->cache->contains($key);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function clear(): bool
|
|
||||||
{
|
|
||||||
$this->deferredItems = [];
|
|
||||||
|
|
||||||
if (! $this->cache instanceof ClearableCache) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->cache->deleteAll();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function deleteItem($key): bool
|
|
||||||
{
|
|
||||||
assert(self::validKey($key));
|
|
||||||
unset($this->deferredItems[$key]);
|
|
||||||
|
|
||||||
return $this->cache->delete($key);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function deleteItems(array $keys): bool
|
|
||||||
{
|
|
||||||
foreach ($keys as $key) {
|
|
||||||
assert(self::validKey($key));
|
|
||||||
unset($this->deferredItems[$key]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->doDeleteMultiple($keys);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function save(CacheItemInterface $item): bool
|
|
||||||
{
|
|
||||||
return $this->saveDeferred($item) && $this->commit();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function saveDeferred(CacheItemInterface $item): bool
|
|
||||||
{
|
|
||||||
if (! $item instanceof CacheItem && ! $item instanceof TypedCacheItem) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->deferredItems[$item->getKey()] = $item;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function commit(): bool
|
|
||||||
{
|
|
||||||
if (! $this->deferredItems) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
$now = microtime(true);
|
|
||||||
$itemsCount = 0;
|
|
||||||
$byLifetime = [];
|
|
||||||
$expiredKeys = [];
|
|
||||||
|
|
||||||
foreach ($this->deferredItems as $key => $item) {
|
|
||||||
$lifetime = ($item->getExpiry() ?? $now) - $now;
|
|
||||||
|
|
||||||
if ($lifetime < 0) {
|
|
||||||
$expiredKeys[] = $key;
|
|
||||||
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
++$itemsCount;
|
|
||||||
$byLifetime[(int) $lifetime][$key] = $item->get();
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->deferredItems = [];
|
|
||||||
|
|
||||||
switch (count($expiredKeys)) {
|
|
||||||
case 0:
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
$this->cache->delete(current($expiredKeys));
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
$this->doDeleteMultiple($expiredKeys);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($itemsCount === 1) {
|
|
||||||
return $this->cache->save($key, $item->get(), (int) $lifetime);
|
|
||||||
}
|
|
||||||
|
|
||||||
$success = true;
|
|
||||||
foreach ($byLifetime as $lifetime => $values) {
|
|
||||||
$success = $this->doSaveMultiple($values, $lifetime) && $success;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $success;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function __destruct()
|
|
||||||
{
|
|
||||||
$this->commit();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed $key
|
|
||||||
*/
|
|
||||||
private static function validKey($key): bool
|
|
||||||
{
|
|
||||||
if (! is_string($key)) {
|
|
||||||
throw new InvalidArgument(sprintf('Cache key must be string, "%s" given.', is_object($key) ? get_class($key) : gettype($key)));
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($key === '') {
|
|
||||||
throw new InvalidArgument('Cache key length must be greater than zero.');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strpbrk($key, self::RESERVED_CHARACTERS) !== false) {
|
|
||||||
throw new InvalidArgument(sprintf('Cache key "%s" contains reserved characters "%s".', $key, self::RESERVED_CHARACTERS));
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed[] $keys
|
|
||||||
*/
|
|
||||||
private static function validKeys(array $keys): bool
|
|
||||||
{
|
|
||||||
foreach ($keys as $key) {
|
|
||||||
self::validKey($key);
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed[] $keys
|
|
||||||
*/
|
|
||||||
private function doDeleteMultiple(array $keys): bool
|
|
||||||
{
|
|
||||||
if ($this->cache instanceof MultiDeleteCache) {
|
|
||||||
return $this->cache->deleteMultiple($keys);
|
|
||||||
}
|
|
||||||
|
|
||||||
$success = true;
|
|
||||||
foreach ($keys as $key) {
|
|
||||||
$success = $this->cache->delete($key) && $success;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $success;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed[] $keys
|
|
||||||
*
|
|
||||||
* @return mixed[]
|
|
||||||
*/
|
|
||||||
private function doFetchMultiple(array $keys): array
|
|
||||||
{
|
|
||||||
if ($this->cache instanceof MultiGetCache) {
|
|
||||||
return $this->cache->fetchMultiple($keys);
|
|
||||||
}
|
|
||||||
|
|
||||||
$values = [];
|
|
||||||
foreach ($keys as $key) {
|
|
||||||
$value = $this->cache->fetch($key);
|
|
||||||
if (! $value) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$values[$key] = $value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $values;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed[] $keysAndValues
|
|
||||||
*/
|
|
||||||
private function doSaveMultiple(array $keysAndValues, int $lifetime = 0): bool
|
|
||||||
{
|
|
||||||
if ($this->cache instanceof MultiPutCache) {
|
|
||||||
return $this->cache->saveMultiple($keysAndValues, $lifetime);
|
|
||||||
}
|
|
||||||
|
|
||||||
$success = true;
|
|
||||||
foreach ($keysAndValues as $key => $value) {
|
|
||||||
$success = $this->cache->save($key, $value, $lifetime) && $success;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $success;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,118 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache\Psr6;
|
|
||||||
|
|
||||||
use DateInterval;
|
|
||||||
use DateTime;
|
|
||||||
use DateTimeInterface;
|
|
||||||
use Psr\Cache\CacheItemInterface;
|
|
||||||
use TypeError;
|
|
||||||
|
|
||||||
use function get_class;
|
|
||||||
use function gettype;
|
|
||||||
use function is_int;
|
|
||||||
use function is_object;
|
|
||||||
use function microtime;
|
|
||||||
use function sprintf;
|
|
||||||
|
|
||||||
final class CacheItem implements CacheItemInterface
|
|
||||||
{
|
|
||||||
/** @var string */
|
|
||||||
private $key;
|
|
||||||
/** @var mixed */
|
|
||||||
private $value;
|
|
||||||
/** @var bool */
|
|
||||||
private $isHit;
|
|
||||||
/** @var float|null */
|
|
||||||
private $expiry;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @internal
|
|
||||||
*
|
|
||||||
* @param mixed $data
|
|
||||||
*/
|
|
||||||
public function __construct(string $key, $data, bool $isHit)
|
|
||||||
{
|
|
||||||
$this->key = $key;
|
|
||||||
$this->value = $data;
|
|
||||||
$this->isHit = $isHit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getKey(): string
|
|
||||||
{
|
|
||||||
return $this->key;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function get()
|
|
||||||
{
|
|
||||||
return $this->value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function isHit(): bool
|
|
||||||
{
|
|
||||||
return $this->isHit;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function set($value): self
|
|
||||||
{
|
|
||||||
$this->value = $value;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function expiresAt($expiration): self
|
|
||||||
{
|
|
||||||
if ($expiration === null) {
|
|
||||||
$this->expiry = null;
|
|
||||||
} elseif ($expiration instanceof DateTimeInterface) {
|
|
||||||
$this->expiry = (float) $expiration->format('U.u');
|
|
||||||
} else {
|
|
||||||
throw new TypeError(sprintf(
|
|
||||||
'Expected $expiration to be an instance of DateTimeInterface or null, got %s',
|
|
||||||
is_object($expiration) ? get_class($expiration) : gettype($expiration)
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function expiresAfter($time): self
|
|
||||||
{
|
|
||||||
if ($time === null) {
|
|
||||||
$this->expiry = null;
|
|
||||||
} elseif ($time instanceof DateInterval) {
|
|
||||||
$this->expiry = microtime(true) + DateTime::createFromFormat('U', 0)->add($time)->format('U.u');
|
|
||||||
} elseif (is_int($time)) {
|
|
||||||
$this->expiry = $time + microtime(true);
|
|
||||||
} else {
|
|
||||||
throw new TypeError(sprintf(
|
|
||||||
'Expected $time to be either an integer, an instance of DateInterval or null, got %s',
|
|
||||||
is_object($time) ? get_class($time) : gettype($time)
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @internal
|
|
||||||
*/
|
|
||||||
public function getExpiry(): ?float
|
|
||||||
{
|
|
||||||
return $this->expiry;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,135 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of the Symfony package.
|
|
||||||
*
|
|
||||||
* (c) Fabien Potencier <fabien@symfony.com>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view the LICENSE
|
|
||||||
* file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache\Psr6;
|
|
||||||
|
|
||||||
use Doctrine\Common\Cache\Cache;
|
|
||||||
use Doctrine\Common\Cache\CacheProvider;
|
|
||||||
use Psr\Cache\CacheItemPoolInterface;
|
|
||||||
use Symfony\Component\Cache\Adapter\DoctrineAdapter as SymfonyDoctrineAdapter;
|
|
||||||
use Symfony\Contracts\Service\ResetInterface;
|
|
||||||
|
|
||||||
use function rawurlencode;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This class was copied from the Symfony Framework, see the original copyright
|
|
||||||
* notice above. The code is distributed subject to the license terms in
|
|
||||||
* https://github.com/symfony/symfony/blob/ff0cf61278982539c49e467db9ab13cbd342f76d/LICENSE
|
|
||||||
*/
|
|
||||||
final class DoctrineProvider extends CacheProvider
|
|
||||||
{
|
|
||||||
/** @var CacheItemPoolInterface */
|
|
||||||
private $pool;
|
|
||||||
|
|
||||||
public static function wrap(CacheItemPoolInterface $pool): Cache
|
|
||||||
{
|
|
||||||
if ($pool instanceof CacheAdapter) {
|
|
||||||
return $pool->getCache();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($pool instanceof SymfonyDoctrineAdapter) {
|
|
||||||
$getCache = function () {
|
|
||||||
// phpcs:ignore Squiz.Scope.StaticThisUsage.Found
|
|
||||||
return $this->provider;
|
|
||||||
};
|
|
||||||
|
|
||||||
return $getCache->bindTo($pool, SymfonyDoctrineAdapter::class)();
|
|
||||||
}
|
|
||||||
|
|
||||||
return new self($pool);
|
|
||||||
}
|
|
||||||
|
|
||||||
private function __construct(CacheItemPoolInterface $pool)
|
|
||||||
{
|
|
||||||
$this->pool = $pool;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @internal */
|
|
||||||
public function getPool(): CacheItemPoolInterface
|
|
||||||
{
|
|
||||||
return $this->pool;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function reset(): void
|
|
||||||
{
|
|
||||||
if ($this->pool instanceof ResetInterface) {
|
|
||||||
$this->pool->reset();
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->setNamespace($this->getNamespace());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*/
|
|
||||||
protected function doFetch($id)
|
|
||||||
{
|
|
||||||
$item = $this->pool->getItem(rawurlencode($id));
|
|
||||||
|
|
||||||
return $item->isHit() ? $item->get() : false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
protected function doContains($id)
|
|
||||||
{
|
|
||||||
return $this->pool->hasItem(rawurlencode($id));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
protected function doSave($id, $data, $lifeTime = 0)
|
|
||||||
{
|
|
||||||
$item = $this->pool->getItem(rawurlencode($id));
|
|
||||||
|
|
||||||
if (0 < $lifeTime) {
|
|
||||||
$item->expiresAfter($lifeTime);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->pool->save($item->set($data));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
protected function doDelete($id)
|
|
||||||
{
|
|
||||||
return $this->pool->deleteItem(rawurlencode($id));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
protected function doFlush()
|
|
||||||
{
|
|
||||||
return $this->pool->clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*
|
|
||||||
* @return array|null
|
|
||||||
*/
|
|
||||||
protected function doGetStats()
|
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache\Psr6;
|
|
||||||
|
|
||||||
use InvalidArgumentException;
|
|
||||||
use Psr\Cache\InvalidArgumentException as PsrInvalidArgumentException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @internal
|
|
||||||
*/
|
|
||||||
final class InvalidArgument extends InvalidArgumentException implements PsrInvalidArgumentException
|
|
||||||
{
|
|
||||||
}
|
|
@ -1,99 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Cache\Psr6;
|
|
||||||
|
|
||||||
use DateInterval;
|
|
||||||
use DateTime;
|
|
||||||
use DateTimeInterface;
|
|
||||||
use Psr\Cache\CacheItemInterface;
|
|
||||||
use TypeError;
|
|
||||||
|
|
||||||
use function get_debug_type;
|
|
||||||
use function is_int;
|
|
||||||
use function microtime;
|
|
||||||
use function sprintf;
|
|
||||||
|
|
||||||
final class TypedCacheItem implements CacheItemInterface
|
|
||||||
{
|
|
||||||
private ?float $expiry = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @internal
|
|
||||||
*/
|
|
||||||
public function __construct(
|
|
||||||
private string $key,
|
|
||||||
private mixed $value,
|
|
||||||
private bool $isHit,
|
|
||||||
) {
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getKey(): string
|
|
||||||
{
|
|
||||||
return $this->key;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function get(): mixed
|
|
||||||
{
|
|
||||||
return $this->value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function isHit(): bool
|
|
||||||
{
|
|
||||||
return $this->isHit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function set(mixed $value): static
|
|
||||||
{
|
|
||||||
$this->value = $value;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function expiresAt($expiration): static
|
|
||||||
{
|
|
||||||
if ($expiration === null) {
|
|
||||||
$this->expiry = null;
|
|
||||||
} elseif ($expiration instanceof DateTimeInterface) {
|
|
||||||
$this->expiry = (float) $expiration->format('U.u');
|
|
||||||
} else {
|
|
||||||
throw new TypeError(sprintf(
|
|
||||||
'Expected $expiration to be an instance of DateTimeInterface or null, got %s',
|
|
||||||
get_debug_type($expiration)
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function expiresAfter($time): static
|
|
||||||
{
|
|
||||||
if ($time === null) {
|
|
||||||
$this->expiry = null;
|
|
||||||
} elseif ($time instanceof DateInterval) {
|
|
||||||
$this->expiry = microtime(true) + DateTime::createFromFormat('U', 0)->add($time)->format('U.u');
|
|
||||||
} elseif (is_int($time)) {
|
|
||||||
$this->expiry = $time + microtime(true);
|
|
||||||
} else {
|
|
||||||
throw new TypeError(sprintf(
|
|
||||||
'Expected $time to be either an integer, an instance of DateInterval or null, got %s',
|
|
||||||
get_debug_type($time)
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @internal
|
|
||||||
*/
|
|
||||||
public function getExpiry(): ?float
|
|
||||||
{
|
|
||||||
return $this->expiry;
|
|
||||||
}
|
|
||||||
}
|
|
44
vendor/doctrine/collections/CONTRIBUTING.md
vendored
44
vendor/doctrine/collections/CONTRIBUTING.md
vendored
@ -1,44 +0,0 @@
|
|||||||
# Contribute to Doctrine
|
|
||||||
|
|
||||||
Thank you for contributing to Doctrine!
|
|
||||||
|
|
||||||
Before we can merge your Pull-Request here are some guidelines that you need to follow.
|
|
||||||
These guidelines exist not to annoy you, but to keep the code base clean,
|
|
||||||
unified and future proof.
|
|
||||||
|
|
||||||
## Coding Standard
|
|
||||||
|
|
||||||
We use the [Doctrine Coding Standard](https://github.com/doctrine/coding-standard).
|
|
||||||
|
|
||||||
## Unit-Tests
|
|
||||||
|
|
||||||
Please try to add a test for your pull-request.
|
|
||||||
|
|
||||||
* If you want to contribute new functionality add unit- or functional tests
|
|
||||||
depending on the scope of the feature.
|
|
||||||
|
|
||||||
You can run the unit-tests by calling ``vendor/bin/phpunit`` from the root of the project.
|
|
||||||
It will run all the project tests.
|
|
||||||
|
|
||||||
In order to do that, you will need a fresh copy of doctrine/collections, and you
|
|
||||||
will have to run a composer installation in the project:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
git clone git@github.com:doctrine/collections.git
|
|
||||||
cd collections
|
|
||||||
curl -sS https://getcomposer.org/installer | php --
|
|
||||||
./composer.phar install
|
|
||||||
```
|
|
||||||
|
|
||||||
## Github Actions
|
|
||||||
|
|
||||||
We automatically run your pull request through Github Actions against supported
|
|
||||||
PHP versions. If you break the tests, we cannot merge your code, so please make
|
|
||||||
sure that your code is working before opening up a Pull-Request.
|
|
||||||
|
|
||||||
## Getting merged
|
|
||||||
|
|
||||||
Please allow us time to review your pull requests. We will give our best to review
|
|
||||||
everything as fast as possible, but cannot always live up to our own expectations.
|
|
||||||
|
|
||||||
Thank you very much again for your contribution!
|
|
6
vendor/doctrine/collections/README.md
vendored
6
vendor/doctrine/collections/README.md
vendored
@ -1,6 +0,0 @@
|
|||||||
# Doctrine Collections
|
|
||||||
|
|
||||||
[![Build Status](https://github.com/doctrine/collections/workflows/Continuous%20Integration/badge.svg)](https://github.com/doctrine/collections/actions)
|
|
||||||
[![Code Coverage](https://codecov.io/gh/doctrine/collections/branch/2.0.x/graph/badge.svg)](https://codecov.io/gh/doctrine/collections/branch/2.0.x)
|
|
||||||
|
|
||||||
Collections Abstraction library
|
|
112
vendor/doctrine/collections/UPGRADE.md
vendored
112
vendor/doctrine/collections/UPGRADE.md
vendored
@ -1,112 +0,0 @@
|
|||||||
Note about upgrading: Doctrine uses static and runtime mechanisms to raise
|
|
||||||
awareness about deprecated code.
|
|
||||||
|
|
||||||
- Use of `@deprecated` docblock that is detected by IDEs (like PHPStorm) or
|
|
||||||
Static Analysis tools (like Psalm, phpstan)
|
|
||||||
- Use of our low-overhead runtime deprecation API, details:
|
|
||||||
https://github.com/doctrine/deprecations/
|
|
||||||
|
|
||||||
# Upgrade to 2.2
|
|
||||||
|
|
||||||
## Deprecated string representation of sort order
|
|
||||||
|
|
||||||
Criteria orderings direction is now represented by the
|
|
||||||
`Doctrine\Common\Collection\Order` enum.
|
|
||||||
|
|
||||||
As a consequence:
|
|
||||||
|
|
||||||
- `Criteria::ASC` and `Criteria::DESC` are deprecated in favor of
|
|
||||||
`Order::Ascending` and `Order::Descending`, respectively.
|
|
||||||
- `Criteria::getOrderings()` is deprecated in favor of `Criteria::orderings()`,
|
|
||||||
which returns `array<string, Order>`.
|
|
||||||
- `Criteria::orderBy()` accepts `array<string, string|Order>`, but passing
|
|
||||||
anything other than `array<string, Order>` is deprecated.
|
|
||||||
|
|
||||||
# Upgrade to 2.0
|
|
||||||
|
|
||||||
## BC breaking changes
|
|
||||||
|
|
||||||
Native parameter types were added. Native return types will be added in 3.0.x
|
|
||||||
As a consequence, some signatures were changed and will have to be adjusted in sub-classes.
|
|
||||||
|
|
||||||
Note that in order to keep compatibility with both 1.x and 2.x versions,
|
|
||||||
extending code would have to omit the added parameter types.
|
|
||||||
This would only work in PHP 7.2+ which is the first version featuring
|
|
||||||
[parameter widening](https://wiki.php.net/rfc/parameter-no-type-variance).
|
|
||||||
It is also recommended to add return types according to the tables below
|
|
||||||
|
|
||||||
You can find a list of major changes to public API below.
|
|
||||||
|
|
||||||
### Doctrine\Common\Collections\Collection
|
|
||||||
|
|
||||||
| 1.0.x | 3.0.x |
|
|
||||||
|---------------------------------:|:-------------------------------------------------|
|
|
||||||
| `add($element)` | `add(mixed $element): void` |
|
|
||||||
| `clear()` | `clear(): void` |
|
|
||||||
| `contains($element)` | `contains(mixed $element): bool` |
|
|
||||||
| `isEmpty()` | `isEmpty(): bool` |
|
|
||||||
| `removeElement($element)` | `removeElement(mixed $element): bool` |
|
|
||||||
| `containsKey($key)` | `containsKey(string\|int $key): bool` |
|
|
||||||
| `get()` | `get(string\|int $key): mixed` |
|
|
||||||
| `getKeys()` | `getKeys(): array` |
|
|
||||||
| `getValues()` | `getValues(): array` |
|
|
||||||
| `set($key, $value)` | `set(string\|int $key, $value): void` |
|
|
||||||
| `toArray()` | `toArray(): array` |
|
|
||||||
| `first()` | `first(): mixed` |
|
|
||||||
| `last()` | `last(): mixed` |
|
|
||||||
| `key()` | `key(): int\|string\|null` |
|
|
||||||
| `current()` | `current(): mixed` |
|
|
||||||
| `next()` | `next(): mixed` |
|
|
||||||
| `exists(Closure $p)` | `exists(Closure $p): bool` |
|
|
||||||
| `filter(Closure $p)` | `filter(Closure $p): self` |
|
|
||||||
| `forAll(Closure $p)` | `forAll(Closure $p): bool` |
|
|
||||||
| `map(Closure $func)` | `map(Closure $func): self` |
|
|
||||||
| `partition(Closure $p)` | `partition(Closure $p): array` |
|
|
||||||
| `indexOf($element)` | `indexOf(mixed $element): int\|string\|false` |
|
|
||||||
| `slice($offset, $length = null)` | `slice(int $offset, ?int $length = null): array` |
|
|
||||||
| `count()` | `count(): int` |
|
|
||||||
| `getIterator()` | `getIterator(): \Traversable` |
|
|
||||||
| `offsetSet($offset, $value)` | `offsetSet(mixed $offset, mixed $value): void` |
|
|
||||||
| `offsetUnset($offset)` | `offsetUnset(mixed $offset): void` |
|
|
||||||
| `offsetExists($offset)` | `offsetExists(mixed $offset): bool` |
|
|
||||||
|
|
||||||
### Doctrine\Common\Collections\AbstractLazyCollection
|
|
||||||
|
|
||||||
| 1.0.x | 3.0.x |
|
|
||||||
|------------------:|:------------------------|
|
|
||||||
| `isInitialized()` | `isInitialized(): bool` |
|
|
||||||
| `initialize()` | `initialize(): void` |
|
|
||||||
| `doInitialize()` | `doInitialize(): void` |
|
|
||||||
|
|
||||||
### Doctrine\Common\Collections\ArrayCollection
|
|
||||||
|
|
||||||
| 1.0.x | 3.0.x |
|
|
||||||
|------------------------------:|:--------------------------------------|
|
|
||||||
| `createFrom(array $elements)` | `createFrom(array $elements): static` |
|
|
||||||
| `__toString()` | `__toString(): string` |
|
|
||||||
|
|
||||||
### Doctrine\Common\Collections\Criteria
|
|
||||||
|
|
||||||
| 1.0.x | 3.0.x |
|
|
||||||
|------------------------------------------:|:--------------------------------------------|
|
|
||||||
| `where(Expression $expression): self` | `where(Expression $expression): static` |
|
|
||||||
| `andWhere(Expression $expression): self` | `andWhere(Expression $expression): static` |
|
|
||||||
| `orWhere(Expression $expression): self` | `orWhere(Expression $expression): static` |
|
|
||||||
| `orderBy(array $orderings): self` | `orderBy(array $orderings): static` |
|
|
||||||
| `setFirstResult(?int $firstResult): self` | `setFirstResult(?int $firstResult): static` |
|
|
||||||
| `setMaxResult(?int $maxResults): self` | `setMaxResults(?int $maxResults): static` |
|
|
||||||
|
|
||||||
### Doctrine\Common\Collections\Selectable
|
|
||||||
|
|
||||||
| 1.0.x | 3.0.x |
|
|
||||||
|-------------------------------:|:-------------------------------------------|
|
|
||||||
| `matching(Criteria $criteria)` | `matching(Criteria $criteria): Collection` |
|
|
||||||
|
|
||||||
# Upgrade to 1.7
|
|
||||||
|
|
||||||
## Deprecated null first result
|
|
||||||
|
|
||||||
Passing null as `$firstResult` to
|
|
||||||
`Doctrine\Common\Collections\Criteria::__construct()` and to
|
|
||||||
`Doctrine\Common\Collections\Criteria::setFirstResult()` is deprecated.
|
|
||||||
Use `0` instead.
|
|
63
vendor/doctrine/collections/composer.json
vendored
63
vendor/doctrine/collections/composer.json
vendored
@ -1,63 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "doctrine/collections",
|
|
||||||
"description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
|
|
||||||
"license": "MIT",
|
|
||||||
"type": "library",
|
|
||||||
"keywords": [
|
|
||||||
"php",
|
|
||||||
"collections",
|
|
||||||
"array",
|
|
||||||
"iterators"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Guilherme Blanco",
|
|
||||||
"email": "guilhermeblanco@gmail.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Roman Borschel",
|
|
||||||
"email": "roman@code-factory.org"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Benjamin Eberlei",
|
|
||||||
"email": "kontakt@beberlei.de"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Jonathan Wage",
|
|
||||||
"email": "jonwage@gmail.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Johannes Schmitt",
|
|
||||||
"email": "schmittjoh@gmail.com"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"homepage": "https://www.doctrine-project.org/projects/collections.html",
|
|
||||||
"require": {
|
|
||||||
"php": "^8.1",
|
|
||||||
"doctrine/deprecations": "^1"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"ext-json": "*",
|
|
||||||
"doctrine/coding-standard": "^12",
|
|
||||||
"phpstan/phpstan": "^1.8",
|
|
||||||
"phpstan/phpstan-phpunit": "^1.0",
|
|
||||||
"phpunit/phpunit": "^10.5",
|
|
||||||
"vimeo/psalm": "^5.11"
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Doctrine\\Common\\Collections\\": "src"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload-dev": {
|
|
||||||
"psr-4": {
|
|
||||||
"Doctrine\\Tests\\Common\\Collections\\": "tests"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"allow-plugins": {
|
|
||||||
"composer/package-versions-deprecated": true,
|
|
||||||
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,26 +0,0 @@
|
|||||||
Derived Collections
|
|
||||||
===================
|
|
||||||
|
|
||||||
You can create custom collection classes by extending the
|
|
||||||
``Doctrine\Common\Collections\ArrayCollection`` class. If the
|
|
||||||
``__construct`` semantics are different from the default ``ArrayCollection``
|
|
||||||
you can override the ``createFrom`` method:
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
final class DerivedArrayCollection extends ArrayCollection
|
|
||||||
{
|
|
||||||
/** @var \stdClass */
|
|
||||||
private $foo;
|
|
||||||
|
|
||||||
public function __construct(\stdClass $foo, array $elements = [])
|
|
||||||
{
|
|
||||||
$this->foo = $foo;
|
|
||||||
|
|
||||||
parent::__construct($elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function createFrom(array $elements) : self
|
|
||||||
{
|
|
||||||
return new static($this->foo, $elements);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,185 +0,0 @@
|
|||||||
Expression Builder
|
|
||||||
==================
|
|
||||||
|
|
||||||
The Expression Builder is a convenient fluent interface for
|
|
||||||
building expressions to be used with the ``Doctrine\Common\Collections\Criteria``
|
|
||||||
class:
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$criteria = new Criteria();
|
|
||||||
$criteria->where($expressionBuilder->eq('name', 'jwage'));
|
|
||||||
$criteria->orWhere($expressionBuilder->eq('name', 'romanb'));
|
|
||||||
|
|
||||||
$collection->matching($criteria);
|
|
||||||
|
|
||||||
The ``ExpressionBuilder`` has the following API:
|
|
||||||
|
|
||||||
andX
|
|
||||||
----
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->andX(
|
|
||||||
$expressionBuilder->eq('foo', 1),
|
|
||||||
$expressionBuilder->eq('bar', 1)
|
|
||||||
);
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
orX
|
|
||||||
---
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->orX(
|
|
||||||
$expressionBuilder->eq('foo', 1),
|
|
||||||
$expressionBuilder->eq('bar', 1)
|
|
||||||
);
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
not
|
|
||||||
---
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->not(
|
|
||||||
$expressionBuilder->eq('foo', 1)
|
|
||||||
);
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
eq
|
|
||||||
---
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->eq('foo', 1);
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
gt
|
|
||||||
---
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->gt('foo', 1);
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
lt
|
|
||||||
---
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->lt('foo', 1);
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
gte
|
|
||||||
---
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->gte('foo', 1);
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
lte
|
|
||||||
---
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->lte('foo', 1);
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
neq
|
|
||||||
---
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->neq('foo', 1);
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
isNull
|
|
||||||
------
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->isNull('foo');
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
in
|
|
||||||
---
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->in('foo', ['value1', 'value2']);
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
notIn
|
|
||||||
-----
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->notIn('foo', ['value1', 'value2']);
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
contains
|
|
||||||
--------
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->contains('foo', 'value1');
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
memberOf
|
|
||||||
--------
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->memberOf('foo', ['value1', 'value2']);
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
startsWith
|
|
||||||
----------
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->startsWith('foo', 'hello');
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
||||||
|
|
||||||
endsWith
|
|
||||||
--------
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expressionBuilder = Criteria::expr();
|
|
||||||
|
|
||||||
$expression = $expressionBuilder->endsWith('foo', 'world');
|
|
||||||
|
|
||||||
$collection->matching(new Criteria($expression));
|
|
117
vendor/doctrine/collections/docs/en/expressions.rst
vendored
117
vendor/doctrine/collections/docs/en/expressions.rst
vendored
@ -1,117 +0,0 @@
|
|||||||
Expressions
|
|
||||||
===========
|
|
||||||
|
|
||||||
The ``Doctrine\Common\Collections\Expr\Comparison`` class
|
|
||||||
can be used to create comparison expressions to be used with the
|
|
||||||
``Doctrine\Common\Collections\Criteria`` class. It has the
|
|
||||||
following operator constants:
|
|
||||||
|
|
||||||
- ``Comparison::EQ``
|
|
||||||
- ``Comparison::NEQ``
|
|
||||||
- ``Comparison::LT``
|
|
||||||
- ``Comparison::LTE``
|
|
||||||
- ``Comparison::GT``
|
|
||||||
- ``Comparison::GTE``
|
|
||||||
- ``Comparison::IS``
|
|
||||||
- ``Comparison::IN``
|
|
||||||
- ``Comparison::NIN``
|
|
||||||
- ``Comparison::CONTAINS``
|
|
||||||
- ``Comparison::MEMBER_OF``
|
|
||||||
- ``Comparison::STARTS_WITH``
|
|
||||||
- ``Comparison::ENDS_WITH``
|
|
||||||
|
|
||||||
The ``Doctrine\Common\Collections\Expr\CompositeExpression`` class
|
|
||||||
can be used to create composite expressions to be used with the
|
|
||||||
``Doctrine\Common\Collections\Criteria`` class. It has the
|
|
||||||
following operator constants:
|
|
||||||
|
|
||||||
- ``CompositeExpression::TYPE_AND``
|
|
||||||
- ``CompositeExpression::TYPE_OR``
|
|
||||||
- ``CompositeExpression::TYPE_NOT``
|
|
||||||
|
|
||||||
When using the ``TYPE_OR`` and ``TYPE_AND`` operators the
|
|
||||||
``CompositeExpression`` accepts multiple expressions as parameter
|
|
||||||
but only one expression can be provided when using the ``NOT`` operator.
|
|
||||||
|
|
||||||
The ``Doctrine\Common\Collections\Criteria`` class has the following
|
|
||||||
API to be used with expressions:
|
|
||||||
|
|
||||||
where
|
|
||||||
-----
|
|
||||||
|
|
||||||
Sets the where expression to evaluate when this Criteria is searched for.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expr = new Comparison('key', Comparison::EQ, 'value');
|
|
||||||
|
|
||||||
$criteria->where($expr);
|
|
||||||
|
|
||||||
andWhere
|
|
||||||
--------
|
|
||||||
|
|
||||||
Appends the where expression to evaluate when this Criteria is searched for
|
|
||||||
using an AND with previous expression.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expr = new Comparison('key', Comparison::EQ, 'value');
|
|
||||||
|
|
||||||
$criteria->andWhere($expr);
|
|
||||||
|
|
||||||
orWhere
|
|
||||||
-------
|
|
||||||
|
|
||||||
Appends the where expression to evaluate when this Criteria is searched for
|
|
||||||
using an OR with previous expression.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$expr1 = new Comparison('key', Comparison::EQ, 'value1');
|
|
||||||
$expr2 = new Comparison('key', Comparison::EQ, 'value2');
|
|
||||||
|
|
||||||
$criteria->where($expr1);
|
|
||||||
$criteria->orWhere($expr2);
|
|
||||||
|
|
||||||
orderBy
|
|
||||||
-------
|
|
||||||
|
|
||||||
Sets the ordering of the result of this Criteria.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
use Doctrine\Common\Collections\Order;
|
|
||||||
|
|
||||||
$criteria->orderBy(['name' => Order::Ascending]);
|
|
||||||
|
|
||||||
setFirstResult
|
|
||||||
--------------
|
|
||||||
|
|
||||||
Set the number of first result that this Criteria should return.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$criteria->setFirstResult(0);
|
|
||||||
|
|
||||||
getFirstResult
|
|
||||||
--------------
|
|
||||||
|
|
||||||
Gets the current first result option of this Criteria.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$criteria->setFirstResult(10);
|
|
||||||
|
|
||||||
echo $criteria->getFirstResult(); // 10
|
|
||||||
|
|
||||||
setMaxResults
|
|
||||||
-------------
|
|
||||||
|
|
||||||
Sets the max results that this Criteria should return.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$criteria->setMaxResults(20);
|
|
||||||
|
|
||||||
getMaxResults
|
|
||||||
-------------
|
|
||||||
|
|
||||||
Gets the current max results option of this Criteria.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$criteria->setMaxResults(20);
|
|
||||||
|
|
||||||
echo $criteria->getMaxResults(); // 20
|
|
357
vendor/doctrine/collections/docs/en/index.rst
vendored
357
vendor/doctrine/collections/docs/en/index.rst
vendored
@ -1,357 +0,0 @@
|
|||||||
Introduction
|
|
||||||
============
|
|
||||||
|
|
||||||
Doctrine Collections is a library that contains classes for working with
|
|
||||||
arrays of data. Here is an example using the simple
|
|
||||||
``Doctrine\Common\Collections\ArrayCollection`` class:
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
<?php
|
|
||||||
|
|
||||||
use Doctrine\Common\Collections\ArrayCollection;
|
|
||||||
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
|
|
||||||
$filteredCollection = $collection->filter(function($element) {
|
|
||||||
return $element > 1;
|
|
||||||
}); // [2, 3]
|
|
||||||
|
|
||||||
Collection Methods
|
|
||||||
==================
|
|
||||||
|
|
||||||
Doctrine Collections provides an interface named ``Doctrine\Common\Collections\Collection``
|
|
||||||
that resembles the nature of a regular PHP array. That is,
|
|
||||||
it is essentially an **ordered map** that can also be used
|
|
||||||
like a list.
|
|
||||||
|
|
||||||
A Collection has an internal iterator just like a PHP array. In addition,
|
|
||||||
a Collection can be iterated with external iterators, which is preferable.
|
|
||||||
To use an external iterator simply use the foreach language construct to
|
|
||||||
iterate over the collection, which calls ``getIterator()`` internally, or
|
|
||||||
explicitly retrieve an iterator though ``getIterator()`` which can then be
|
|
||||||
used to iterate over the collection. You can not rely on the internal iterator
|
|
||||||
of the collection being at a certain position unless you explicitly positioned it before.
|
|
||||||
|
|
||||||
Methods that do not alter the collection or have template types
|
|
||||||
appearing in invariant or contravariant positions are not directly
|
|
||||||
defined in ``Doctrine\Common\Collections\Collection``, but are inherited
|
|
||||||
from the ``Doctrine\Common\Collections\ReadableCollection`` interface.
|
|
||||||
|
|
||||||
The methods available on the interface are:
|
|
||||||
|
|
||||||
add
|
|
||||||
---
|
|
||||||
|
|
||||||
Adds an element at the end of the collection.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection->add('test');
|
|
||||||
|
|
||||||
clear
|
|
||||||
-----
|
|
||||||
|
|
||||||
Clears the collection, removing all elements.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection->clear();
|
|
||||||
|
|
||||||
contains
|
|
||||||
--------
|
|
||||||
|
|
||||||
Checks whether an element is contained in the collection. This is an O(n) operation, where n is the size of the collection.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new Collection(['test']);
|
|
||||||
|
|
||||||
$contains = $collection->contains('test'); // true
|
|
||||||
|
|
||||||
containsKey
|
|
||||||
-----------
|
|
||||||
|
|
||||||
Checks whether the collection contains an element with the specified key/index.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new Collection(['test' => true]);
|
|
||||||
|
|
||||||
$contains = $collection->containsKey('test'); // true
|
|
||||||
|
|
||||||
current
|
|
||||||
-------
|
|
||||||
|
|
||||||
Gets the element of the collection at the current iterator position.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new Collection(['first', 'second', 'third']);
|
|
||||||
|
|
||||||
$current = $collection->current(); // first
|
|
||||||
|
|
||||||
get
|
|
||||||
---
|
|
||||||
|
|
||||||
Gets the element at the specified key/index.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new Collection([
|
|
||||||
'key' => 'value',
|
|
||||||
]);
|
|
||||||
|
|
||||||
$value = $collection->get('key'); // value
|
|
||||||
|
|
||||||
getKeys
|
|
||||||
-------
|
|
||||||
|
|
||||||
Gets all keys/indices of the collection.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new Collection(['a', 'b', 'c']);
|
|
||||||
|
|
||||||
$keys = $collection->getKeys(); // [0, 1, 2]
|
|
||||||
|
|
||||||
getValues
|
|
||||||
---------
|
|
||||||
|
|
||||||
Gets all values of the collection.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new Collection([
|
|
||||||
'key1' => 'value1',
|
|
||||||
'key2' => 'value2',
|
|
||||||
'key3' => 'value3',
|
|
||||||
]);
|
|
||||||
|
|
||||||
$values = $collection->getValues(); // ['value1', 'value2', 'value3']
|
|
||||||
|
|
||||||
isEmpty
|
|
||||||
-------
|
|
||||||
|
|
||||||
Checks whether the collection is empty (contains no elements).
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new Collection(['a', 'b', 'c']);
|
|
||||||
|
|
||||||
$isEmpty = $collection->isEmpty(); // false
|
|
||||||
|
|
||||||
first
|
|
||||||
-----
|
|
||||||
|
|
||||||
Sets the internal iterator to the first element in the collection and returns this element.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new Collection(['first', 'second', 'third']);
|
|
||||||
|
|
||||||
$first = $collection->first(); // first
|
|
||||||
|
|
||||||
exists
|
|
||||||
------
|
|
||||||
|
|
||||||
Tests for the existence of an element that satisfies the given predicate.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new Collection(['first', 'second', 'third']);
|
|
||||||
|
|
||||||
$exists = $collection->exists(function($key, $value) {
|
|
||||||
return $value === 'first';
|
|
||||||
}); // true
|
|
||||||
|
|
||||||
findFirst
|
|
||||||
---------
|
|
||||||
|
|
||||||
Returns the first element of this collection that satisfies the given predicate.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new Collection([1, 2, 3, 2, 1]);
|
|
||||||
|
|
||||||
$one = $collection->findFirst(function(int $key, int $value): bool {
|
|
||||||
return $value > 2 && $key > 1;
|
|
||||||
}); // 3
|
|
||||||
|
|
||||||
filter
|
|
||||||
------
|
|
||||||
|
|
||||||
Returns all the elements of this collection for which your callback function returns `true`.
|
|
||||||
The order and keys of the elements are preserved.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
|
|
||||||
$filteredCollection = $collection->filter(function($element) {
|
|
||||||
return $element > 1;
|
|
||||||
}); // [2, 3]
|
|
||||||
|
|
||||||
forAll
|
|
||||||
------
|
|
||||||
|
|
||||||
Tests whether the given predicate holds for all elements of this collection.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
|
|
||||||
$forAll = $collection->forAll(function($key, $value) {
|
|
||||||
return $value > 1;
|
|
||||||
}); // false
|
|
||||||
|
|
||||||
indexOf
|
|
||||||
-------
|
|
||||||
|
|
||||||
Gets the index/key of a given element. The comparison of two elements is strict, that means not only the value but also the type must match. For objects this means reference equality.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
|
|
||||||
$indexOf = $collection->indexOf(3); // 2
|
|
||||||
|
|
||||||
key
|
|
||||||
---
|
|
||||||
|
|
||||||
Gets the key/index of the element at the current iterator position.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
|
|
||||||
$collection->next();
|
|
||||||
|
|
||||||
$key = $collection->key(); // 1
|
|
||||||
|
|
||||||
last
|
|
||||||
----
|
|
||||||
|
|
||||||
Sets the internal iterator to the last element in the collection and returns this element.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
|
|
||||||
$last = $collection->last(); // 3
|
|
||||||
|
|
||||||
map
|
|
||||||
---
|
|
||||||
|
|
||||||
Applies the given function to each element in the collection and returns a new collection with the elements returned by the function.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
|
|
||||||
$mappedCollection = $collection->map(function($value) {
|
|
||||||
return $value + 1;
|
|
||||||
}); // [2, 3, 4]
|
|
||||||
|
|
||||||
reduce
|
|
||||||
------
|
|
||||||
|
|
||||||
Applies iteratively the given function to each element in the collection, so as to reduce the collection to a single value.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
|
|
||||||
$reduce = $collection->reduce(function(int $accumulator, int $value): int {
|
|
||||||
return $accumulator + $value;
|
|
||||||
}, 0); // 6
|
|
||||||
|
|
||||||
next
|
|
||||||
----
|
|
||||||
|
|
||||||
Moves the internal iterator position to the next element and returns this element.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
|
|
||||||
$next = $collection->next(); // 2
|
|
||||||
|
|
||||||
partition
|
|
||||||
---------
|
|
||||||
|
|
||||||
Partitions this collection in two collections according to a predicate. Keys are preserved in the resulting collections.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
|
|
||||||
$mappedCollection = $collection->partition(function($key, $value) {
|
|
||||||
return $value > 1
|
|
||||||
}); // [[2, 3], [1]]
|
|
||||||
|
|
||||||
remove
|
|
||||||
------
|
|
||||||
|
|
||||||
Removes the element at the specified index from the collection.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
|
|
||||||
$collection->remove(0); // [2, 3]
|
|
||||||
|
|
||||||
removeElement
|
|
||||||
-------------
|
|
||||||
|
|
||||||
Removes the specified element from the collection, if it is found.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
|
|
||||||
$collection->removeElement(3); // [1, 2]
|
|
||||||
|
|
||||||
set
|
|
||||||
---
|
|
||||||
|
|
||||||
Sets an element in the collection at the specified key/index.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection();
|
|
||||||
|
|
||||||
$collection->set('name', 'jwage');
|
|
||||||
|
|
||||||
slice
|
|
||||||
-----
|
|
||||||
|
|
||||||
Extracts a slice of $length elements starting at position $offset from the Collection. If $length is null it returns all elements from $offset to the end of the Collection. Keys have to be preserved by this method. Calling this method will only return the selected slice and NOT change the elements contained in the collection slice is called on.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([0, 1, 2, 3, 4, 5]);
|
|
||||||
|
|
||||||
$slice = $collection->slice(1, 2); // [1, 2]
|
|
||||||
|
|
||||||
toArray
|
|
||||||
-------
|
|
||||||
|
|
||||||
Gets a native PHP array representation of the collection.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
$collection = new ArrayCollection([0, 1, 2, 3, 4, 5]);
|
|
||||||
|
|
||||||
$array = $collection->toArray(); // [0, 1, 2, 3, 4, 5]
|
|
||||||
|
|
||||||
Selectable Methods
|
|
||||||
==================
|
|
||||||
|
|
||||||
Some Doctrine Collections, like ``Doctrine\Common\Collections\ArrayCollection``,
|
|
||||||
implement an interface named ``Doctrine\Common\Collections\Selectable``
|
|
||||||
that offers the usage of a powerful expressions API, where conditions
|
|
||||||
can be applied to a collection to get a result with matching elements
|
|
||||||
only.
|
|
||||||
|
|
||||||
matching
|
|
||||||
--------
|
|
||||||
|
|
||||||
Selects all elements from a selectable that match the expression and
|
|
||||||
returns a new collection containing these elements and preserved keys.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
use Doctrine\Common\Collections\Criteria;
|
|
||||||
use Doctrine\Common\Collections\Expr\Comparison;
|
|
||||||
|
|
||||||
$collection = new ArrayCollection([
|
|
||||||
'wage' => [
|
|
||||||
'name' => 'jwage',
|
|
||||||
],
|
|
||||||
'roman' => [
|
|
||||||
'name' => 'romanb',
|
|
||||||
],
|
|
||||||
]);
|
|
||||||
|
|
||||||
$expr = new Comparison('name', '=', 'jwage');
|
|
||||||
|
|
||||||
$criteria = new Criteria();
|
|
||||||
|
|
||||||
$criteria->where($expr);
|
|
||||||
|
|
||||||
$matchingCollection = $collection->matching($criteria); // [ 'wage' => [ 'name' => 'jwage' ]]
|
|
||||||
|
|
||||||
You can read more about expressions :ref:`here <expressions>`.
|
|
@ -1,26 +0,0 @@
|
|||||||
Lazy Collections
|
|
||||||
================
|
|
||||||
|
|
||||||
To create a lazy collection you can extend the
|
|
||||||
``Doctrine\Common\Collections\AbstractLazyCollection`` class
|
|
||||||
and define the ``doInitialize`` method. Here is an example where
|
|
||||||
we lazily query the database for a collection of user records:
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
use Doctrine\DBAL\Connection;
|
|
||||||
|
|
||||||
class UsersLazyCollection extends AbstractLazyCollection
|
|
||||||
{
|
|
||||||
/** @var Connection */
|
|
||||||
private $connection;
|
|
||||||
|
|
||||||
public function __construct(Connection $connection)
|
|
||||||
{
|
|
||||||
$this->connection = $connection;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function doInitialize() : void
|
|
||||||
{
|
|
||||||
$this->collection = $this->connection->fetchAll('SELECT * FROM users');
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,29 +0,0 @@
|
|||||||
Serialization
|
|
||||||
=============
|
|
||||||
|
|
||||||
Using (un-)serialize() on a collection is not a supported use-case
|
|
||||||
and may break when changes on the collection's internals happen in the future.
|
|
||||||
If a collection needs to be serialized, use ``toArray()`` and reconstruct
|
|
||||||
the collection manually.
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
|
|
||||||
$collection = new ArrayCollection([1, 2, 3]);
|
|
||||||
$serialized = serialize($collection->toArray());
|
|
||||||
|
|
||||||
A reconstruction is also necessary when the collection contains objects with
|
|
||||||
infinite recursion of dependencies like in this ``json_serialize()`` example:
|
|
||||||
|
|
||||||
.. code-block:: php
|
|
||||||
|
|
||||||
$foo = new Foo();
|
|
||||||
$bar = new Bar();
|
|
||||||
|
|
||||||
$foo->setBar($bar);
|
|
||||||
$bar->setFoo($foo);
|
|
||||||
|
|
||||||
$collection = new ArrayCollection([$foo]);
|
|
||||||
$json = json_serialize($collection->toArray()); // recursion detected
|
|
||||||
|
|
||||||
Serializer libraries can be used to create the serialization-output to prevent
|
|
||||||
errors.
|
|
11
vendor/doctrine/collections/docs/en/sidebar.rst
vendored
11
vendor/doctrine/collections/docs/en/sidebar.rst
vendored
@ -1,11 +0,0 @@
|
|||||||
:orphan:
|
|
||||||
|
|
||||||
.. toctree::
|
|
||||||
:depth: 3
|
|
||||||
|
|
||||||
index
|
|
||||||
expressions
|
|
||||||
expression-builder
|
|
||||||
derived-collections
|
|
||||||
lazy-collections
|
|
||||||
serialization
|
|
@ -1,414 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections;
|
|
||||||
|
|
||||||
use Closure;
|
|
||||||
use LogicException;
|
|
||||||
use ReturnTypeWillChange;
|
|
||||||
use Traversable;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Lazy collection that is backed by a concrete collection
|
|
||||||
*
|
|
||||||
* @psalm-template TKey of array-key
|
|
||||||
* @psalm-template T
|
|
||||||
* @template-implements Collection<TKey,T>
|
|
||||||
*/
|
|
||||||
abstract class AbstractLazyCollection implements Collection
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* The backed collection to use
|
|
||||||
*
|
|
||||||
* @psalm-var Collection<TKey,T>|null
|
|
||||||
* @var Collection<mixed>|null
|
|
||||||
*/
|
|
||||||
protected Collection|null $collection;
|
|
||||||
|
|
||||||
protected bool $initialized = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function count()
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->count();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function add(mixed $element)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
$this->collection->add($element);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function clear()
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
$this->collection->clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function contains(mixed $element)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->contains($element);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function isEmpty()
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->isEmpty();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function remove(string|int $key)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->remove($key);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function removeElement(mixed $element)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->removeElement($element);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function containsKey(string|int $key)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->containsKey($key);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function get(string|int $key)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->get($key);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getKeys()
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->getKeys();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getValues()
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->getValues();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function set(string|int $key, mixed $value)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
$this->collection->set($key, $value);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function toArray()
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->toArray();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function first()
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->first();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function last()
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->last();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function key()
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->key();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function current()
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->current();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function next()
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->next();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function exists(Closure $p)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->exists($p);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function findFirst(Closure $p)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->findFirst($p);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function filter(Closure $p)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->filter($p);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function forAll(Closure $p)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->forAll($p);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function map(Closure $func)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->map($func);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function reduce(Closure $func, mixed $initial = null)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->reduce($func, $initial);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function partition(Closure $p)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->partition($p);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @template TMaybeContained
|
|
||||||
*/
|
|
||||||
public function indexOf(mixed $element)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->indexOf($element);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function slice(int $offset, int|null $length = null)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->slice($offset, $length);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @return Traversable<int|string, mixed>
|
|
||||||
* @psalm-return Traversable<TKey,T>
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function getIterator()
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->getIterator();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @param TKey $offset
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function offsetExists(mixed $offset)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->offsetExists($offset);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @param TKey $offset
|
|
||||||
*
|
|
||||||
* @return T|null
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function offsetGet(mixed $offset)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
|
|
||||||
return $this->collection->offsetGet($offset);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @param TKey|null $offset
|
|
||||||
* @param T $value
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function offsetSet(mixed $offset, mixed $value)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
$this->collection->offsetSet($offset, $value);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param TKey $offset
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function offsetUnset(mixed $offset)
|
|
||||||
{
|
|
||||||
$this->initialize();
|
|
||||||
$this->collection->offsetUnset($offset);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Is the lazy collection already initialized?
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*
|
|
||||||
* @psalm-assert-if-true Collection<TKey,T> $this->collection
|
|
||||||
*/
|
|
||||||
public function isInitialized()
|
|
||||||
{
|
|
||||||
return $this->initialized;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initialize the collection
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*
|
|
||||||
* @psalm-assert Collection<TKey,T> $this->collection
|
|
||||||
*/
|
|
||||||
protected function initialize()
|
|
||||||
{
|
|
||||||
if ($this->initialized) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->doInitialize();
|
|
||||||
$this->initialized = true;
|
|
||||||
|
|
||||||
if ($this->collection === null) {
|
|
||||||
throw new LogicException('You must initialize the collection property in the doInitialize() method.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Do the initialization logic
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
abstract protected function doInitialize();
|
|
||||||
}
|
|
490
vendor/doctrine/collections/src/ArrayCollection.php
vendored
490
vendor/doctrine/collections/src/ArrayCollection.php
vendored
@ -1,490 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections;
|
|
||||||
|
|
||||||
use ArrayIterator;
|
|
||||||
use Closure;
|
|
||||||
use Doctrine\Common\Collections\Expr\ClosureExpressionVisitor;
|
|
||||||
use ReturnTypeWillChange;
|
|
||||||
use Stringable;
|
|
||||||
use Traversable;
|
|
||||||
|
|
||||||
use function array_filter;
|
|
||||||
use function array_key_exists;
|
|
||||||
use function array_keys;
|
|
||||||
use function array_map;
|
|
||||||
use function array_reduce;
|
|
||||||
use function array_reverse;
|
|
||||||
use function array_search;
|
|
||||||
use function array_slice;
|
|
||||||
use function array_values;
|
|
||||||
use function count;
|
|
||||||
use function current;
|
|
||||||
use function end;
|
|
||||||
use function in_array;
|
|
||||||
use function key;
|
|
||||||
use function next;
|
|
||||||
use function reset;
|
|
||||||
use function spl_object_hash;
|
|
||||||
use function uasort;
|
|
||||||
|
|
||||||
use const ARRAY_FILTER_USE_BOTH;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* An ArrayCollection is a Collection implementation that wraps a regular PHP array.
|
|
||||||
*
|
|
||||||
* Warning: Using (un-)serialize() on a collection is not a supported use-case
|
|
||||||
* and may break when we change the internals in the future. If you need to
|
|
||||||
* serialize a collection use {@link toArray()} and reconstruct the collection
|
|
||||||
* manually.
|
|
||||||
*
|
|
||||||
* @psalm-template TKey of array-key
|
|
||||||
* @psalm-template T
|
|
||||||
* @template-implements Collection<TKey,T>
|
|
||||||
* @template-implements Selectable<TKey,T>
|
|
||||||
* @psalm-consistent-constructor
|
|
||||||
*/
|
|
||||||
class ArrayCollection implements Collection, Selectable, Stringable
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* An array containing the entries of this collection.
|
|
||||||
*
|
|
||||||
* @psalm-var array<TKey,T>
|
|
||||||
* @var mixed[]
|
|
||||||
*/
|
|
||||||
private array $elements = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initializes a new ArrayCollection.
|
|
||||||
*
|
|
||||||
* @psalm-param array<TKey,T> $elements
|
|
||||||
*/
|
|
||||||
public function __construct(array $elements = [])
|
|
||||||
{
|
|
||||||
$this->elements = $elements;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function toArray()
|
|
||||||
{
|
|
||||||
return $this->elements;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function first()
|
|
||||||
{
|
|
||||||
return reset($this->elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a new instance from the specified elements.
|
|
||||||
*
|
|
||||||
* This method is provided for derived classes to specify how a new
|
|
||||||
* instance should be created when constructor semantics have changed.
|
|
||||||
*
|
|
||||||
* @param array $elements Elements.
|
|
||||||
* @psalm-param array<K,V> $elements
|
|
||||||
*
|
|
||||||
* @return static
|
|
||||||
* @psalm-return static<K,V>
|
|
||||||
*
|
|
||||||
* @psalm-template K of array-key
|
|
||||||
* @psalm-template V
|
|
||||||
*/
|
|
||||||
protected function createFrom(array $elements)
|
|
||||||
{
|
|
||||||
return new static($elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function last()
|
|
||||||
{
|
|
||||||
return end($this->elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function key()
|
|
||||||
{
|
|
||||||
return key($this->elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function next()
|
|
||||||
{
|
|
||||||
return next($this->elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function current()
|
|
||||||
{
|
|
||||||
return current($this->elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function remove(string|int $key)
|
|
||||||
{
|
|
||||||
if (! isset($this->elements[$key]) && ! array_key_exists($key, $this->elements)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
$removed = $this->elements[$key];
|
|
||||||
unset($this->elements[$key]);
|
|
||||||
|
|
||||||
return $removed;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function removeElement(mixed $element)
|
|
||||||
{
|
|
||||||
$key = array_search($element, $this->elements, true);
|
|
||||||
|
|
||||||
if ($key === false) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
unset($this->elements[$key]);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Required by interface ArrayAccess.
|
|
||||||
*
|
|
||||||
* @param TKey $offset
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function offsetExists(mixed $offset)
|
|
||||||
{
|
|
||||||
return $this->containsKey($offset);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Required by interface ArrayAccess.
|
|
||||||
*
|
|
||||||
* @param TKey $offset
|
|
||||||
*
|
|
||||||
* @return T|null
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function offsetGet(mixed $offset)
|
|
||||||
{
|
|
||||||
return $this->get($offset);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Required by interface ArrayAccess.
|
|
||||||
*
|
|
||||||
* @param TKey|null $offset
|
|
||||||
* @param T $value
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function offsetSet(mixed $offset, mixed $value)
|
|
||||||
{
|
|
||||||
if ($offset === null) {
|
|
||||||
$this->add($value);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->set($offset, $value);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Required by interface ArrayAccess.
|
|
||||||
*
|
|
||||||
* @param TKey $offset
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function offsetUnset(mixed $offset)
|
|
||||||
{
|
|
||||||
$this->remove($offset);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function containsKey(string|int $key)
|
|
||||||
{
|
|
||||||
return isset($this->elements[$key]) || array_key_exists($key, $this->elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function contains(mixed $element)
|
|
||||||
{
|
|
||||||
return in_array($element, $this->elements, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function exists(Closure $p)
|
|
||||||
{
|
|
||||||
foreach ($this->elements as $key => $element) {
|
|
||||||
if ($p($key, $element)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @psalm-param TMaybeContained $element
|
|
||||||
*
|
|
||||||
* @return int|string|false
|
|
||||||
* @psalm-return (TMaybeContained is T ? TKey|false : false)
|
|
||||||
*
|
|
||||||
* @template TMaybeContained
|
|
||||||
*/
|
|
||||||
public function indexOf($element)
|
|
||||||
{
|
|
||||||
return array_search($element, $this->elements, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function get(string|int $key)
|
|
||||||
{
|
|
||||||
return $this->elements[$key] ?? null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getKeys()
|
|
||||||
{
|
|
||||||
return array_keys($this->elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getValues()
|
|
||||||
{
|
|
||||||
return array_values($this->elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @return int<0, max>
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function count()
|
|
||||||
{
|
|
||||||
return count($this->elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function set(string|int $key, mixed $value)
|
|
||||||
{
|
|
||||||
$this->elements[$key] = $value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @psalm-suppress InvalidPropertyAssignmentValue
|
|
||||||
*
|
|
||||||
* This breaks assumptions about the template type, but it would
|
|
||||||
* be a backwards-incompatible change to remove this method
|
|
||||||
*/
|
|
||||||
public function add(mixed $element)
|
|
||||||
{
|
|
||||||
$this->elements[] = $element;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function isEmpty()
|
|
||||||
{
|
|
||||||
return empty($this->elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @return Traversable<int|string, mixed>
|
|
||||||
* @psalm-return Traversable<TKey, T>
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function getIterator()
|
|
||||||
{
|
|
||||||
return new ArrayIterator($this->elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @psalm-param Closure(T):U $func
|
|
||||||
*
|
|
||||||
* @return static
|
|
||||||
* @psalm-return static<TKey, U>
|
|
||||||
*
|
|
||||||
* @psalm-template U
|
|
||||||
*/
|
|
||||||
public function map(Closure $func)
|
|
||||||
{
|
|
||||||
return $this->createFrom(array_map($func, $this->elements));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function reduce(Closure $func, $initial = null)
|
|
||||||
{
|
|
||||||
return array_reduce($this->elements, $func, $initial);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @psalm-param Closure(T, TKey):bool $p
|
|
||||||
*
|
|
||||||
* @return static
|
|
||||||
* @psalm-return static<TKey,T>
|
|
||||||
*/
|
|
||||||
public function filter(Closure $p)
|
|
||||||
{
|
|
||||||
return $this->createFrom(array_filter($this->elements, $p, ARRAY_FILTER_USE_BOTH));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function findFirst(Closure $p)
|
|
||||||
{
|
|
||||||
foreach ($this->elements as $key => $element) {
|
|
||||||
if ($p($key, $element)) {
|
|
||||||
return $element;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function forAll(Closure $p)
|
|
||||||
{
|
|
||||||
foreach ($this->elements as $key => $element) {
|
|
||||||
if (! $p($key, $element)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function partition(Closure $p)
|
|
||||||
{
|
|
||||||
$matches = $noMatches = [];
|
|
||||||
|
|
||||||
foreach ($this->elements as $key => $element) {
|
|
||||||
if ($p($key, $element)) {
|
|
||||||
$matches[$key] = $element;
|
|
||||||
} else {
|
|
||||||
$noMatches[$key] = $element;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return [$this->createFrom($matches), $this->createFrom($noMatches)];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a string representation of this object.
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
#[ReturnTypeWillChange]
|
|
||||||
public function __toString()
|
|
||||||
{
|
|
||||||
return self::class . '@' . spl_object_hash($this);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function clear()
|
|
||||||
{
|
|
||||||
$this->elements = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function slice(int $offset, int|null $length = null)
|
|
||||||
{
|
|
||||||
return array_slice($this->elements, $offset, $length, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @psalm-return Collection<TKey, T>&Selectable<TKey,T> */
|
|
||||||
public function matching(Criteria $criteria)
|
|
||||||
{
|
|
||||||
$expr = $criteria->getWhereExpression();
|
|
||||||
$filtered = $this->elements;
|
|
||||||
|
|
||||||
if ($expr) {
|
|
||||||
$visitor = new ClosureExpressionVisitor();
|
|
||||||
$filter = $visitor->dispatch($expr);
|
|
||||||
$filtered = array_filter($filtered, $filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
$orderings = $criteria->orderings();
|
|
||||||
|
|
||||||
if ($orderings) {
|
|
||||||
$next = null;
|
|
||||||
foreach (array_reverse($orderings) as $field => $ordering) {
|
|
||||||
$next = ClosureExpressionVisitor::sortByField($field, $ordering === Order::Descending ? -1 : 1, $next);
|
|
||||||
}
|
|
||||||
|
|
||||||
uasort($filtered, $next);
|
|
||||||
}
|
|
||||||
|
|
||||||
$offset = $criteria->getFirstResult();
|
|
||||||
$length = $criteria->getMaxResults();
|
|
||||||
|
|
||||||
if ($offset !== null && $offset > 0 || $length !== null && $length > 0) {
|
|
||||||
$filtered = array_slice($filtered, (int) $offset, $length, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->createFrom($filtered);
|
|
||||||
}
|
|
||||||
}
|
|
117
vendor/doctrine/collections/src/Collection.php
vendored
117
vendor/doctrine/collections/src/Collection.php
vendored
@ -1,117 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections;
|
|
||||||
|
|
||||||
use ArrayAccess;
|
|
||||||
use Closure;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The missing (SPL) Collection/Array/OrderedMap interface.
|
|
||||||
*
|
|
||||||
* A Collection resembles the nature of a regular PHP array. That is,
|
|
||||||
* it is essentially an <b>ordered map</b> that can also be used
|
|
||||||
* like a list.
|
|
||||||
*
|
|
||||||
* A Collection has an internal iterator just like a PHP array. In addition,
|
|
||||||
* a Collection can be iterated with external iterators, which is preferable.
|
|
||||||
* To use an external iterator simply use the foreach language construct to
|
|
||||||
* iterate over the collection (which calls {@link getIterator()} internally) or
|
|
||||||
* explicitly retrieve an iterator though {@link getIterator()} which can then be
|
|
||||||
* used to iterate over the collection.
|
|
||||||
* You can not rely on the internal iterator of the collection being at a certain
|
|
||||||
* position unless you explicitly positioned it before. Prefer iteration with
|
|
||||||
* external iterators.
|
|
||||||
*
|
|
||||||
* @psalm-template TKey of array-key
|
|
||||||
* @psalm-template T
|
|
||||||
* @template-extends ReadableCollection<TKey, T>
|
|
||||||
* @template-extends ArrayAccess<TKey, T>
|
|
||||||
*/
|
|
||||||
interface Collection extends ReadableCollection, ArrayAccess
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Adds an element at the end of the collection.
|
|
||||||
*
|
|
||||||
* @param mixed $element The element to add.
|
|
||||||
* @psalm-param T $element
|
|
||||||
*
|
|
||||||
* @return void we will require a native return type declaration in 3.0
|
|
||||||
*/
|
|
||||||
public function add(mixed $element);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Clears the collection, removing all elements.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function clear();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Removes the element at the specified index from the collection.
|
|
||||||
*
|
|
||||||
* @param string|int $key The key/index of the element to remove.
|
|
||||||
* @psalm-param TKey $key
|
|
||||||
*
|
|
||||||
* @return mixed The removed element or NULL, if the collection did not contain the element.
|
|
||||||
* @psalm-return T|null
|
|
||||||
*/
|
|
||||||
public function remove(string|int $key);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Removes the specified element from the collection, if it is found.
|
|
||||||
*
|
|
||||||
* @param mixed $element The element to remove.
|
|
||||||
* @psalm-param T $element
|
|
||||||
*
|
|
||||||
* @return bool TRUE if this collection contained the specified element, FALSE otherwise.
|
|
||||||
*/
|
|
||||||
public function removeElement(mixed $element);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets an element in the collection at the specified key/index.
|
|
||||||
*
|
|
||||||
* @param string|int $key The key/index of the element to set.
|
|
||||||
* @param mixed $value The element to set.
|
|
||||||
* @psalm-param TKey $key
|
|
||||||
* @psalm-param T $value
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function set(string|int $key, mixed $value);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @psalm-param Closure(T):U $func
|
|
||||||
*
|
|
||||||
* @return Collection<mixed>
|
|
||||||
* @psalm-return Collection<TKey, U>
|
|
||||||
*
|
|
||||||
* @psalm-template U
|
|
||||||
*/
|
|
||||||
public function map(Closure $func);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @psalm-param Closure(T, TKey):bool $p
|
|
||||||
*
|
|
||||||
* @return Collection<mixed> A collection with the results of the filter operation.
|
|
||||||
* @psalm-return Collection<TKey, T>
|
|
||||||
*/
|
|
||||||
public function filter(Closure $p);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @psalm-param Closure(TKey, T):bool $p
|
|
||||||
*
|
|
||||||
* @return Collection<mixed>[] An array with two elements. The first element contains the collection
|
|
||||||
* of elements where the predicate returned TRUE, the second element
|
|
||||||
* contains the collection of elements where the predicate returned FALSE.
|
|
||||||
* @psalm-return array{0: Collection<TKey, T>, 1: Collection<TKey, T>}
|
|
||||||
*/
|
|
||||||
public function partition(Closure $p);
|
|
||||||
}
|
|
285
vendor/doctrine/collections/src/Criteria.php
vendored
285
vendor/doctrine/collections/src/Criteria.php
vendored
@ -1,285 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections;
|
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Expr\CompositeExpression;
|
|
||||||
use Doctrine\Common\Collections\Expr\Expression;
|
|
||||||
use Doctrine\Deprecations\Deprecation;
|
|
||||||
|
|
||||||
use function array_map;
|
|
||||||
use function func_num_args;
|
|
||||||
use function strtoupper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Criteria for filtering Selectable collections.
|
|
||||||
*
|
|
||||||
* @psalm-consistent-constructor
|
|
||||||
*/
|
|
||||||
class Criteria
|
|
||||||
{
|
|
||||||
/** @deprecated use Order::Ascending instead */
|
|
||||||
final public const ASC = 'ASC';
|
|
||||||
|
|
||||||
/** @deprecated use Order::Descending instead */
|
|
||||||
final public const DESC = 'DESC';
|
|
||||||
|
|
||||||
private static ExpressionBuilder|null $expressionBuilder = null;
|
|
||||||
|
|
||||||
/** @var array<string, Order> */
|
|
||||||
private array $orderings = [];
|
|
||||||
|
|
||||||
private int|null $firstResult = null;
|
|
||||||
private int|null $maxResults = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates an instance of the class.
|
|
||||||
*
|
|
||||||
* @return static
|
|
||||||
*/
|
|
||||||
public static function create()
|
|
||||||
{
|
|
||||||
return new static();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the expression builder.
|
|
||||||
*
|
|
||||||
* @return ExpressionBuilder
|
|
||||||
*/
|
|
||||||
public static function expr()
|
|
||||||
{
|
|
||||||
if (self::$expressionBuilder === null) {
|
|
||||||
self::$expressionBuilder = new ExpressionBuilder();
|
|
||||||
}
|
|
||||||
|
|
||||||
return self::$expressionBuilder;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Construct a new Criteria.
|
|
||||||
*
|
|
||||||
* @param array<string, string|Order>|null $orderings
|
|
||||||
*/
|
|
||||||
public function __construct(
|
|
||||||
private Expression|null $expression = null,
|
|
||||||
array|null $orderings = null,
|
|
||||||
int|null $firstResult = null,
|
|
||||||
int|null $maxResults = null,
|
|
||||||
) {
|
|
||||||
$this->expression = $expression;
|
|
||||||
|
|
||||||
if ($firstResult === null && func_num_args() > 2) {
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/collections',
|
|
||||||
'https://github.com/doctrine/collections/pull/311',
|
|
||||||
'Passing null as $firstResult to the constructor of %s is deprecated. Pass 0 instead or omit the argument.',
|
|
||||||
self::class,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->setFirstResult($firstResult);
|
|
||||||
$this->setMaxResults($maxResults);
|
|
||||||
|
|
||||||
if ($orderings === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->orderBy($orderings);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the where expression to evaluate when this Criteria is searched for.
|
|
||||||
*
|
|
||||||
* @return $this
|
|
||||||
*/
|
|
||||||
public function where(Expression $expression)
|
|
||||||
{
|
|
||||||
$this->expression = $expression;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Appends the where expression to evaluate when this Criteria is searched for
|
|
||||||
* using an AND with previous expression.
|
|
||||||
*
|
|
||||||
* @return $this
|
|
||||||
*/
|
|
||||||
public function andWhere(Expression $expression)
|
|
||||||
{
|
|
||||||
if ($this->expression === null) {
|
|
||||||
return $this->where($expression);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->expression = new CompositeExpression(
|
|
||||||
CompositeExpression::TYPE_AND,
|
|
||||||
[$this->expression, $expression],
|
|
||||||
);
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Appends the where expression to evaluate when this Criteria is searched for
|
|
||||||
* using an OR with previous expression.
|
|
||||||
*
|
|
||||||
* @return $this
|
|
||||||
*/
|
|
||||||
public function orWhere(Expression $expression)
|
|
||||||
{
|
|
||||||
if ($this->expression === null) {
|
|
||||||
return $this->where($expression);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->expression = new CompositeExpression(
|
|
||||||
CompositeExpression::TYPE_OR,
|
|
||||||
[$this->expression, $expression],
|
|
||||||
);
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the expression attached to this Criteria.
|
|
||||||
*
|
|
||||||
* @return Expression|null
|
|
||||||
*/
|
|
||||||
public function getWhereExpression()
|
|
||||||
{
|
|
||||||
return $this->expression;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the current orderings of this Criteria.
|
|
||||||
*
|
|
||||||
* @deprecated use orderings() instead
|
|
||||||
*
|
|
||||||
* @return array<string, string>
|
|
||||||
*/
|
|
||||||
public function getOrderings()
|
|
||||||
{
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/collections',
|
|
||||||
'https://github.com/doctrine/collections/pull/389',
|
|
||||||
'Calling %s() is deprecated. Use %s::orderings() instead.',
|
|
||||||
__METHOD__,
|
|
||||||
self::class,
|
|
||||||
);
|
|
||||||
|
|
||||||
return array_map(
|
|
||||||
static fn (Order $ordering): string => $ordering->value,
|
|
||||||
$this->orderings,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the current orderings of this Criteria.
|
|
||||||
*
|
|
||||||
* @return array<string, Order>
|
|
||||||
*/
|
|
||||||
public function orderings(): array
|
|
||||||
{
|
|
||||||
return $this->orderings;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the ordering of the result of this Criteria.
|
|
||||||
*
|
|
||||||
* Keys are field and values are the order, being a valid Order enum case.
|
|
||||||
*
|
|
||||||
* @see Order::Ascending
|
|
||||||
* @see Order::Descending
|
|
||||||
*
|
|
||||||
* @param array<string, string|Order> $orderings
|
|
||||||
*
|
|
||||||
* @return $this
|
|
||||||
*/
|
|
||||||
public function orderBy(array $orderings)
|
|
||||||
{
|
|
||||||
$method = __METHOD__;
|
|
||||||
$this->orderings = array_map(
|
|
||||||
static function (string|Order $ordering) use ($method): Order {
|
|
||||||
if ($ordering instanceof Order) {
|
|
||||||
return $ordering;
|
|
||||||
}
|
|
||||||
|
|
||||||
static $triggered = false;
|
|
||||||
|
|
||||||
if (! $triggered) {
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/collections',
|
|
||||||
'https://github.com/doctrine/collections/pull/389',
|
|
||||||
'Passing non-Order enum values to %s() is deprecated. Pass Order enum values instead.',
|
|
||||||
$method,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
$triggered = true;
|
|
||||||
|
|
||||||
return strtoupper($ordering) === Order::Ascending->value ? Order::Ascending : Order::Descending;
|
|
||||||
},
|
|
||||||
$orderings,
|
|
||||||
);
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the current first result option of this Criteria.
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getFirstResult()
|
|
||||||
{
|
|
||||||
return $this->firstResult;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the number of first result that this Criteria should return.
|
|
||||||
*
|
|
||||||
* @param int|null $firstResult The value to set.
|
|
||||||
*
|
|
||||||
* @return $this
|
|
||||||
*/
|
|
||||||
public function setFirstResult(int|null $firstResult)
|
|
||||||
{
|
|
||||||
if ($firstResult === null) {
|
|
||||||
Deprecation::triggerIfCalledFromOutside(
|
|
||||||
'doctrine/collections',
|
|
||||||
'https://github.com/doctrine/collections/pull/311',
|
|
||||||
'Passing null to %s() is deprecated, pass 0 instead.',
|
|
||||||
__METHOD__,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->firstResult = $firstResult;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets maxResults.
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getMaxResults()
|
|
||||||
{
|
|
||||||
return $this->maxResults;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets maxResults.
|
|
||||||
*
|
|
||||||
* @param int|null $maxResults The value to set.
|
|
||||||
*
|
|
||||||
* @return $this
|
|
||||||
*/
|
|
||||||
public function setMaxResults(int|null $maxResults)
|
|
||||||
{
|
|
||||||
$this->maxResults = $maxResults;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,222 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections\Expr;
|
|
||||||
|
|
||||||
use ArrayAccess;
|
|
||||||
use Closure;
|
|
||||||
use RuntimeException;
|
|
||||||
|
|
||||||
use function explode;
|
|
||||||
use function in_array;
|
|
||||||
use function is_array;
|
|
||||||
use function is_scalar;
|
|
||||||
use function iterator_to_array;
|
|
||||||
use function method_exists;
|
|
||||||
use function preg_match;
|
|
||||||
use function preg_replace_callback;
|
|
||||||
use function str_contains;
|
|
||||||
use function str_ends_with;
|
|
||||||
use function str_starts_with;
|
|
||||||
use function strtoupper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Walks an expression graph and turns it into a PHP closure.
|
|
||||||
*
|
|
||||||
* This closure can be used with {@Collection#filter()} and is used internally
|
|
||||||
* by {@ArrayCollection#select()}.
|
|
||||||
*/
|
|
||||||
class ClosureExpressionVisitor extends ExpressionVisitor
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Accesses the field of a given object. This field has to be public
|
|
||||||
* directly or indirectly (through an accessor get*, is*, or a magic
|
|
||||||
* method, __get, __call).
|
|
||||||
*
|
|
||||||
* @param object|mixed[] $object
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public static function getObjectFieldValue(object|array $object, string $field)
|
|
||||||
{
|
|
||||||
if (str_contains($field, '.')) {
|
|
||||||
[$field, $subField] = explode('.', $field, 2);
|
|
||||||
$object = self::getObjectFieldValue($object, $field);
|
|
||||||
|
|
||||||
return self::getObjectFieldValue($object, $subField);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_array($object)) {
|
|
||||||
return $object[$field];
|
|
||||||
}
|
|
||||||
|
|
||||||
$accessors = ['get', 'is', ''];
|
|
||||||
|
|
||||||
foreach ($accessors as $accessor) {
|
|
||||||
$accessor .= $field;
|
|
||||||
|
|
||||||
if (method_exists($object, $accessor)) {
|
|
||||||
return $object->$accessor();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (preg_match('/^is[A-Z]+/', $field) === 1 && method_exists($object, $field)) {
|
|
||||||
return $object->$field();
|
|
||||||
}
|
|
||||||
|
|
||||||
// __call should be triggered for get.
|
|
||||||
$accessor = $accessors[0] . $field;
|
|
||||||
|
|
||||||
if (method_exists($object, '__call')) {
|
|
||||||
return $object->$accessor();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($object instanceof ArrayAccess) {
|
|
||||||
return $object[$field];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($object->$field)) {
|
|
||||||
return $object->$field;
|
|
||||||
}
|
|
||||||
|
|
||||||
// camelcase field name to support different variable naming conventions
|
|
||||||
$ccField = preg_replace_callback('/_(.?)/', static fn ($matches) => strtoupper((string) $matches[1]), $field);
|
|
||||||
|
|
||||||
foreach ($accessors as $accessor) {
|
|
||||||
$accessor .= $ccField;
|
|
||||||
|
|
||||||
if (method_exists($object, $accessor)) {
|
|
||||||
return $object->$accessor();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $object->$field;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Helper for sorting arrays of objects based on multiple fields + orientations.
|
|
||||||
*
|
|
||||||
* @return Closure
|
|
||||||
*/
|
|
||||||
public static function sortByField(string $name, int $orientation = 1, Closure|null $next = null)
|
|
||||||
{
|
|
||||||
if (! $next) {
|
|
||||||
$next = static fn (): int => 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return static function ($a, $b) use ($name, $next, $orientation): int {
|
|
||||||
$aValue = ClosureExpressionVisitor::getObjectFieldValue($a, $name);
|
|
||||||
|
|
||||||
$bValue = ClosureExpressionVisitor::getObjectFieldValue($b, $name);
|
|
||||||
|
|
||||||
if ($aValue === $bValue) {
|
|
||||||
return $next($a, $b);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ($aValue > $bValue ? 1 : -1) * $orientation;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function walkComparison(Comparison $comparison)
|
|
||||||
{
|
|
||||||
$field = $comparison->getField();
|
|
||||||
$value = $comparison->getValue()->getValue();
|
|
||||||
|
|
||||||
return match ($comparison->getOperator()) {
|
|
||||||
Comparison::EQ => static fn ($object): bool => self::getObjectFieldValue($object, $field) === $value,
|
|
||||||
Comparison::NEQ => static fn ($object): bool => self::getObjectFieldValue($object, $field) !== $value,
|
|
||||||
Comparison::LT => static fn ($object): bool => self::getObjectFieldValue($object, $field) < $value,
|
|
||||||
Comparison::LTE => static fn ($object): bool => self::getObjectFieldValue($object, $field) <= $value,
|
|
||||||
Comparison::GT => static fn ($object): bool => self::getObjectFieldValue($object, $field) > $value,
|
|
||||||
Comparison::GTE => static fn ($object): bool => self::getObjectFieldValue($object, $field) >= $value,
|
|
||||||
Comparison::IN => static function ($object) use ($field, $value): bool {
|
|
||||||
$fieldValue = ClosureExpressionVisitor::getObjectFieldValue($object, $field);
|
|
||||||
|
|
||||||
return in_array($fieldValue, $value, is_scalar($fieldValue));
|
|
||||||
},
|
|
||||||
Comparison::NIN => static function ($object) use ($field, $value): bool {
|
|
||||||
$fieldValue = ClosureExpressionVisitor::getObjectFieldValue($object, $field);
|
|
||||||
|
|
||||||
return ! in_array($fieldValue, $value, is_scalar($fieldValue));
|
|
||||||
},
|
|
||||||
Comparison::CONTAINS => static fn ($object): bool => str_contains((string) self::getObjectFieldValue($object, $field), (string) $value),
|
|
||||||
Comparison::MEMBER_OF => static function ($object) use ($field, $value): bool {
|
|
||||||
$fieldValues = ClosureExpressionVisitor::getObjectFieldValue($object, $field);
|
|
||||||
|
|
||||||
if (! is_array($fieldValues)) {
|
|
||||||
$fieldValues = iterator_to_array($fieldValues);
|
|
||||||
}
|
|
||||||
|
|
||||||
return in_array($value, $fieldValues, true);
|
|
||||||
},
|
|
||||||
Comparison::STARTS_WITH => static fn ($object): bool => str_starts_with((string) self::getObjectFieldValue($object, $field), (string) $value),
|
|
||||||
Comparison::ENDS_WITH => static fn ($object): bool => str_ends_with((string) self::getObjectFieldValue($object, $field), (string) $value),
|
|
||||||
default => throw new RuntimeException('Unknown comparison operator: ' . $comparison->getOperator()),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function walkValue(Value $value)
|
|
||||||
{
|
|
||||||
return $value->getValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function walkCompositeExpression(CompositeExpression $expr)
|
|
||||||
{
|
|
||||||
$expressionList = [];
|
|
||||||
|
|
||||||
foreach ($expr->getExpressionList() as $child) {
|
|
||||||
$expressionList[] = $this->dispatch($child);
|
|
||||||
}
|
|
||||||
|
|
||||||
return match ($expr->getType()) {
|
|
||||||
CompositeExpression::TYPE_AND => $this->andExpressions($expressionList),
|
|
||||||
CompositeExpression::TYPE_OR => $this->orExpressions($expressionList),
|
|
||||||
CompositeExpression::TYPE_NOT => $this->notExpression($expressionList),
|
|
||||||
default => throw new RuntimeException('Unknown composite ' . $expr->getType()),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @param callable[] $expressions */
|
|
||||||
private function andExpressions(array $expressions): Closure
|
|
||||||
{
|
|
||||||
return static function ($object) use ($expressions): bool {
|
|
||||||
foreach ($expressions as $expression) {
|
|
||||||
if (! $expression($object)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @param callable[] $expressions */
|
|
||||||
private function orExpressions(array $expressions): Closure
|
|
||||||
{
|
|
||||||
return static function ($object) use ($expressions): bool {
|
|
||||||
foreach ($expressions as $expression) {
|
|
||||||
if ($expression($object)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @param callable[] $expressions */
|
|
||||||
private function notExpression(array $expressions): Closure
|
|
||||||
{
|
|
||||||
return static fn ($object) => ! $expressions[0]($object);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,62 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections\Expr;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Comparison of a field with a value by the given operator.
|
|
||||||
*/
|
|
||||||
class Comparison implements Expression
|
|
||||||
{
|
|
||||||
final public const EQ = '=';
|
|
||||||
final public const NEQ = '<>';
|
|
||||||
final public const LT = '<';
|
|
||||||
final public const LTE = '<=';
|
|
||||||
final public const GT = '>';
|
|
||||||
final public const GTE = '>=';
|
|
||||||
final public const IS = '='; // no difference with EQ
|
|
||||||
final public const IN = 'IN';
|
|
||||||
final public const NIN = 'NIN';
|
|
||||||
final public const CONTAINS = 'CONTAINS';
|
|
||||||
final public const MEMBER_OF = 'MEMBER_OF';
|
|
||||||
final public const STARTS_WITH = 'STARTS_WITH';
|
|
||||||
final public const ENDS_WITH = 'ENDS_WITH';
|
|
||||||
|
|
||||||
private readonly Value $value;
|
|
||||||
|
|
||||||
public function __construct(private readonly string $field, private readonly string $op, mixed $value)
|
|
||||||
{
|
|
||||||
if (! ($value instanceof Value)) {
|
|
||||||
$value = new Value($value);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->value = $value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return string */
|
|
||||||
public function getField()
|
|
||||||
{
|
|
||||||
return $this->field;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Value */
|
|
||||||
public function getValue()
|
|
||||||
{
|
|
||||||
return $this->value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return string */
|
|
||||||
public function getOperator()
|
|
||||||
{
|
|
||||||
return $this->op;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function visit(ExpressionVisitor $visitor)
|
|
||||||
{
|
|
||||||
return $visitor->walkComparison($this);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,70 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections\Expr;
|
|
||||||
|
|
||||||
use RuntimeException;
|
|
||||||
|
|
||||||
use function count;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Expression of Expressions combined by AND or OR operation.
|
|
||||||
*/
|
|
||||||
class CompositeExpression implements Expression
|
|
||||||
{
|
|
||||||
final public const TYPE_AND = 'AND';
|
|
||||||
final public const TYPE_OR = 'OR';
|
|
||||||
final public const TYPE_NOT = 'NOT';
|
|
||||||
|
|
||||||
/** @var list<Expression> */
|
|
||||||
private array $expressions = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Expression[] $expressions
|
|
||||||
*
|
|
||||||
* @throws RuntimeException
|
|
||||||
*/
|
|
||||||
public function __construct(private readonly string $type, array $expressions)
|
|
||||||
{
|
|
||||||
foreach ($expressions as $expr) {
|
|
||||||
if ($expr instanceof Value) {
|
|
||||||
throw new RuntimeException('Values are not supported expressions as children of and/or expressions.');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! ($expr instanceof Expression)) {
|
|
||||||
throw new RuntimeException('No expression given to CompositeExpression.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->expressions[] = $expr;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($type === self::TYPE_NOT && count($this->expressions) !== 1) {
|
|
||||||
throw new RuntimeException('Not expression only allows one expression as child.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the list of expressions nested in this composite.
|
|
||||||
*
|
|
||||||
* @return list<Expression>
|
|
||||||
*/
|
|
||||||
public function getExpressionList()
|
|
||||||
{
|
|
||||||
return $this->expressions;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return string */
|
|
||||||
public function getType()
|
|
||||||
{
|
|
||||||
return $this->type;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function visit(ExpressionVisitor $visitor)
|
|
||||||
{
|
|
||||||
return $visitor->walkCompositeExpression($this);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections\Expr;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Expression for the {@link Selectable} interface.
|
|
||||||
*/
|
|
||||||
interface Expression
|
|
||||||
{
|
|
||||||
/** @return mixed */
|
|
||||||
public function visit(ExpressionVisitor $visitor);
|
|
||||||
}
|
|
@ -1,52 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections\Expr;
|
|
||||||
|
|
||||||
use RuntimeException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* An Expression visitor walks a graph of expressions and turns them into a
|
|
||||||
* query for the underlying implementation.
|
|
||||||
*/
|
|
||||||
abstract class ExpressionVisitor
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Converts a comparison expression into the target query language output.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
abstract public function walkComparison(Comparison $comparison);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Converts a value expression into the target query language part.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
abstract public function walkValue(Value $value);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Converts a composite expression into the target query language output.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
abstract public function walkCompositeExpression(CompositeExpression $expr);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dispatches walking an expression to the appropriate handler.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*
|
|
||||||
* @throws RuntimeException
|
|
||||||
*/
|
|
||||||
public function dispatch(Expression $expr)
|
|
||||||
{
|
|
||||||
return match (true) {
|
|
||||||
$expr instanceof Comparison => $this->walkComparison($expr),
|
|
||||||
$expr instanceof Value => $this->walkValue($expr),
|
|
||||||
$expr instanceof CompositeExpression => $this->walkCompositeExpression($expr),
|
|
||||||
default => throw new RuntimeException('Unknown Expression ' . $expr::class),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
26
vendor/doctrine/collections/src/Expr/Value.php
vendored
26
vendor/doctrine/collections/src/Expr/Value.php
vendored
@ -1,26 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections\Expr;
|
|
||||||
|
|
||||||
class Value implements Expression
|
|
||||||
{
|
|
||||||
public function __construct(private readonly mixed $value)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return mixed */
|
|
||||||
public function getValue()
|
|
||||||
{
|
|
||||||
return $this->value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function visit(ExpressionVisitor $visitor)
|
|
||||||
{
|
|
||||||
return $visitor->walkValue($this);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,123 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections;
|
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Expr\Comparison;
|
|
||||||
use Doctrine\Common\Collections\Expr\CompositeExpression;
|
|
||||||
use Doctrine\Common\Collections\Expr\Expression;
|
|
||||||
use Doctrine\Common\Collections\Expr\Value;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Builder for Expressions in the {@link Selectable} interface.
|
|
||||||
*
|
|
||||||
* Important Notice for interoperable code: You have to use scalar
|
|
||||||
* values only for comparisons, otherwise the behavior of the comparison
|
|
||||||
* may be different between implementations (Array vs ORM vs ODM).
|
|
||||||
*/
|
|
||||||
class ExpressionBuilder
|
|
||||||
{
|
|
||||||
/** @return CompositeExpression */
|
|
||||||
public function andX(Expression ...$expressions)
|
|
||||||
{
|
|
||||||
return new CompositeExpression(CompositeExpression::TYPE_AND, $expressions);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return CompositeExpression */
|
|
||||||
public function orX(Expression ...$expressions)
|
|
||||||
{
|
|
||||||
return new CompositeExpression(CompositeExpression::TYPE_OR, $expressions);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function not(Expression $expression): CompositeExpression
|
|
||||||
{
|
|
||||||
return new CompositeExpression(CompositeExpression::TYPE_NOT, [$expression]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Comparison */
|
|
||||||
public function eq(string $field, mixed $value)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::EQ, new Value($value));
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Comparison */
|
|
||||||
public function gt(string $field, mixed $value)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::GT, new Value($value));
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Comparison */
|
|
||||||
public function lt(string $field, mixed $value)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::LT, new Value($value));
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Comparison */
|
|
||||||
public function gte(string $field, mixed $value)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::GTE, new Value($value));
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Comparison */
|
|
||||||
public function lte(string $field, mixed $value)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::LTE, new Value($value));
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Comparison */
|
|
||||||
public function neq(string $field, mixed $value)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::NEQ, new Value($value));
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Comparison */
|
|
||||||
public function isNull(string $field)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::EQ, new Value(null));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed[] $values
|
|
||||||
*
|
|
||||||
* @return Comparison
|
|
||||||
*/
|
|
||||||
public function in(string $field, array $values)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::IN, new Value($values));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed[] $values
|
|
||||||
*
|
|
||||||
* @return Comparison
|
|
||||||
*/
|
|
||||||
public function notIn(string $field, array $values)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::NIN, new Value($values));
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Comparison */
|
|
||||||
public function contains(string $field, mixed $value)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::CONTAINS, new Value($value));
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Comparison */
|
|
||||||
public function memberOf(string $field, mixed $value)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::MEMBER_OF, new Value($value));
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Comparison */
|
|
||||||
public function startsWith(string $field, mixed $value)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::STARTS_WITH, new Value($value));
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Comparison */
|
|
||||||
public function endsWith(string $field, mixed $value)
|
|
||||||
{
|
|
||||||
return new Comparison($field, Comparison::ENDS_WITH, new Value($value));
|
|
||||||
}
|
|
||||||
}
|
|
11
vendor/doctrine/collections/src/Order.php
vendored
11
vendor/doctrine/collections/src/Order.php
vendored
@ -1,11 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections;
|
|
||||||
|
|
||||||
enum Order: string
|
|
||||||
{
|
|
||||||
case Ascending = 'ASC';
|
|
||||||
case Descending = 'DESC';
|
|
||||||
}
|
|
@ -1,242 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections;
|
|
||||||
|
|
||||||
use Closure;
|
|
||||||
use Countable;
|
|
||||||
use IteratorAggregate;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @psalm-template TKey of array-key
|
|
||||||
* @template-covariant T
|
|
||||||
* @template-extends IteratorAggregate<TKey, T>
|
|
||||||
*/
|
|
||||||
interface ReadableCollection extends Countable, IteratorAggregate
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Checks whether an element is contained in the collection.
|
|
||||||
* This is an O(n) operation, where n is the size of the collection.
|
|
||||||
*
|
|
||||||
* @param mixed $element The element to search for.
|
|
||||||
* @psalm-param TMaybeContained $element
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the collection contains the element, FALSE otherwise.
|
|
||||||
* @psalm-return (TMaybeContained is T ? bool : false)
|
|
||||||
*
|
|
||||||
* @template TMaybeContained
|
|
||||||
*/
|
|
||||||
public function contains(mixed $element);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks whether the collection is empty (contains no elements).
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the collection is empty, FALSE otherwise.
|
|
||||||
*/
|
|
||||||
public function isEmpty();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks whether the collection contains an element with the specified key/index.
|
|
||||||
*
|
|
||||||
* @param string|int $key The key/index to check for.
|
|
||||||
* @psalm-param TKey $key
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the collection contains an element with the specified key/index,
|
|
||||||
* FALSE otherwise.
|
|
||||||
*/
|
|
||||||
public function containsKey(string|int $key);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the element at the specified key/index.
|
|
||||||
*
|
|
||||||
* @param string|int $key The key/index of the element to retrieve.
|
|
||||||
* @psalm-param TKey $key
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
* @psalm-return T|null
|
|
||||||
*/
|
|
||||||
public function get(string|int $key);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets all keys/indices of the collection.
|
|
||||||
*
|
|
||||||
* @return int[]|string[] The keys/indices of the collection, in the order of the corresponding
|
|
||||||
* elements in the collection.
|
|
||||||
* @psalm-return list<TKey>
|
|
||||||
*/
|
|
||||||
public function getKeys();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets all values of the collection.
|
|
||||||
*
|
|
||||||
* @return mixed[] The values of all elements in the collection, in the
|
|
||||||
* order they appear in the collection.
|
|
||||||
* @psalm-return list<T>
|
|
||||||
*/
|
|
||||||
public function getValues();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets a native PHP array representation of the collection.
|
|
||||||
*
|
|
||||||
* @return mixed[]
|
|
||||||
* @psalm-return array<TKey,T>
|
|
||||||
*/
|
|
||||||
public function toArray();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the internal iterator to the first element in the collection and returns this element.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
* @psalm-return T|false
|
|
||||||
*/
|
|
||||||
public function first();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the internal iterator to the last element in the collection and returns this element.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
* @psalm-return T|false
|
|
||||||
*/
|
|
||||||
public function last();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the key/index of the element at the current iterator position.
|
|
||||||
*
|
|
||||||
* @return int|string|null
|
|
||||||
* @psalm-return TKey|null
|
|
||||||
*/
|
|
||||||
public function key();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the element of the collection at the current iterator position.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
* @psalm-return T|false
|
|
||||||
*/
|
|
||||||
public function current();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Moves the internal iterator position to the next element and returns this element.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
* @psalm-return T|false
|
|
||||||
*/
|
|
||||||
public function next();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Extracts a slice of $length elements starting at position $offset from the Collection.
|
|
||||||
*
|
|
||||||
* If $length is null it returns all elements from $offset to the end of the Collection.
|
|
||||||
* Keys have to be preserved by this method. Calling this method will only return the
|
|
||||||
* selected slice and NOT change the elements contained in the collection slice is called on.
|
|
||||||
*
|
|
||||||
* @param int $offset The offset to start from.
|
|
||||||
* @param int|null $length The maximum number of elements to return, or null for no limit.
|
|
||||||
*
|
|
||||||
* @return mixed[]
|
|
||||||
* @psalm-return array<TKey,T>
|
|
||||||
*/
|
|
||||||
public function slice(int $offset, int|null $length = null);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tests for the existence of an element that satisfies the given predicate.
|
|
||||||
*
|
|
||||||
* @param Closure $p The predicate.
|
|
||||||
* @psalm-param Closure(TKey, T):bool $p
|
|
||||||
*
|
|
||||||
* @return bool TRUE if the predicate is TRUE for at least one element, FALSE otherwise.
|
|
||||||
*/
|
|
||||||
public function exists(Closure $p);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns all the elements of this collection that satisfy the predicate p.
|
|
||||||
* The order of the elements is preserved.
|
|
||||||
*
|
|
||||||
* @param Closure $p The predicate used for filtering.
|
|
||||||
* @psalm-param Closure(T, TKey):bool $p
|
|
||||||
*
|
|
||||||
* @return ReadableCollection<mixed> A collection with the results of the filter operation.
|
|
||||||
* @psalm-return ReadableCollection<TKey, T>
|
|
||||||
*/
|
|
||||||
public function filter(Closure $p);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Applies the given function to each element in the collection and returns
|
|
||||||
* a new collection with the elements returned by the function.
|
|
||||||
*
|
|
||||||
* @psalm-param Closure(T):U $func
|
|
||||||
*
|
|
||||||
* @return ReadableCollection<mixed>
|
|
||||||
* @psalm-return ReadableCollection<TKey, U>
|
|
||||||
*
|
|
||||||
* @psalm-template U
|
|
||||||
*/
|
|
||||||
public function map(Closure $func);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Partitions this collection in two collections according to a predicate.
|
|
||||||
* Keys are preserved in the resulting collections.
|
|
||||||
*
|
|
||||||
* @param Closure $p The predicate on which to partition.
|
|
||||||
* @psalm-param Closure(TKey, T):bool $p
|
|
||||||
*
|
|
||||||
* @return ReadableCollection<mixed>[] An array with two elements. The first element contains the collection
|
|
||||||
* of elements where the predicate returned TRUE, the second element
|
|
||||||
* contains the collection of elements where the predicate returned FALSE.
|
|
||||||
* @psalm-return array{0: ReadableCollection<TKey, T>, 1: ReadableCollection<TKey, T>}
|
|
||||||
*/
|
|
||||||
public function partition(Closure $p);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tests whether the given predicate p holds for all elements of this collection.
|
|
||||||
*
|
|
||||||
* @param Closure $p The predicate.
|
|
||||||
* @psalm-param Closure(TKey, T):bool $p
|
|
||||||
*
|
|
||||||
* @return bool TRUE, if the predicate yields TRUE for all elements, FALSE otherwise.
|
|
||||||
*/
|
|
||||||
public function forAll(Closure $p);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the index/key of a given element. The comparison of two elements is strict,
|
|
||||||
* that means not only the value but also the type must match.
|
|
||||||
* For objects this means reference equality.
|
|
||||||
*
|
|
||||||
* @param mixed $element The element to search for.
|
|
||||||
* @psalm-param TMaybeContained $element
|
|
||||||
*
|
|
||||||
* @return int|string|bool The key/index of the element or FALSE if the element was not found.
|
|
||||||
* @psalm-return (TMaybeContained is T ? TKey|false : false)
|
|
||||||
*
|
|
||||||
* @template TMaybeContained
|
|
||||||
*/
|
|
||||||
public function indexOf(mixed $element);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the first element of this collection that satisfies the predicate p.
|
|
||||||
*
|
|
||||||
* @param Closure $p The predicate.
|
|
||||||
* @psalm-param Closure(TKey, T):bool $p
|
|
||||||
*
|
|
||||||
* @return mixed The first element respecting the predicate,
|
|
||||||
* null if no element respects the predicate.
|
|
||||||
* @psalm-return T|null
|
|
||||||
*/
|
|
||||||
public function findFirst(Closure $p);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Applies iteratively the given function to each element in the collection,
|
|
||||||
* so as to reduce the collection to a single value.
|
|
||||||
*
|
|
||||||
* @psalm-param Closure(TReturn|TInitial, T):TReturn $func
|
|
||||||
* @psalm-param TInitial $initial
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
* @psalm-return TReturn|TInitial
|
|
||||||
*
|
|
||||||
* @psalm-template TReturn
|
|
||||||
* @psalm-template TInitial
|
|
||||||
*/
|
|
||||||
public function reduce(Closure $func, mixed $initial = null);
|
|
||||||
}
|
|
32
vendor/doctrine/collections/src/Selectable.php
vendored
32
vendor/doctrine/collections/src/Selectable.php
vendored
@ -1,32 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\Common\Collections;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Interface for collections that allow efficient filtering with an expression API.
|
|
||||||
*
|
|
||||||
* Goal of this interface is a backend independent method to fetch elements
|
|
||||||
* from a collections. {@link Expression} is crafted in a way that you can
|
|
||||||
* implement queries from both in-memory and database-backed collections.
|
|
||||||
*
|
|
||||||
* For database backed collections this allows very efficient access by
|
|
||||||
* utilizing the query APIs, for example SQL in the ORM. Applications using
|
|
||||||
* this API can implement efficient database access without having to ask the
|
|
||||||
* EntityManager or Repositories.
|
|
||||||
*
|
|
||||||
* @psalm-template TKey as array-key
|
|
||||||
* @psalm-template-covariant T
|
|
||||||
*/
|
|
||||||
interface Selectable
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Selects all elements from a selectable that match the expression and
|
|
||||||
* returns a new collection containing these elements and preserved keys.
|
|
||||||
*
|
|
||||||
* @return ReadableCollection<mixed>&Selectable<mixed>
|
|
||||||
* @psalm-return ReadableCollection<TKey,T>&Selectable<TKey,T>
|
|
||||||
*/
|
|
||||||
public function matching(Criteria $criteria);
|
|
||||||
}
|
|
6
vendor/doctrine/dbal/CONTRIBUTING.md
vendored
6
vendor/doctrine/dbal/CONTRIBUTING.md
vendored
@ -1,6 +0,0 @@
|
|||||||
This repository has [guidelines specific to testing][testing guidelines], and
|
|
||||||
Doctrine has [general contributing guidelines][contributor workflow], make
|
|
||||||
sure you follow both.
|
|
||||||
|
|
||||||
[contributor workflow]: https://www.doctrine-project.org/contribute/index.html
|
|
||||||
[testing guidelines]: https://www.doctrine-project.org/projects/doctrine-dbal/en/stable/reference/testing.html
|
|
50
vendor/doctrine/dbal/README.md
vendored
50
vendor/doctrine/dbal/README.md
vendored
@ -1,50 +0,0 @@
|
|||||||
# Doctrine DBAL
|
|
||||||
|
|
||||||
| [5.0-dev][5.0] | [4.2-dev][4.2] | [4.1][4.1] | [3.9][3.9] |
|
|
||||||
|:---------------------------------------------------:|:---------------------------------------------------:|:---------------------------------------------------:|:---------------------------------------------------:|
|
|
||||||
| [![GitHub Actions][GA 5.0 image]][GA 5.0] | [![GitHub Actions][GA 4.2 image]][GA 4.2] | [![GitHub Actions][GA 4.1 image]][GA 4.1] | [![GitHub Actions][GA 3.9 image]][GA 3.9] |
|
|
||||||
| [![AppVeyor][AppVeyor 5.0 image]][AppVeyor 5.0] | [![AppVeyor][AppVeyor 4.2 image]][AppVeyor 4.2] | [![AppVeyor][AppVeyor 4.1 image]][AppVeyor 4.1] | [![AppVeyor][AppVeyor 3.9 image]][AppVeyor 3.9] |
|
|
||||||
| [![Code Coverage][Coverage 5.0 image]][CodeCov 5.0] | [![Code Coverage][Coverage 4.2 image]][CodeCov 4.2] | [![Code Coverage][Coverage 4.1 image]][CodeCov 4.1] | [![Code Coverage][Coverage 3.9 image]][CodeCov 3.9] |
|
|
||||||
| N/A | N/A | [![Type Coverage][TypeCov image]][TypeCov] | N/A |
|
|
||||||
|
|
||||||
Powerful ***D***ata***B***ase ***A***bstraction ***L***ayer with many features for database schema introspection and schema management.
|
|
||||||
|
|
||||||
## More resources:
|
|
||||||
|
|
||||||
* [Website](http://www.doctrine-project.org/projects/dbal.html)
|
|
||||||
* [Documentation](http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/)
|
|
||||||
* [Issue Tracker](https://github.com/doctrine/dbal/issues)
|
|
||||||
|
|
||||||
[Coverage 5.0 image]: https://codecov.io/gh/doctrine/dbal/branch/5.0.x/graph/badge.svg
|
|
||||||
[5.0]: https://github.com/doctrine/dbal/tree/5.0.x
|
|
||||||
[CodeCov 5.0]: https://codecov.io/gh/doctrine/dbal/branch/5.0.x
|
|
||||||
[AppVeyor 5.0]: https://ci.appveyor.com/project/doctrine/dbal/branch/5.0.x
|
|
||||||
[AppVeyor 5.0 image]: https://ci.appveyor.com/api/projects/status/i88kitq8qpbm0vie/branch/5.0.x?svg=true
|
|
||||||
[GA 5.0]: https://github.com/doctrine/dbal/actions?query=workflow%3A%22Continuous+Integration%22+branch%3A5.0.x
|
|
||||||
[GA 5.0 image]: https://github.com/doctrine/dbal/workflows/Continuous%20Integration/badge.svg?branch=5.0.x
|
|
||||||
|
|
||||||
[Coverage 4.2 image]: https://codecov.io/gh/doctrine/dbal/branch/4.2.x/graph/badge.svg
|
|
||||||
[4.2]: https://github.com/doctrine/dbal/tree/4.2.x
|
|
||||||
[CodeCov 4.2]: https://codecov.io/gh/doctrine/dbal/branch/4.2.x
|
|
||||||
[AppVeyor 4.2]: https://ci.appveyor.com/project/doctrine/dbal/branch/4.2.x
|
|
||||||
[AppVeyor 4.2 image]: https://ci.appveyor.com/api/projects/status/i88kitq8qpbm0vie/branch/4.2.x?svg=true
|
|
||||||
[GA 4.2]: https://github.com/doctrine/dbal/actions?query=workflow%3A%22Continuous+Integration%22+branch%3A4.2.x
|
|
||||||
[GA 4.2 image]: https://github.com/doctrine/dbal/workflows/Continuous%20Integration/badge.svg?branch=4.2.x
|
|
||||||
|
|
||||||
[Coverage 4.1 image]: https://codecov.io/gh/doctrine/dbal/branch/4.1.x/graph/badge.svg
|
|
||||||
[4.1]: https://github.com/doctrine/dbal/tree/4.1.x
|
|
||||||
[CodeCov 4.1]: https://codecov.io/gh/doctrine/dbal/branch/4.1.x
|
|
||||||
[AppVeyor 4.1]: https://ci.appveyor.com/project/doctrine/dbal/branch/4.1.x
|
|
||||||
[AppVeyor 4.1 image]: https://ci.appveyor.com/api/projects/status/i88kitq8qpbm0vie/branch/4.1.x?svg=true
|
|
||||||
[GA 4.1]: https://github.com/doctrine/dbal/actions?query=workflow%3A%22Continuous+Integration%22+branch%3A4.1.x
|
|
||||||
[GA 4.1 image]: https://github.com/doctrine/dbal/workflows/Continuous%20Integration/badge.svg?branch=4.1.x
|
|
||||||
[TypeCov]: https://shepherd.dev/github/doctrine/dbal
|
|
||||||
[TypeCov image]: https://shepherd.dev/github/doctrine/dbal/coverage.svg
|
|
||||||
|
|
||||||
[Coverage 3.9 image]: https://codecov.io/gh/doctrine/dbal/branch/3.9.x/graph/badge.svg
|
|
||||||
[3.9]: https://github.com/doctrine/dbal/tree/3.9.x
|
|
||||||
[CodeCov 3.9]: https://codecov.io/gh/doctrine/dbal/branch/3.9.x
|
|
||||||
[AppVeyor 3.9]: https://ci.appveyor.com/project/doctrine/dbal/branch/3.9.x
|
|
||||||
[AppVeyor 3.9 image]: https://ci.appveyor.com/api/projects/status/i88kitq8qpbm0vie/branch/3.9.x?svg=true
|
|
||||||
[GA 3.9]: https://github.com/doctrine/dbal/actions?query=workflow%3A%22Continuous+Integration%22+branch%3A3.9.x
|
|
||||||
[GA 3.9 image]: https://github.com/doctrine/dbal/workflows/Continuous%20Integration/badge.svg?branch=3.9.x
|
|
55
vendor/doctrine/dbal/bin/doctrine-dbal.php
vendored
55
vendor/doctrine/dbal/bin/doctrine-dbal.php
vendored
@ -1,55 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Tools\Console\ConsoleRunner;
|
|
||||||
|
|
||||||
fwrite(
|
|
||||||
STDERR,
|
|
||||||
'[Warning] The use of this script is discouraged.'
|
|
||||||
. ' You find instructions on how to bootstrap the console runner in our documentation.'
|
|
||||||
. PHP_EOL,
|
|
||||||
);
|
|
||||||
|
|
||||||
echo PHP_EOL . PHP_EOL;
|
|
||||||
|
|
||||||
$files = [__DIR__ . '/../vendor/autoload.php', __DIR__ . '/../../../autoload.php'];
|
|
||||||
$loader = null;
|
|
||||||
$cwd = getcwd();
|
|
||||||
$directories = [$cwd, $cwd . DIRECTORY_SEPARATOR . 'config'];
|
|
||||||
$configFile = null;
|
|
||||||
|
|
||||||
foreach ($files as $file) {
|
|
||||||
if (file_exists($file)) {
|
|
||||||
$loader = require $file;
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! $loader) {
|
|
||||||
throw new RuntimeException('vendor/autoload.php could not be found. Did you run `php composer.phar install`?');
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($directories as $directory) {
|
|
||||||
$configFile = $directory . DIRECTORY_SEPARATOR . 'cli-config.php';
|
|
||||||
|
|
||||||
if (file_exists($configFile)) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! file_exists($configFile)) {
|
|
||||||
ConsoleRunner::printCliConfigTemplate();
|
|
||||||
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! is_readable($configFile)) {
|
|
||||||
echo 'Configuration file [' . $configFile . '] does not have read permission.' . PHP_EOL;
|
|
||||||
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
$commands = [];
|
|
||||||
$connectionProvider = require $configFile;
|
|
||||||
|
|
||||||
ConsoleRunner::run($connectionProvider, $commands);
|
|
73
vendor/doctrine/dbal/composer.json
vendored
73
vendor/doctrine/dbal/composer.json
vendored
@ -1,73 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "doctrine/dbal",
|
|
||||||
"type": "library",
|
|
||||||
"description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
|
|
||||||
"keywords": [
|
|
||||||
"abstraction",
|
|
||||||
"database",
|
|
||||||
"dbal",
|
|
||||||
"db2",
|
|
||||||
"mariadb",
|
|
||||||
"mssql",
|
|
||||||
"mysql",
|
|
||||||
"pgsql",
|
|
||||||
"postgresql",
|
|
||||||
"oci8",
|
|
||||||
"oracle",
|
|
||||||
"pdo",
|
|
||||||
"queryobject",
|
|
||||||
"sasql",
|
|
||||||
"sql",
|
|
||||||
"sqlite",
|
|
||||||
"sqlserver",
|
|
||||||
"sqlsrv"
|
|
||||||
],
|
|
||||||
"homepage": "https://www.doctrine-project.org/projects/dbal.html",
|
|
||||||
"license": "MIT",
|
|
||||||
"authors": [
|
|
||||||
{"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
|
|
||||||
{"name": "Roman Borschel", "email": "roman@code-factory.org"},
|
|
||||||
{"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
|
|
||||||
{"name": "Jonathan Wage", "email": "jonwage@gmail.com"}
|
|
||||||
],
|
|
||||||
"require": {
|
|
||||||
"php": "^7.4 || ^8.0",
|
|
||||||
"composer-runtime-api": "^2",
|
|
||||||
"doctrine/cache": "^1.11|^2.0",
|
|
||||||
"doctrine/deprecations": "^0.5.3|^1",
|
|
||||||
"doctrine/event-manager": "^1|^2",
|
|
||||||
"psr/cache": "^1|^2|^3",
|
|
||||||
"psr/log": "^1|^2|^3"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"doctrine/coding-standard": "12.0.0",
|
|
||||||
"fig/log-test": "^1",
|
|
||||||
"jetbrains/phpstorm-stubs": "2023.1",
|
|
||||||
"phpstan/phpstan": "1.12.0",
|
|
||||||
"phpstan/phpstan-strict-rules": "^1.6",
|
|
||||||
"phpunit/phpunit": "9.6.20",
|
|
||||||
"psalm/plugin-phpunit": "0.18.4",
|
|
||||||
"slevomat/coding-standard": "8.13.1",
|
|
||||||
"squizlabs/php_codesniffer": "3.10.2",
|
|
||||||
"symfony/cache": "^5.4|^6.0|^7.0",
|
|
||||||
"symfony/console": "^4.4|^5.4|^6.0|^7.0",
|
|
||||||
"vimeo/psalm": "4.30.0"
|
|
||||||
},
|
|
||||||
"suggest": {
|
|
||||||
"symfony/console": "For helpful console commands such as SQL execution and import of files."
|
|
||||||
},
|
|
||||||
"bin": ["bin/doctrine-dbal"],
|
|
||||||
"config": {
|
|
||||||
"sort-packages": true,
|
|
||||||
"allow-plugins": {
|
|
||||||
"dealerdirect/phpcodesniffer-composer-installer": true,
|
|
||||||
"composer/package-versions-deprecated": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": { "Doctrine\\DBAL\\": "src" }
|
|
||||||
},
|
|
||||||
"autoload-dev": {
|
|
||||||
"psr-4": { "Doctrine\\DBAL\\Tests\\": "tests" }
|
|
||||||
}
|
|
||||||
}
|
|
42
vendor/doctrine/dbal/src/ArrayParameterType.php
vendored
42
vendor/doctrine/dbal/src/ArrayParameterType.php
vendored
@ -1,42 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL;
|
|
||||||
|
|
||||||
final class ArrayParameterType
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Represents an array of ints to be expanded by Doctrine SQL parsing.
|
|
||||||
*/
|
|
||||||
public const INTEGER = ParameterType::INTEGER + Connection::ARRAY_PARAM_OFFSET;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Represents an array of strings to be expanded by Doctrine SQL parsing.
|
|
||||||
*/
|
|
||||||
public const STRING = ParameterType::STRING + Connection::ARRAY_PARAM_OFFSET;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Represents an array of ascii strings to be expanded by Doctrine SQL parsing.
|
|
||||||
*/
|
|
||||||
public const ASCII = ParameterType::ASCII + Connection::ARRAY_PARAM_OFFSET;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Represents an array of ascii strings to be expanded by Doctrine SQL parsing.
|
|
||||||
*/
|
|
||||||
public const BINARY = ParameterType::BINARY + Connection::ARRAY_PARAM_OFFSET;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @internal
|
|
||||||
*
|
|
||||||
* @psalm-param self::* $type
|
|
||||||
*
|
|
||||||
* @psalm-return ParameterType::INTEGER|ParameterType::STRING|ParameterType::ASCII|ParameterType::BINARY
|
|
||||||
*/
|
|
||||||
public static function toElementParameterType(int $type): int
|
|
||||||
{
|
|
||||||
return $type - Connection::ARRAY_PARAM_OFFSET;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function __construct()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\ArrayParameters;
|
|
||||||
|
|
||||||
use Throwable;
|
|
||||||
|
|
||||||
/** @internal */
|
|
||||||
interface Exception extends Throwable
|
|
||||||
{
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\ArrayParameters\Exception;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\ArrayParameters\Exception;
|
|
||||||
use LogicException;
|
|
||||||
|
|
||||||
use function sprintf;
|
|
||||||
|
|
||||||
/** @psalm-immutable */
|
|
||||||
class MissingNamedParameter extends LogicException implements Exception
|
|
||||||
{
|
|
||||||
public static function new(string $name): self
|
|
||||||
{
|
|
||||||
return new self(
|
|
||||||
sprintf('Named parameter "%s" does not have a bound value.', $name),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,23 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\ArrayParameters\Exception;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\ArrayParameters\Exception;
|
|
||||||
use LogicException;
|
|
||||||
|
|
||||||
use function sprintf;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @internal
|
|
||||||
*
|
|
||||||
* @psalm-immutable
|
|
||||||
*/
|
|
||||||
class MissingPositionalParameter extends LogicException implements Exception
|
|
||||||
{
|
|
||||||
public static function new(int $index): self
|
|
||||||
{
|
|
||||||
return new self(
|
|
||||||
sprintf('Positional parameter at index %d does not have a bound value.', $index),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
116
vendor/doctrine/dbal/src/Cache/ArrayResult.php
vendored
116
vendor/doctrine/dbal/src/Cache/ArrayResult.php
vendored
@ -1,116 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Cache;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Driver\FetchUtils;
|
|
||||||
use Doctrine\DBAL\Driver\Result;
|
|
||||||
|
|
||||||
use function array_values;
|
|
||||||
use function count;
|
|
||||||
use function reset;
|
|
||||||
|
|
||||||
/** @internal The class is internal to the caching layer implementation. */
|
|
||||||
final class ArrayResult implements Result
|
|
||||||
{
|
|
||||||
/** @var list<array<string, mixed>> */
|
|
||||||
private array $data;
|
|
||||||
|
|
||||||
private int $columnCount = 0;
|
|
||||||
private int $num = 0;
|
|
||||||
|
|
||||||
/** @param list<array<string, mixed>> $data */
|
|
||||||
public function __construct(array $data)
|
|
||||||
{
|
|
||||||
$this->data = $data;
|
|
||||||
if (count($data) === 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->columnCount = count($data[0]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function fetchNumeric()
|
|
||||||
{
|
|
||||||
$row = $this->fetch();
|
|
||||||
|
|
||||||
if ($row === false) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return array_values($row);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function fetchAssociative()
|
|
||||||
{
|
|
||||||
return $this->fetch();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function fetchOne()
|
|
||||||
{
|
|
||||||
$row = $this->fetch();
|
|
||||||
|
|
||||||
if ($row === false) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return reset($row);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function fetchAllNumeric(): array
|
|
||||||
{
|
|
||||||
return FetchUtils::fetchAllNumeric($this);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function fetchAllAssociative(): array
|
|
||||||
{
|
|
||||||
return FetchUtils::fetchAllAssociative($this);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function fetchFirstColumn(): array
|
|
||||||
{
|
|
||||||
return FetchUtils::fetchFirstColumn($this);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function rowCount(): int
|
|
||||||
{
|
|
||||||
return count($this->data);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function columnCount(): int
|
|
||||||
{
|
|
||||||
return $this->columnCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function free(): void
|
|
||||||
{
|
|
||||||
$this->data = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return array<string, mixed>|false */
|
|
||||||
private function fetch()
|
|
||||||
{
|
|
||||||
if (! isset($this->data[$this->num])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->data[$this->num++];
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Cache;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Exception;
|
|
||||||
|
|
||||||
/** @psalm-immutable */
|
|
||||||
class CacheException extends Exception
|
|
||||||
{
|
|
||||||
/** @return CacheException */
|
|
||||||
public static function noCacheKey()
|
|
||||||
{
|
|
||||||
return new self('No cache key was set.');
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return CacheException */
|
|
||||||
public static function noResultDriverConfigured()
|
|
||||||
{
|
|
||||||
return new self('Trying to cache a query but no result driver is configured.');
|
|
||||||
}
|
|
||||||
}
|
|
176
vendor/doctrine/dbal/src/Cache/QueryCacheProfile.php
vendored
176
vendor/doctrine/dbal/src/Cache/QueryCacheProfile.php
vendored
@ -1,176 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Cache;
|
|
||||||
|
|
||||||
use Doctrine\Common\Cache\Cache;
|
|
||||||
use Doctrine\Common\Cache\Psr6\CacheAdapter;
|
|
||||||
use Doctrine\Common\Cache\Psr6\DoctrineProvider;
|
|
||||||
use Doctrine\DBAL\Types\Type;
|
|
||||||
use Doctrine\Deprecations\Deprecation;
|
|
||||||
use Psr\Cache\CacheItemPoolInterface;
|
|
||||||
use TypeError;
|
|
||||||
|
|
||||||
use function get_class;
|
|
||||||
use function hash;
|
|
||||||
use function serialize;
|
|
||||||
use function sha1;
|
|
||||||
use function sprintf;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Query Cache Profile handles the data relevant for query caching.
|
|
||||||
*
|
|
||||||
* It is a value object, setter methods return NEW instances.
|
|
||||||
*/
|
|
||||||
class QueryCacheProfile
|
|
||||||
{
|
|
||||||
private ?CacheItemPoolInterface $resultCache = null;
|
|
||||||
|
|
||||||
/** @var int */
|
|
||||||
private $lifetime;
|
|
||||||
|
|
||||||
/** @var string|null */
|
|
||||||
private $cacheKey;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param int $lifetime
|
|
||||||
* @param string|null $cacheKey
|
|
||||||
* @param CacheItemPoolInterface|Cache|null $resultCache
|
|
||||||
*/
|
|
||||||
public function __construct($lifetime = 0, $cacheKey = null, ?object $resultCache = null)
|
|
||||||
{
|
|
||||||
$this->lifetime = $lifetime;
|
|
||||||
$this->cacheKey = $cacheKey;
|
|
||||||
if ($resultCache instanceof CacheItemPoolInterface) {
|
|
||||||
$this->resultCache = $resultCache;
|
|
||||||
} elseif ($resultCache instanceof Cache) {
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/4620',
|
|
||||||
'Passing an instance of %s to %s as $resultCache is deprecated. Pass an instance of %s instead.',
|
|
||||||
Cache::class,
|
|
||||||
__METHOD__,
|
|
||||||
CacheItemPoolInterface::class,
|
|
||||||
);
|
|
||||||
|
|
||||||
$this->resultCache = CacheAdapter::wrap($resultCache);
|
|
||||||
} elseif ($resultCache !== null) {
|
|
||||||
throw new TypeError(sprintf(
|
|
||||||
'$resultCache: Expected either null or an instance of %s or %s, got %s.',
|
|
||||||
CacheItemPoolInterface::class,
|
|
||||||
Cache::class,
|
|
||||||
get_class($resultCache),
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getResultCache(): ?CacheItemPoolInterface
|
|
||||||
{
|
|
||||||
return $this->resultCache;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated Use {@see getResultCache()} instead.
|
|
||||||
*
|
|
||||||
* @return Cache|null
|
|
||||||
*/
|
|
||||||
public function getResultCacheDriver()
|
|
||||||
{
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/4620',
|
|
||||||
'%s is deprecated, call getResultCache() instead.',
|
|
||||||
__METHOD__,
|
|
||||||
);
|
|
||||||
|
|
||||||
return $this->resultCache !== null ? DoctrineProvider::wrap($this->resultCache) : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return int */
|
|
||||||
public function getLifetime()
|
|
||||||
{
|
|
||||||
return $this->lifetime;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return string
|
|
||||||
*
|
|
||||||
* @throws CacheException
|
|
||||||
*/
|
|
||||||
public function getCacheKey()
|
|
||||||
{
|
|
||||||
if ($this->cacheKey === null) {
|
|
||||||
throw CacheException::noCacheKey();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->cacheKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generates the real cache key from query, params, types and connection parameters.
|
|
||||||
*
|
|
||||||
* @param string $sql
|
|
||||||
* @param list<mixed>|array<string, mixed> $params
|
|
||||||
* @param array<int, Type|int|string|null>|array<string, Type|int|string|null> $types
|
|
||||||
* @param array<string, mixed> $connectionParams
|
|
||||||
*
|
|
||||||
* @return array{string, string}
|
|
||||||
*/
|
|
||||||
public function generateCacheKeys($sql, $params, $types, array $connectionParams = [])
|
|
||||||
{
|
|
||||||
if (isset($connectionParams['password'])) {
|
|
||||||
unset($connectionParams['password']);
|
|
||||||
}
|
|
||||||
|
|
||||||
$realCacheKey = 'query=' . $sql .
|
|
||||||
'¶ms=' . serialize($params) .
|
|
||||||
'&types=' . serialize($types) .
|
|
||||||
'&connectionParams=' . hash('sha256', serialize($connectionParams));
|
|
||||||
|
|
||||||
// should the key be automatically generated using the inputs or is the cache key set?
|
|
||||||
$cacheKey = $this->cacheKey ?? sha1($realCacheKey);
|
|
||||||
|
|
||||||
return [$cacheKey, $realCacheKey];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setResultCache(CacheItemPoolInterface $cache): QueryCacheProfile
|
|
||||||
{
|
|
||||||
return new QueryCacheProfile($this->lifetime, $this->cacheKey, $cache);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated Use {@see setResultCache()} instead.
|
|
||||||
*
|
|
||||||
* @return QueryCacheProfile
|
|
||||||
*/
|
|
||||||
public function setResultCacheDriver(Cache $cache)
|
|
||||||
{
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/4620',
|
|
||||||
'%s is deprecated, call setResultCache() instead.',
|
|
||||||
__METHOD__,
|
|
||||||
);
|
|
||||||
|
|
||||||
return new QueryCacheProfile($this->lifetime, $this->cacheKey, CacheAdapter::wrap($cache));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string|null $cacheKey
|
|
||||||
*
|
|
||||||
* @return QueryCacheProfile
|
|
||||||
*/
|
|
||||||
public function setCacheKey($cacheKey)
|
|
||||||
{
|
|
||||||
return new QueryCacheProfile($this->lifetime, $cacheKey, $this->resultCache);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param int $lifetime
|
|
||||||
*
|
|
||||||
* @return QueryCacheProfile
|
|
||||||
*/
|
|
||||||
public function setLifetime($lifetime)
|
|
||||||
{
|
|
||||||
return new QueryCacheProfile($lifetime, $this->cacheKey, $this->resultCache);
|
|
||||||
}
|
|
||||||
}
|
|
28
vendor/doctrine/dbal/src/ColumnCase.php
vendored
28
vendor/doctrine/dbal/src/ColumnCase.php
vendored
@ -1,28 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Contains portable column case conversions.
|
|
||||||
*/
|
|
||||||
final class ColumnCase
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Convert column names to upper case.
|
|
||||||
*/
|
|
||||||
public const UPPER = 1;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convert column names to lower case.
|
|
||||||
*/
|
|
||||||
public const LOWER = 2;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This class cannot be instantiated.
|
|
||||||
*
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
private function __construct()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
265
vendor/doctrine/dbal/src/Configuration.php
vendored
265
vendor/doctrine/dbal/src/Configuration.php
vendored
@ -1,265 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL;
|
|
||||||
|
|
||||||
use Doctrine\Common\Cache\Cache;
|
|
||||||
use Doctrine\Common\Cache\Psr6\CacheAdapter;
|
|
||||||
use Doctrine\Common\Cache\Psr6\DoctrineProvider;
|
|
||||||
use Doctrine\DBAL\Driver\Middleware;
|
|
||||||
use Doctrine\DBAL\Logging\SQLLogger;
|
|
||||||
use Doctrine\DBAL\Schema\SchemaManagerFactory;
|
|
||||||
use Doctrine\Deprecations\Deprecation;
|
|
||||||
use Psr\Cache\CacheItemPoolInterface;
|
|
||||||
|
|
||||||
use function func_num_args;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Configuration container for the Doctrine DBAL.
|
|
||||||
*/
|
|
||||||
class Configuration
|
|
||||||
{
|
|
||||||
/** @var Middleware[] */
|
|
||||||
private array $middlewares = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The SQL logger in use. If null, SQL logging is disabled.
|
|
||||||
*
|
|
||||||
* @var SQLLogger|null
|
|
||||||
*/
|
|
||||||
protected $sqlLogger;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The cache driver implementation that is used for query result caching.
|
|
||||||
*/
|
|
||||||
private ?CacheItemPoolInterface $resultCache = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The cache driver implementation that is used for query result caching.
|
|
||||||
*
|
|
||||||
* @deprecated Use {@see $resultCache} instead.
|
|
||||||
*
|
|
||||||
* @var Cache|null
|
|
||||||
*/
|
|
||||||
protected $resultCacheImpl;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The callable to use to filter schema assets.
|
|
||||||
*
|
|
||||||
* @var callable|null
|
|
||||||
*/
|
|
||||||
protected $schemaAssetsFilter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The default auto-commit mode for connections.
|
|
||||||
*
|
|
||||||
* @var bool
|
|
||||||
*/
|
|
||||||
protected $autoCommit = true;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Whether type comments should be disabled to provide the same DB schema than
|
|
||||||
* will be obtained with DBAL 4.x. This is useful when relying only on the
|
|
||||||
* platform-aware schema comparison (which does not need those type comments)
|
|
||||||
* rather than the deprecated legacy tooling.
|
|
||||||
*/
|
|
||||||
private bool $disableTypeComments = false;
|
|
||||||
|
|
||||||
private ?SchemaManagerFactory $schemaManagerFactory = null;
|
|
||||||
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->schemaAssetsFilter = static function (): bool {
|
|
||||||
return true;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the SQL logger to use. Defaults to NULL which means SQL logging is disabled.
|
|
||||||
*
|
|
||||||
* @deprecated Use {@see setMiddlewares()} and {@see \Doctrine\DBAL\Logging\Middleware} instead.
|
|
||||||
*/
|
|
||||||
public function setSQLLogger(?SQLLogger $logger = null): void
|
|
||||||
{
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/4967',
|
|
||||||
'%s is deprecated, use setMiddlewares() and Logging\\Middleware instead.',
|
|
||||||
__METHOD__,
|
|
||||||
);
|
|
||||||
|
|
||||||
$this->sqlLogger = $logger;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the SQL logger that is used.
|
|
||||||
*
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
public function getSQLLogger(): ?SQLLogger
|
|
||||||
{
|
|
||||||
Deprecation::triggerIfCalledFromOutside(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/4967',
|
|
||||||
'%s is deprecated.',
|
|
||||||
__METHOD__,
|
|
||||||
);
|
|
||||||
|
|
||||||
return $this->sqlLogger;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the cache driver implementation that is used for query result caching.
|
|
||||||
*/
|
|
||||||
public function getResultCache(): ?CacheItemPoolInterface
|
|
||||||
{
|
|
||||||
return $this->resultCache;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the cache driver implementation that is used for query result caching.
|
|
||||||
*
|
|
||||||
* @deprecated Use {@see getResultCache()} instead.
|
|
||||||
*/
|
|
||||||
public function getResultCacheImpl(): ?Cache
|
|
||||||
{
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/4620',
|
|
||||||
'%s is deprecated, call getResultCache() instead.',
|
|
||||||
__METHOD__,
|
|
||||||
);
|
|
||||||
|
|
||||||
return $this->resultCacheImpl;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the cache driver implementation that is used for query result caching.
|
|
||||||
*/
|
|
||||||
public function setResultCache(CacheItemPoolInterface $cache): void
|
|
||||||
{
|
|
||||||
$this->resultCacheImpl = DoctrineProvider::wrap($cache);
|
|
||||||
$this->resultCache = $cache;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the cache driver implementation that is used for query result caching.
|
|
||||||
*
|
|
||||||
* @deprecated Use {@see setResultCache()} instead.
|
|
||||||
*/
|
|
||||||
public function setResultCacheImpl(Cache $cacheImpl): void
|
|
||||||
{
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/4620',
|
|
||||||
'%s is deprecated, call setResultCache() instead.',
|
|
||||||
__METHOD__,
|
|
||||||
);
|
|
||||||
|
|
||||||
$this->resultCacheImpl = $cacheImpl;
|
|
||||||
$this->resultCache = CacheAdapter::wrap($cacheImpl);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the callable to use to filter schema assets.
|
|
||||||
*/
|
|
||||||
public function setSchemaAssetsFilter(?callable $callable = null): void
|
|
||||||
{
|
|
||||||
if (func_num_args() < 1) {
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5483',
|
|
||||||
'Not passing an argument to %s is deprecated.',
|
|
||||||
__METHOD__,
|
|
||||||
);
|
|
||||||
} elseif ($callable === null) {
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5483',
|
|
||||||
'Using NULL as a schema asset filter is deprecated.'
|
|
||||||
. ' Use a callable that always returns true instead.',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->schemaAssetsFilter = $callable;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the callable to use to filter schema assets.
|
|
||||||
*/
|
|
||||||
public function getSchemaAssetsFilter(): ?callable
|
|
||||||
{
|
|
||||||
return $this->schemaAssetsFilter;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the default auto-commit mode for connections.
|
|
||||||
*
|
|
||||||
* If a connection is in auto-commit mode, then all its SQL statements will be executed and committed as individual
|
|
||||||
* transactions. Otherwise, its SQL statements are grouped into transactions that are terminated by a call to either
|
|
||||||
* the method commit or the method rollback. By default, new connections are in auto-commit mode.
|
|
||||||
*
|
|
||||||
* @see getAutoCommit
|
|
||||||
*
|
|
||||||
* @param bool $autoCommit True to enable auto-commit mode; false to disable it
|
|
||||||
*/
|
|
||||||
public function setAutoCommit(bool $autoCommit): void
|
|
||||||
{
|
|
||||||
$this->autoCommit = $autoCommit;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the default auto-commit mode for connections.
|
|
||||||
*
|
|
||||||
* @see setAutoCommit
|
|
||||||
*
|
|
||||||
* @return bool True if auto-commit mode is enabled by default for connections, false otherwise.
|
|
||||||
*/
|
|
||||||
public function getAutoCommit(): bool
|
|
||||||
{
|
|
||||||
return $this->autoCommit;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Middleware[] $middlewares
|
|
||||||
*
|
|
||||||
* @return $this
|
|
||||||
*/
|
|
||||||
public function setMiddlewares(array $middlewares): self
|
|
||||||
{
|
|
||||||
$this->middlewares = $middlewares;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return Middleware[] */
|
|
||||||
public function getMiddlewares(): array
|
|
||||||
{
|
|
||||||
return $this->middlewares;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSchemaManagerFactory(): ?SchemaManagerFactory
|
|
||||||
{
|
|
||||||
return $this->schemaManagerFactory;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return $this */
|
|
||||||
public function setSchemaManagerFactory(SchemaManagerFactory $schemaManagerFactory): self
|
|
||||||
{
|
|
||||||
$this->schemaManagerFactory = $schemaManagerFactory;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getDisableTypeComments(): bool
|
|
||||||
{
|
|
||||||
return $this->disableTypeComments;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return $this */
|
|
||||||
public function setDisableTypeComments(bool $disableTypeComments): self
|
|
||||||
{
|
|
||||||
$this->disableTypeComments = $disableTypeComments;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
}
|
|
2001
vendor/doctrine/dbal/src/Connection.php
vendored
2001
vendor/doctrine/dbal/src/Connection.php
vendored
File diff suppressed because it is too large
Load Diff
31
vendor/doctrine/dbal/src/ConnectionException.php
vendored
31
vendor/doctrine/dbal/src/ConnectionException.php
vendored
@ -1,31 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL;
|
|
||||||
|
|
||||||
/** @psalm-immutable */
|
|
||||||
class ConnectionException extends Exception
|
|
||||||
{
|
|
||||||
/** @return ConnectionException */
|
|
||||||
public static function commitFailedRollbackOnly()
|
|
||||||
{
|
|
||||||
return new self('Transaction commit failed because the transaction has been marked for rollback only.');
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return ConnectionException */
|
|
||||||
public static function noActiveTransaction()
|
|
||||||
{
|
|
||||||
return new self('There is no active transaction.');
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return ConnectionException */
|
|
||||||
public static function savepointsNotSupported()
|
|
||||||
{
|
|
||||||
return new self('Savepoints are not supported by this driver.');
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @return ConnectionException */
|
|
||||||
public static function mayNotAlterNestedTransactionWithSavepointsInTransaction()
|
|
||||||
{
|
|
||||||
return new self('May not alter the nested transaction with savepoints behavior while a transaction is open.');
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,374 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Connections;
|
|
||||||
|
|
||||||
use Doctrine\Common\EventManager;
|
|
||||||
use Doctrine\DBAL\Configuration;
|
|
||||||
use Doctrine\DBAL\Connection;
|
|
||||||
use Doctrine\DBAL\Driver;
|
|
||||||
use Doctrine\DBAL\Driver\Connection as DriverConnection;
|
|
||||||
use Doctrine\DBAL\Driver\Exception as DriverException;
|
|
||||||
use Doctrine\DBAL\DriverManager;
|
|
||||||
use Doctrine\DBAL\Event\ConnectionEventArgs;
|
|
||||||
use Doctrine\DBAL\Events;
|
|
||||||
use Doctrine\DBAL\Exception;
|
|
||||||
use Doctrine\DBAL\Statement;
|
|
||||||
use Doctrine\Deprecations\Deprecation;
|
|
||||||
use InvalidArgumentException;
|
|
||||||
use SensitiveParameter;
|
|
||||||
|
|
||||||
use function array_rand;
|
|
||||||
use function count;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Primary-Replica Connection
|
|
||||||
*
|
|
||||||
* Connection can be used with primary-replica setups.
|
|
||||||
*
|
|
||||||
* Important for the understanding of this connection should be how and when
|
|
||||||
* it picks the replica or primary.
|
|
||||||
*
|
|
||||||
* 1. Replica if primary was never picked before and ONLY if 'getWrappedConnection'
|
|
||||||
* or 'executeQuery' is used.
|
|
||||||
* 2. Primary picked when 'executeStatement', 'insert', 'delete', 'update', 'createSavepoint',
|
|
||||||
* 'releaseSavepoint', 'beginTransaction', 'rollback', 'commit' or 'prepare' is called.
|
|
||||||
* 3. If Primary was picked once during the lifetime of the connection it will always get picked afterwards.
|
|
||||||
* 4. One replica connection is randomly picked ONCE during a request.
|
|
||||||
*
|
|
||||||
* ATTENTION: You can write to the replica with this connection if you execute a write query without
|
|
||||||
* opening up a transaction. For example:
|
|
||||||
*
|
|
||||||
* $conn = DriverManager::getConnection(...);
|
|
||||||
* $conn->executeQuery("DELETE FROM table");
|
|
||||||
*
|
|
||||||
* Be aware that Connection#executeQuery is a method specifically for READ
|
|
||||||
* operations only.
|
|
||||||
*
|
|
||||||
* Use Connection#executeStatement for any SQL statement that changes/updates
|
|
||||||
* state in the database (UPDATE, INSERT, DELETE or DDL statements).
|
|
||||||
*
|
|
||||||
* This connection is limited to replica operations using the
|
|
||||||
* Connection#executeQuery operation only, because it wouldn't be compatible
|
|
||||||
* with the ORM or SchemaManager code otherwise. Both use all the other
|
|
||||||
* operations in a context where writes could happen to a replica, which makes
|
|
||||||
* this restricted approach necessary.
|
|
||||||
*
|
|
||||||
* You can manually connect to the primary at any time by calling:
|
|
||||||
*
|
|
||||||
* $conn->ensureConnectedToPrimary();
|
|
||||||
*
|
|
||||||
* Instantiation through the DriverManager looks like:
|
|
||||||
*
|
|
||||||
* @psalm-import-type Params from DriverManager
|
|
||||||
* @example
|
|
||||||
*
|
|
||||||
* $conn = DriverManager::getConnection(array(
|
|
||||||
* 'wrapperClass' => 'Doctrine\DBAL\Connections\PrimaryReadReplicaConnection',
|
|
||||||
* 'driver' => 'pdo_mysql',
|
|
||||||
* 'primary' => array('user' => '', 'password' => '', 'host' => '', 'dbname' => ''),
|
|
||||||
* 'replica' => array(
|
|
||||||
* array('user' => 'replica1', 'password' => '', 'host' => '', 'dbname' => ''),
|
|
||||||
* array('user' => 'replica2', 'password' => '', 'host' => '', 'dbname' => ''),
|
|
||||||
* )
|
|
||||||
* ));
|
|
||||||
*
|
|
||||||
* You can also pass 'driverOptions' and any other documented option to each of this drivers
|
|
||||||
* to pass additional information.
|
|
||||||
*/
|
|
||||||
class PrimaryReadReplicaConnection extends Connection
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Primary and Replica connection (one of the randomly picked replicas).
|
|
||||||
*
|
|
||||||
* @var DriverConnection[]|null[]
|
|
||||||
*/
|
|
||||||
protected $connections = ['primary' => null, 'replica' => null];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* You can keep the replica connection and then switch back to it
|
|
||||||
* during the request if you know what you are doing.
|
|
||||||
*
|
|
||||||
* @var bool
|
|
||||||
*/
|
|
||||||
protected $keepReplica = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates Primary Replica Connection.
|
|
||||||
*
|
|
||||||
* @internal The connection can be only instantiated by the driver manager.
|
|
||||||
*
|
|
||||||
* @param array<string,mixed> $params
|
|
||||||
* @psalm-param Params $params
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
* @throws InvalidArgumentException
|
|
||||||
*/
|
|
||||||
public function __construct(
|
|
||||||
array $params,
|
|
||||||
Driver $driver,
|
|
||||||
?Configuration $config = null,
|
|
||||||
?EventManager $eventManager = null
|
|
||||||
) {
|
|
||||||
if (! isset($params['replica'], $params['primary'])) {
|
|
||||||
throw new InvalidArgumentException('primary or replica configuration missing');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (count($params['replica']) === 0) {
|
|
||||||
throw new InvalidArgumentException('You have to configure at least one replica.');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($params['driver'])) {
|
|
||||||
$params['primary']['driver'] = $params['driver'];
|
|
||||||
|
|
||||||
foreach ($params['replica'] as $replicaKey => $replica) {
|
|
||||||
$params['replica'][$replicaKey]['driver'] = $params['driver'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->keepReplica = (bool) ($params['keepReplica'] ?? false);
|
|
||||||
|
|
||||||
parent::__construct($params, $driver, $config, $eventManager);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks if the connection is currently towards the primary or not.
|
|
||||||
*/
|
|
||||||
public function isConnectedToPrimary(): bool
|
|
||||||
{
|
|
||||||
return $this->_conn !== null && $this->_conn === $this->connections['primary'];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string|null $connectionName
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function connect($connectionName = null)
|
|
||||||
{
|
|
||||||
if ($connectionName !== null) {
|
|
||||||
throw new InvalidArgumentException(
|
|
||||||
'Passing a connection name as first argument is not supported anymore.'
|
|
||||||
. ' Use ensureConnectedToPrimary()/ensureConnectedToReplica() instead.',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->performConnect();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function performConnect(?string $connectionName = null): bool
|
|
||||||
{
|
|
||||||
$requestedConnectionChange = ($connectionName !== null);
|
|
||||||
$connectionName = $connectionName ?? 'replica';
|
|
||||||
|
|
||||||
if ($connectionName !== 'replica' && $connectionName !== 'primary') {
|
|
||||||
throw new InvalidArgumentException('Invalid option to connect(), only primary or replica allowed.');
|
|
||||||
}
|
|
||||||
|
|
||||||
// If we have a connection open, and this is not an explicit connection
|
|
||||||
// change request, then abort right here, because we are already done.
|
|
||||||
// This prevents writes to the replica in case of "keepReplica" option enabled.
|
|
||||||
if ($this->_conn !== null && ! $requestedConnectionChange) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$forcePrimaryAsReplica = false;
|
|
||||||
|
|
||||||
if ($this->getTransactionNestingLevel() > 0) {
|
|
||||||
$connectionName = 'primary';
|
|
||||||
$forcePrimaryAsReplica = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($this->connections[$connectionName])) {
|
|
||||||
$this->_conn = $this->connections[$connectionName];
|
|
||||||
|
|
||||||
if ($forcePrimaryAsReplica && ! $this->keepReplica) {
|
|
||||||
$this->connections['replica'] = $this->_conn;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($connectionName === 'primary') {
|
|
||||||
$this->connections['primary'] = $this->_conn = $this->connectTo($connectionName);
|
|
||||||
|
|
||||||
// Set replica connection to primary to avoid invalid reads
|
|
||||||
if (! $this->keepReplica) {
|
|
||||||
$this->connections['replica'] = $this->connections['primary'];
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$this->connections['replica'] = $this->_conn = $this->connectTo($connectionName);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->_eventManager->hasListeners(Events::postConnect)) {
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/issues/5784',
|
|
||||||
'Subscribing to %s events is deprecated. Implement a middleware instead.',
|
|
||||||
Events::postConnect,
|
|
||||||
);
|
|
||||||
|
|
||||||
$eventArgs = new ConnectionEventArgs($this);
|
|
||||||
$this->_eventManager->dispatchEvent(Events::postConnect, $eventArgs);
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Connects to the primary node of the database cluster.
|
|
||||||
*
|
|
||||||
* All following statements after this will be executed against the primary node.
|
|
||||||
*/
|
|
||||||
public function ensureConnectedToPrimary(): bool
|
|
||||||
{
|
|
||||||
return $this->performConnect('primary');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Connects to a replica node of the database cluster.
|
|
||||||
*
|
|
||||||
* All following statements after this will be executed against the replica node,
|
|
||||||
* unless the keepReplica option is set to false and a primary connection
|
|
||||||
* was already opened.
|
|
||||||
*/
|
|
||||||
public function ensureConnectedToReplica(): bool
|
|
||||||
{
|
|
||||||
return $this->performConnect('replica');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Connects to a specific connection.
|
|
||||||
*
|
|
||||||
* @param string $connectionName
|
|
||||||
*
|
|
||||||
* @return DriverConnection
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
protected function connectTo($connectionName)
|
|
||||||
{
|
|
||||||
$params = $this->getParams();
|
|
||||||
|
|
||||||
$connectionParams = $this->chooseConnectionConfiguration($connectionName, $params);
|
|
||||||
|
|
||||||
try {
|
|
||||||
return $this->_driver->connect($connectionParams);
|
|
||||||
} catch (DriverException $e) {
|
|
||||||
throw $this->convertException($e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $connectionName
|
|
||||||
* @param mixed[] $params
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
protected function chooseConnectionConfiguration(
|
|
||||||
$connectionName,
|
|
||||||
#[SensitiveParameter]
|
|
||||||
$params
|
|
||||||
) {
|
|
||||||
if ($connectionName === 'primary') {
|
|
||||||
return $params['primary'];
|
|
||||||
}
|
|
||||||
|
|
||||||
$config = $params['replica'][array_rand($params['replica'])];
|
|
||||||
|
|
||||||
if (! isset($config['charset']) && isset($params['primary']['charset'])) {
|
|
||||||
$config['charset'] = $params['primary']['charset'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return $config;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function executeStatement($sql, array $params = [], array $types = [])
|
|
||||||
{
|
|
||||||
$this->ensureConnectedToPrimary();
|
|
||||||
|
|
||||||
return parent::executeStatement($sql, $params, $types);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function beginTransaction()
|
|
||||||
{
|
|
||||||
$this->ensureConnectedToPrimary();
|
|
||||||
|
|
||||||
return parent::beginTransaction();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function commit()
|
|
||||||
{
|
|
||||||
$this->ensureConnectedToPrimary();
|
|
||||||
|
|
||||||
return parent::commit();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function rollBack()
|
|
||||||
{
|
|
||||||
$this->ensureConnectedToPrimary();
|
|
||||||
|
|
||||||
return parent::rollBack();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function close()
|
|
||||||
{
|
|
||||||
unset($this->connections['primary'], $this->connections['replica']);
|
|
||||||
|
|
||||||
parent::close();
|
|
||||||
|
|
||||||
$this->_conn = null;
|
|
||||||
$this->connections = ['primary' => null, 'replica' => null];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function createSavepoint($savepoint)
|
|
||||||
{
|
|
||||||
$this->ensureConnectedToPrimary();
|
|
||||||
|
|
||||||
parent::createSavepoint($savepoint);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function releaseSavepoint($savepoint)
|
|
||||||
{
|
|
||||||
$this->ensureConnectedToPrimary();
|
|
||||||
|
|
||||||
parent::releaseSavepoint($savepoint);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function rollbackSavepoint($savepoint)
|
|
||||||
{
|
|
||||||
$this->ensureConnectedToPrimary();
|
|
||||||
|
|
||||||
parent::rollbackSavepoint($savepoint);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function prepare(string $sql): Statement
|
|
||||||
{
|
|
||||||
$this->ensureConnectedToPrimary();
|
|
||||||
|
|
||||||
return parent::prepare($sql);
|
|
||||||
}
|
|
||||||
}
|
|
57
vendor/doctrine/dbal/src/Driver.php
vendored
57
vendor/doctrine/dbal/src/Driver.php
vendored
@ -1,57 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Driver\API\ExceptionConverter;
|
|
||||||
use Doctrine\DBAL\Driver\Connection as DriverConnection;
|
|
||||||
use Doctrine\DBAL\Driver\Exception;
|
|
||||||
use Doctrine\DBAL\Platforms\AbstractPlatform;
|
|
||||||
use Doctrine\DBAL\Schema\AbstractSchemaManager;
|
|
||||||
use SensitiveParameter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Driver interface.
|
|
||||||
* Interface that all DBAL drivers must implement.
|
|
||||||
*
|
|
||||||
* @psalm-import-type Params from DriverManager
|
|
||||||
*/
|
|
||||||
interface Driver
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Attempts to create a connection with the database.
|
|
||||||
*
|
|
||||||
* @param array<string, mixed> $params All connection parameters.
|
|
||||||
* @psalm-param Params $params All connection parameters.
|
|
||||||
*
|
|
||||||
* @return DriverConnection The database connection.
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function connect(
|
|
||||||
#[SensitiveParameter]
|
|
||||||
array $params
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the DatabasePlatform instance that provides all the metadata about
|
|
||||||
* the platform this driver connects to.
|
|
||||||
*
|
|
||||||
* @return AbstractPlatform The database platform.
|
|
||||||
*/
|
|
||||||
public function getDatabasePlatform();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the SchemaManager that can be used to inspect and change the underlying
|
|
||||||
* database schema of the platform this driver connects to.
|
|
||||||
*
|
|
||||||
* @deprecated Use {@link AbstractPlatform::createSchemaManager()} instead.
|
|
||||||
*
|
|
||||||
* @return AbstractSchemaManager
|
|
||||||
*/
|
|
||||||
public function getSchemaManager(Connection $conn, AbstractPlatform $platform);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the ExceptionConverter that can be used to convert driver-level exceptions into DBAL exceptions.
|
|
||||||
*/
|
|
||||||
public function getExceptionConverter(): ExceptionConverter;
|
|
||||||
}
|
|
@ -1,25 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver\API;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Driver\Exception;
|
|
||||||
use Doctrine\DBAL\Exception\DriverException;
|
|
||||||
use Doctrine\DBAL\Query;
|
|
||||||
|
|
||||||
interface ExceptionConverter
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Converts a given driver-level exception into a DBAL-level driver exception.
|
|
||||||
*
|
|
||||||
* Implementors should use the vendor-specific error code and SQLSTATE of the exception
|
|
||||||
* and instantiate the most appropriate specialized {@see DriverException} subclass.
|
|
||||||
*
|
|
||||||
* @param Exception $exception The driver exception to convert.
|
|
||||||
* @param Query|null $query The SQL query that triggered the exception, if any.
|
|
||||||
*
|
|
||||||
* @return DriverException An instance of {@see DriverException} or one of its subclasses.
|
|
||||||
*/
|
|
||||||
public function convert(Exception $exception, ?Query $query): DriverException;
|
|
||||||
}
|
|
@ -1,65 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver\API\IBMDB2;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Driver\API\ExceptionConverter as ExceptionConverterInterface;
|
|
||||||
use Doctrine\DBAL\Driver\Exception;
|
|
||||||
use Doctrine\DBAL\Exception\ConnectionException;
|
|
||||||
use Doctrine\DBAL\Exception\DriverException;
|
|
||||||
use Doctrine\DBAL\Exception\ForeignKeyConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Exception\InvalidFieldNameException;
|
|
||||||
use Doctrine\DBAL\Exception\NonUniqueFieldNameException;
|
|
||||||
use Doctrine\DBAL\Exception\NotNullConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Exception\SyntaxErrorException;
|
|
||||||
use Doctrine\DBAL\Exception\TableExistsException;
|
|
||||||
use Doctrine\DBAL\Exception\TableNotFoundException;
|
|
||||||
use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Query;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @internal
|
|
||||||
*
|
|
||||||
* @link https://www.ibm.com/docs/en/db2/11.5?topic=messages-sql
|
|
||||||
*/
|
|
||||||
final class ExceptionConverter implements ExceptionConverterInterface
|
|
||||||
{
|
|
||||||
public function convert(Exception $exception, ?Query $query): DriverException
|
|
||||||
{
|
|
||||||
switch ($exception->getCode()) {
|
|
||||||
case -104:
|
|
||||||
return new SyntaxErrorException($exception, $query);
|
|
||||||
|
|
||||||
case -203:
|
|
||||||
return new NonUniqueFieldNameException($exception, $query);
|
|
||||||
|
|
||||||
case -204:
|
|
||||||
return new TableNotFoundException($exception, $query);
|
|
||||||
|
|
||||||
case -206:
|
|
||||||
return new InvalidFieldNameException($exception, $query);
|
|
||||||
|
|
||||||
case -407:
|
|
||||||
return new NotNullConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case -530:
|
|
||||||
case -531:
|
|
||||||
case -532:
|
|
||||||
case -20356:
|
|
||||||
return new ForeignKeyConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case -601:
|
|
||||||
return new TableExistsException($exception, $query);
|
|
||||||
|
|
||||||
case -803:
|
|
||||||
return new UniqueConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case -1336:
|
|
||||||
case -30082:
|
|
||||||
return new ConnectionException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new DriverException($exception, $query);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,120 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver\API\MySQL;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Driver\API\ExceptionConverter as ExceptionConverterInterface;
|
|
||||||
use Doctrine\DBAL\Driver\Exception;
|
|
||||||
use Doctrine\DBAL\Exception\ConnectionException;
|
|
||||||
use Doctrine\DBAL\Exception\ConnectionLost;
|
|
||||||
use Doctrine\DBAL\Exception\DatabaseDoesNotExist;
|
|
||||||
use Doctrine\DBAL\Exception\DeadlockException;
|
|
||||||
use Doctrine\DBAL\Exception\DriverException;
|
|
||||||
use Doctrine\DBAL\Exception\ForeignKeyConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Exception\InvalidFieldNameException;
|
|
||||||
use Doctrine\DBAL\Exception\LockWaitTimeoutException;
|
|
||||||
use Doctrine\DBAL\Exception\NonUniqueFieldNameException;
|
|
||||||
use Doctrine\DBAL\Exception\NotNullConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Exception\SyntaxErrorException;
|
|
||||||
use Doctrine\DBAL\Exception\TableExistsException;
|
|
||||||
use Doctrine\DBAL\Exception\TableNotFoundException;
|
|
||||||
use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Query;
|
|
||||||
|
|
||||||
/** @internal */
|
|
||||||
final class ExceptionConverter implements ExceptionConverterInterface
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @link https://dev.mysql.com/doc/mysql-errors/8.0/en/client-error-reference.html
|
|
||||||
* @link https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html
|
|
||||||
*/
|
|
||||||
public function convert(Exception $exception, ?Query $query): DriverException
|
|
||||||
{
|
|
||||||
switch ($exception->getCode()) {
|
|
||||||
case 1008:
|
|
||||||
return new DatabaseDoesNotExist($exception, $query);
|
|
||||||
|
|
||||||
case 1213:
|
|
||||||
return new DeadlockException($exception, $query);
|
|
||||||
|
|
||||||
case 1205:
|
|
||||||
return new LockWaitTimeoutException($exception, $query);
|
|
||||||
|
|
||||||
case 1050:
|
|
||||||
return new TableExistsException($exception, $query);
|
|
||||||
|
|
||||||
case 1051:
|
|
||||||
case 1146:
|
|
||||||
return new TableNotFoundException($exception, $query);
|
|
||||||
|
|
||||||
case 1216:
|
|
||||||
case 1217:
|
|
||||||
case 1451:
|
|
||||||
case 1452:
|
|
||||||
case 1701:
|
|
||||||
return new ForeignKeyConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case 1062:
|
|
||||||
case 1557:
|
|
||||||
case 1569:
|
|
||||||
case 1586:
|
|
||||||
return new UniqueConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case 1054:
|
|
||||||
case 1166:
|
|
||||||
case 1611:
|
|
||||||
return new InvalidFieldNameException($exception, $query);
|
|
||||||
|
|
||||||
case 1052:
|
|
||||||
case 1060:
|
|
||||||
case 1110:
|
|
||||||
return new NonUniqueFieldNameException($exception, $query);
|
|
||||||
|
|
||||||
case 1064:
|
|
||||||
case 1149:
|
|
||||||
case 1287:
|
|
||||||
case 1341:
|
|
||||||
case 1342:
|
|
||||||
case 1343:
|
|
||||||
case 1344:
|
|
||||||
case 1382:
|
|
||||||
case 1479:
|
|
||||||
case 1541:
|
|
||||||
case 1554:
|
|
||||||
case 1626:
|
|
||||||
return new SyntaxErrorException($exception, $query);
|
|
||||||
|
|
||||||
case 1044:
|
|
||||||
case 1045:
|
|
||||||
case 1046:
|
|
||||||
case 1049:
|
|
||||||
case 1095:
|
|
||||||
case 1142:
|
|
||||||
case 1143:
|
|
||||||
case 1227:
|
|
||||||
case 1370:
|
|
||||||
case 1429:
|
|
||||||
case 2002:
|
|
||||||
case 2005:
|
|
||||||
case 2054:
|
|
||||||
return new ConnectionException($exception, $query);
|
|
||||||
|
|
||||||
case 2006:
|
|
||||||
case 4031:
|
|
||||||
return new ConnectionLost($exception, $query);
|
|
||||||
|
|
||||||
case 1048:
|
|
||||||
case 1121:
|
|
||||||
case 1138:
|
|
||||||
case 1171:
|
|
||||||
case 1252:
|
|
||||||
case 1263:
|
|
||||||
case 1364:
|
|
||||||
case 1566:
|
|
||||||
return new NotNullConstraintViolationException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new DriverException($exception, $query);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,74 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver\API\OCI;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Driver\API\ExceptionConverter as ExceptionConverterInterface;
|
|
||||||
use Doctrine\DBAL\Driver\Exception;
|
|
||||||
use Doctrine\DBAL\Exception\ConnectionException;
|
|
||||||
use Doctrine\DBAL\Exception\DatabaseDoesNotExist;
|
|
||||||
use Doctrine\DBAL\Exception\DatabaseObjectNotFoundException;
|
|
||||||
use Doctrine\DBAL\Exception\DriverException;
|
|
||||||
use Doctrine\DBAL\Exception\ForeignKeyConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Exception\InvalidFieldNameException;
|
|
||||||
use Doctrine\DBAL\Exception\NonUniqueFieldNameException;
|
|
||||||
use Doctrine\DBAL\Exception\NotNullConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Exception\SyntaxErrorException;
|
|
||||||
use Doctrine\DBAL\Exception\TableExistsException;
|
|
||||||
use Doctrine\DBAL\Exception\TableNotFoundException;
|
|
||||||
use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Query;
|
|
||||||
|
|
||||||
/** @internal */
|
|
||||||
final class ExceptionConverter implements ExceptionConverterInterface
|
|
||||||
{
|
|
||||||
/** @link http://www.dba-oracle.com/t_error_code_list.htm */
|
|
||||||
public function convert(Exception $exception, ?Query $query): DriverException
|
|
||||||
{
|
|
||||||
switch ($exception->getCode()) {
|
|
||||||
case 1:
|
|
||||||
case 2299:
|
|
||||||
case 38911:
|
|
||||||
return new UniqueConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case 904:
|
|
||||||
return new InvalidFieldNameException($exception, $query);
|
|
||||||
|
|
||||||
case 918:
|
|
||||||
case 960:
|
|
||||||
return new NonUniqueFieldNameException($exception, $query);
|
|
||||||
|
|
||||||
case 923:
|
|
||||||
return new SyntaxErrorException($exception, $query);
|
|
||||||
|
|
||||||
case 942:
|
|
||||||
return new TableNotFoundException($exception, $query);
|
|
||||||
|
|
||||||
case 955:
|
|
||||||
return new TableExistsException($exception, $query);
|
|
||||||
|
|
||||||
case 1017:
|
|
||||||
case 12545:
|
|
||||||
return new ConnectionException($exception, $query);
|
|
||||||
|
|
||||||
case 1400:
|
|
||||||
return new NotNullConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case 1918:
|
|
||||||
return new DatabaseDoesNotExist($exception, $query);
|
|
||||||
|
|
||||||
case 2289:
|
|
||||||
case 2443:
|
|
||||||
case 4080:
|
|
||||||
return new DatabaseObjectNotFoundException($exception, $query);
|
|
||||||
|
|
||||||
case 2266:
|
|
||||||
case 2291:
|
|
||||||
case 2292:
|
|
||||||
return new ForeignKeyConstraintViolationException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new DriverException($exception, $query);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,89 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver\API\PostgreSQL;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Driver\API\ExceptionConverter as ExceptionConverterInterface;
|
|
||||||
use Doctrine\DBAL\Driver\Exception;
|
|
||||||
use Doctrine\DBAL\Exception\ConnectionException;
|
|
||||||
use Doctrine\DBAL\Exception\DatabaseDoesNotExist;
|
|
||||||
use Doctrine\DBAL\Exception\DeadlockException;
|
|
||||||
use Doctrine\DBAL\Exception\DriverException;
|
|
||||||
use Doctrine\DBAL\Exception\ForeignKeyConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Exception\InvalidFieldNameException;
|
|
||||||
use Doctrine\DBAL\Exception\NonUniqueFieldNameException;
|
|
||||||
use Doctrine\DBAL\Exception\NotNullConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Exception\SchemaDoesNotExist;
|
|
||||||
use Doctrine\DBAL\Exception\SyntaxErrorException;
|
|
||||||
use Doctrine\DBAL\Exception\TableExistsException;
|
|
||||||
use Doctrine\DBAL\Exception\TableNotFoundException;
|
|
||||||
use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Query;
|
|
||||||
|
|
||||||
use function strpos;
|
|
||||||
|
|
||||||
/** @internal */
|
|
||||||
final class ExceptionConverter implements ExceptionConverterInterface
|
|
||||||
{
|
|
||||||
/** @link http://www.postgresql.org/docs/9.4/static/errcodes-appendix.html */
|
|
||||||
public function convert(Exception $exception, ?Query $query): DriverException
|
|
||||||
{
|
|
||||||
switch ($exception->getSQLState()) {
|
|
||||||
case '40001':
|
|
||||||
case '40P01':
|
|
||||||
return new DeadlockException($exception, $query);
|
|
||||||
|
|
||||||
case '0A000':
|
|
||||||
// Foreign key constraint violations during a TRUNCATE operation
|
|
||||||
// are considered "feature not supported" in PostgreSQL.
|
|
||||||
if (strpos($exception->getMessage(), 'truncate') !== false) {
|
|
||||||
return new ForeignKeyConstraintViolationException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case '23502':
|
|
||||||
return new NotNullConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case '23503':
|
|
||||||
return new ForeignKeyConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case '23505':
|
|
||||||
return new UniqueConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case '3D000':
|
|
||||||
return new DatabaseDoesNotExist($exception, $query);
|
|
||||||
|
|
||||||
case '3F000':
|
|
||||||
return new SchemaDoesNotExist($exception, $query);
|
|
||||||
|
|
||||||
case '42601':
|
|
||||||
return new SyntaxErrorException($exception, $query);
|
|
||||||
|
|
||||||
case '42702':
|
|
||||||
return new NonUniqueFieldNameException($exception, $query);
|
|
||||||
|
|
||||||
case '42703':
|
|
||||||
return new InvalidFieldNameException($exception, $query);
|
|
||||||
|
|
||||||
case '42P01':
|
|
||||||
return new TableNotFoundException($exception, $query);
|
|
||||||
|
|
||||||
case '42P07':
|
|
||||||
return new TableExistsException($exception, $query);
|
|
||||||
|
|
||||||
case '08006':
|
|
||||||
return new ConnectionException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Prior to fixing https://bugs.php.net/bug.php?id=64705 (PHP 7.4.10),
|
|
||||||
// in some cases (mainly connection errors) the PDO exception wouldn't provide a SQLSTATE via its code.
|
|
||||||
// We have to match against the SQLSTATE in the error message in these cases.
|
|
||||||
if ($exception->getCode() === 7 && strpos($exception->getMessage(), 'SQLSTATE[08006]') !== false) {
|
|
||||||
return new ConnectionException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new DriverException($exception, $query);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,69 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver\API\SQLSrv;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Driver\API\ExceptionConverter as ExceptionConverterInterface;
|
|
||||||
use Doctrine\DBAL\Driver\Exception;
|
|
||||||
use Doctrine\DBAL\Exception\ConnectionException;
|
|
||||||
use Doctrine\DBAL\Exception\DatabaseObjectNotFoundException;
|
|
||||||
use Doctrine\DBAL\Exception\DriverException;
|
|
||||||
use Doctrine\DBAL\Exception\ForeignKeyConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Exception\InvalidFieldNameException;
|
|
||||||
use Doctrine\DBAL\Exception\NonUniqueFieldNameException;
|
|
||||||
use Doctrine\DBAL\Exception\NotNullConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Exception\SyntaxErrorException;
|
|
||||||
use Doctrine\DBAL\Exception\TableExistsException;
|
|
||||||
use Doctrine\DBAL\Exception\TableNotFoundException;
|
|
||||||
use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Query;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @internal
|
|
||||||
*
|
|
||||||
* @link https://docs.microsoft.com/en-us/sql/relational-databases/errors-events/database-engine-events-and-errors
|
|
||||||
*/
|
|
||||||
final class ExceptionConverter implements ExceptionConverterInterface
|
|
||||||
{
|
|
||||||
public function convert(Exception $exception, ?Query $query): DriverException
|
|
||||||
{
|
|
||||||
switch ($exception->getCode()) {
|
|
||||||
case 102:
|
|
||||||
return new SyntaxErrorException($exception, $query);
|
|
||||||
|
|
||||||
case 207:
|
|
||||||
return new InvalidFieldNameException($exception, $query);
|
|
||||||
|
|
||||||
case 208:
|
|
||||||
return new TableNotFoundException($exception, $query);
|
|
||||||
|
|
||||||
case 209:
|
|
||||||
return new NonUniqueFieldNameException($exception, $query);
|
|
||||||
|
|
||||||
case 515:
|
|
||||||
return new NotNullConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case 547:
|
|
||||||
case 4712:
|
|
||||||
return new ForeignKeyConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case 2601:
|
|
||||||
case 2627:
|
|
||||||
return new UniqueConstraintViolationException($exception, $query);
|
|
||||||
|
|
||||||
case 2714:
|
|
||||||
return new TableExistsException($exception, $query);
|
|
||||||
|
|
||||||
case 3701:
|
|
||||||
case 15151:
|
|
||||||
return new DatabaseObjectNotFoundException($exception, $query);
|
|
||||||
|
|
||||||
case 11001:
|
|
||||||
case 18456:
|
|
||||||
return new ConnectionException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new DriverException($exception, $query);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,85 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver\API\SQLite;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Driver\API\ExceptionConverter as ExceptionConverterInterface;
|
|
||||||
use Doctrine\DBAL\Driver\Exception;
|
|
||||||
use Doctrine\DBAL\Exception\ConnectionException;
|
|
||||||
use Doctrine\DBAL\Exception\DriverException;
|
|
||||||
use Doctrine\DBAL\Exception\ForeignKeyConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Exception\InvalidFieldNameException;
|
|
||||||
use Doctrine\DBAL\Exception\LockWaitTimeoutException;
|
|
||||||
use Doctrine\DBAL\Exception\NonUniqueFieldNameException;
|
|
||||||
use Doctrine\DBAL\Exception\NotNullConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Exception\ReadOnlyException;
|
|
||||||
use Doctrine\DBAL\Exception\SyntaxErrorException;
|
|
||||||
use Doctrine\DBAL\Exception\TableExistsException;
|
|
||||||
use Doctrine\DBAL\Exception\TableNotFoundException;
|
|
||||||
use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
|
|
||||||
use Doctrine\DBAL\Query;
|
|
||||||
|
|
||||||
use function strpos;
|
|
||||||
|
|
||||||
/** @internal */
|
|
||||||
final class ExceptionConverter implements ExceptionConverterInterface
|
|
||||||
{
|
|
||||||
/** @link http://www.sqlite.org/c3ref/c_abort.html */
|
|
||||||
public function convert(Exception $exception, ?Query $query): DriverException
|
|
||||||
{
|
|
||||||
if (strpos($exception->getMessage(), 'database is locked') !== false) {
|
|
||||||
return new LockWaitTimeoutException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
|
||||||
strpos($exception->getMessage(), 'must be unique') !== false ||
|
|
||||||
strpos($exception->getMessage(), 'is not unique') !== false ||
|
|
||||||
strpos($exception->getMessage(), 'are not unique') !== false ||
|
|
||||||
strpos($exception->getMessage(), 'UNIQUE constraint failed') !== false
|
|
||||||
) {
|
|
||||||
return new UniqueConstraintViolationException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
|
||||||
strpos($exception->getMessage(), 'may not be NULL') !== false ||
|
|
||||||
strpos($exception->getMessage(), 'NOT NULL constraint failed') !== false
|
|
||||||
) {
|
|
||||||
return new NotNullConstraintViolationException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strpos($exception->getMessage(), 'no such table:') !== false) {
|
|
||||||
return new TableNotFoundException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strpos($exception->getMessage(), 'already exists') !== false) {
|
|
||||||
return new TableExistsException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strpos($exception->getMessage(), 'has no column named') !== false) {
|
|
||||||
return new InvalidFieldNameException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strpos($exception->getMessage(), 'ambiguous column name') !== false) {
|
|
||||||
return new NonUniqueFieldNameException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strpos($exception->getMessage(), 'syntax error') !== false) {
|
|
||||||
return new SyntaxErrorException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strpos($exception->getMessage(), 'attempt to write a readonly database') !== false) {
|
|
||||||
return new ReadOnlyException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strpos($exception->getMessage(), 'unable to open database file') !== false) {
|
|
||||||
return new ConnectionException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strpos($exception->getMessage(), 'FOREIGN KEY constraint failed') !== false) {
|
|
||||||
return new ForeignKeyConstraintViolationException($exception, $query);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new DriverException($exception, $query);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,80 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver\API\SQLite;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Platforms\AbstractPlatform;
|
|
||||||
use Doctrine\DBAL\Platforms\SqlitePlatform;
|
|
||||||
use Doctrine\Deprecations\Deprecation;
|
|
||||||
|
|
||||||
use function array_merge;
|
|
||||||
use function strpos;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* User-defined SQLite functions.
|
|
||||||
*
|
|
||||||
* @internal
|
|
||||||
*/
|
|
||||||
final class UserDefinedFunctions
|
|
||||||
{
|
|
||||||
private const DEFAULT_FUNCTIONS = [
|
|
||||||
'sqrt' => ['callback' => [SqlitePlatform::class, 'udfSqrt'], 'numArgs' => 1],
|
|
||||||
'mod' => ['callback' => [SqlitePlatform::class, 'udfMod'], 'numArgs' => 2],
|
|
||||||
'locate' => ['callback' => [SqlitePlatform::class, 'udfLocate'], 'numArgs' => -1],
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param callable(string, callable, int): bool $callback
|
|
||||||
* @param array<string, array{callback: callable, numArgs: int}> $additionalFunctions
|
|
||||||
*/
|
|
||||||
public static function register(callable $callback, array $additionalFunctions = []): void
|
|
||||||
{
|
|
||||||
$userDefinedFunctions = array_merge(self::DEFAULT_FUNCTIONS, $additionalFunctions);
|
|
||||||
|
|
||||||
foreach ($userDefinedFunctions as $function => $data) {
|
|
||||||
$callback($function, $data['callback'], $data['numArgs']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* User-defined function that implements MOD().
|
|
||||||
*
|
|
||||||
* @param int $a
|
|
||||||
* @param int $b
|
|
||||||
*/
|
|
||||||
public static function mod($a, $b): int
|
|
||||||
{
|
|
||||||
return $a % $b;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* User-defined function that implements LOCATE().
|
|
||||||
*
|
|
||||||
* @param string $str
|
|
||||||
* @param string $substr
|
|
||||||
* @param int $offset
|
|
||||||
*/
|
|
||||||
public static function locate($str, $substr, $offset = 0): int
|
|
||||||
{
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5749',
|
|
||||||
'Relying on DBAL\'s emulated LOCATE() function is deprecated. '
|
|
||||||
. 'Use INSTR() or %s::getLocateExpression() instead.',
|
|
||||||
AbstractPlatform::class,
|
|
||||||
);
|
|
||||||
|
|
||||||
// SQL's LOCATE function works on 1-based positions, while PHP's strpos works on 0-based positions.
|
|
||||||
// So we have to make them compatible if an offset is given.
|
|
||||||
if ($offset > 0) {
|
|
||||||
$offset -= 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
$pos = strpos($str, $substr, $offset);
|
|
||||||
|
|
||||||
if ($pos !== false) {
|
|
||||||
return $pos + 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,100 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Connection;
|
|
||||||
use Doctrine\DBAL\Driver\API\ExceptionConverter as ExceptionConverterInterface;
|
|
||||||
use Doctrine\DBAL\Driver\API\IBMDB2\ExceptionConverter;
|
|
||||||
use Doctrine\DBAL\Exception as DBALException;
|
|
||||||
use Doctrine\DBAL\Platforms\AbstractPlatform;
|
|
||||||
use Doctrine\DBAL\Platforms\DB2111Platform;
|
|
||||||
use Doctrine\DBAL\Platforms\DB2Platform;
|
|
||||||
use Doctrine\DBAL\Schema\DB2SchemaManager;
|
|
||||||
use Doctrine\DBAL\VersionAwarePlatformDriver;
|
|
||||||
use Doctrine\Deprecations\Deprecation;
|
|
||||||
|
|
||||||
use function assert;
|
|
||||||
use function preg_match;
|
|
||||||
use function version_compare;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstract base implementation of the {@see Driver} interface for IBM DB2 based drivers.
|
|
||||||
*/
|
|
||||||
abstract class AbstractDB2Driver implements VersionAwarePlatformDriver
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getDatabasePlatform()
|
|
||||||
{
|
|
||||||
return new DB2Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @deprecated Use {@link DB2Platform::createSchemaManager()} instead.
|
|
||||||
*/
|
|
||||||
public function getSchemaManager(Connection $conn, AbstractPlatform $platform)
|
|
||||||
{
|
|
||||||
Deprecation::triggerIfCalledFromOutside(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5458',
|
|
||||||
'AbstractDB2Driver::getSchemaManager() is deprecated.'
|
|
||||||
. ' Use DB2Platform::createSchemaManager() instead.',
|
|
||||||
);
|
|
||||||
|
|
||||||
assert($platform instanceof DB2Platform);
|
|
||||||
|
|
||||||
return new DB2SchemaManager($conn, $platform);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getExceptionConverter(): ExceptionConverterInterface
|
|
||||||
{
|
|
||||||
return new ExceptionConverter();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function createDatabasePlatformForVersion($version)
|
|
||||||
{
|
|
||||||
if (version_compare($this->getVersionNumber($version), '11.1', '>=')) {
|
|
||||||
return new DB2111Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5156',
|
|
||||||
'IBM DB2 < 11.1 support is deprecated and will be removed in DBAL 4.'
|
|
||||||
. ' Consider upgrading to IBM DB2 11.1 or later.',
|
|
||||||
);
|
|
||||||
|
|
||||||
return $this->getDatabasePlatform();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Detects IBM DB2 server version
|
|
||||||
*
|
|
||||||
* @param string $versionString Version string as returned by IBM DB2 server, i.e. 'DB2/LINUXX8664 11.5.8.0'
|
|
||||||
*
|
|
||||||
* @throws DBALException
|
|
||||||
*/
|
|
||||||
private function getVersionNumber(string $versionString): string
|
|
||||||
{
|
|
||||||
if (
|
|
||||||
preg_match(
|
|
||||||
'/^(?:[^\s]+\s)?(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)/i',
|
|
||||||
$versionString,
|
|
||||||
$versionParts,
|
|
||||||
) !== 1
|
|
||||||
) {
|
|
||||||
throw DBALException::invalidPlatformVersionSpecified(
|
|
||||||
$versionString,
|
|
||||||
'^(?:[^\s]+\s)?<major_version>.<minor_version>.<patch_version>',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $versionParts['major'] . '.' . $versionParts['minor'] . '.' . $versionParts['patch'];
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,44 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver;
|
|
||||||
|
|
||||||
use Exception as BaseException;
|
|
||||||
use Throwable;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Base implementation of the {@see Exception} interface.
|
|
||||||
*
|
|
||||||
* @internal
|
|
||||||
*
|
|
||||||
* @psalm-immutable
|
|
||||||
*/
|
|
||||||
abstract class AbstractException extends BaseException implements Exception
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* The SQLSTATE of the driver.
|
|
||||||
*/
|
|
||||||
private ?string $sqlState = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $message The driver error message.
|
|
||||||
* @param string|null $sqlState The SQLSTATE the driver is in at the time the error occurred, if any.
|
|
||||||
* @param int $code The driver specific error code if any.
|
|
||||||
* @param Throwable|null $previous The previous throwable used for the exception chaining.
|
|
||||||
*/
|
|
||||||
public function __construct($message, $sqlState = null, $code = 0, ?Throwable $previous = null)
|
|
||||||
{
|
|
||||||
parent::__construct($message, $code, $previous);
|
|
||||||
|
|
||||||
$this->sqlState = $sqlState;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getSQLState()
|
|
||||||
{
|
|
||||||
return $this->sqlState;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,231 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Connection;
|
|
||||||
use Doctrine\DBAL\Driver\API\ExceptionConverter;
|
|
||||||
use Doctrine\DBAL\Driver\API\MySQL;
|
|
||||||
use Doctrine\DBAL\Exception;
|
|
||||||
use Doctrine\DBAL\Platforms\AbstractMySQLPlatform;
|
|
||||||
use Doctrine\DBAL\Platforms\AbstractPlatform;
|
|
||||||
use Doctrine\DBAL\Platforms\MariaDb1010Platform;
|
|
||||||
use Doctrine\DBAL\Platforms\MariaDb1027Platform;
|
|
||||||
use Doctrine\DBAL\Platforms\MariaDb1043Platform;
|
|
||||||
use Doctrine\DBAL\Platforms\MariaDb1052Platform;
|
|
||||||
use Doctrine\DBAL\Platforms\MariaDb1060Platform;
|
|
||||||
use Doctrine\DBAL\Platforms\MySQL57Platform;
|
|
||||||
use Doctrine\DBAL\Platforms\MySQL80Platform;
|
|
||||||
use Doctrine\DBAL\Platforms\MySQL84Platform;
|
|
||||||
use Doctrine\DBAL\Platforms\MySQLPlatform;
|
|
||||||
use Doctrine\DBAL\Schema\MySQLSchemaManager;
|
|
||||||
use Doctrine\DBAL\VersionAwarePlatformDriver;
|
|
||||||
use Doctrine\Deprecations\Deprecation;
|
|
||||||
|
|
||||||
use function assert;
|
|
||||||
use function preg_match;
|
|
||||||
use function stripos;
|
|
||||||
use function version_compare;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstract base implementation of the {@see Driver} interface for MySQL based drivers.
|
|
||||||
*/
|
|
||||||
abstract class AbstractMySQLDriver implements VersionAwarePlatformDriver
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function createDatabasePlatformForVersion($version)
|
|
||||||
{
|
|
||||||
$mariadb = stripos($version, 'mariadb') !== false;
|
|
||||||
|
|
||||||
if ($mariadb) {
|
|
||||||
$mariaDbVersion = $this->getMariaDbMysqlVersionNumber($version);
|
|
||||||
if (version_compare($mariaDbVersion, '10.10.0', '>=')) {
|
|
||||||
return new MariaDb1010Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (version_compare($mariaDbVersion, '10.6.0', '>=')) {
|
|
||||||
return new MariaDb1060Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (version_compare($mariaDbVersion, '10.5.2', '>=')) {
|
|
||||||
return new MariaDb1052Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (version_compare($mariaDbVersion, '10.4.3', '>=')) {
|
|
||||||
return new MariaDb1043Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/6110',
|
|
||||||
'Support for MariaDB < 10.4 is deprecated and will be removed in DBAL 4.'
|
|
||||||
. ' Consider upgrading to a more recent version of MariaDB.',
|
|
||||||
);
|
|
||||||
|
|
||||||
if (version_compare($mariaDbVersion, '10.2.7', '>=')) {
|
|
||||||
return new MariaDb1027Platform();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$oracleMysqlVersion = $this->getOracleMysqlVersionNumber($version);
|
|
||||||
|
|
||||||
if (version_compare($oracleMysqlVersion, '8.4.0', '>=')) {
|
|
||||||
if (! version_compare($version, '8.4.0', '>=')) {
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/orm',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5779',
|
|
||||||
'Version detection logic for MySQL will change in DBAL 4. '
|
|
||||||
. 'Please specify the version as the server reports it, e.g. "8.4.0" instead of "8.4".',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new MySQL84Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (version_compare($oracleMysqlVersion, '8', '>=')) {
|
|
||||||
if (! version_compare($version, '8.0.0', '>=')) {
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/orm',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5779',
|
|
||||||
'Version detection logic for MySQL will change in DBAL 4. '
|
|
||||||
. 'Please specify the version as the server reports it, e.g. "8.0.31" instead of "8".',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new MySQL80Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (version_compare($oracleMysqlVersion, '5.7.9', '>=')) {
|
|
||||||
if (! version_compare($version, '5.7.9', '>=')) {
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/orm',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5779',
|
|
||||||
'Version detection logic for MySQL will change in DBAL 4. '
|
|
||||||
. 'Please specify the version as the server reports it, e.g. "5.7.40" instead of "5.7".',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new MySQL57Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5072',
|
|
||||||
'MySQL 5.6 support is deprecated and will be removed in DBAL 4.'
|
|
||||||
. ' Consider upgrading to MySQL 5.7 or later.',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->getDatabasePlatform();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a normalized 'version number' from the server string
|
|
||||||
* returned by Oracle MySQL servers.
|
|
||||||
*
|
|
||||||
* @param string $versionString Version string returned by the driver, i.e. '5.7.10'
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
private function getOracleMysqlVersionNumber(string $versionString): string
|
|
||||||
{
|
|
||||||
if (
|
|
||||||
preg_match(
|
|
||||||
'/^(?P<major>\d+)(?:\.(?P<minor>\d+)(?:\.(?P<patch>\d+))?)?/',
|
|
||||||
$versionString,
|
|
||||||
$versionParts,
|
|
||||||
) !== 1
|
|
||||||
) {
|
|
||||||
throw Exception::invalidPlatformVersionSpecified(
|
|
||||||
$versionString,
|
|
||||||
'<major_version>.<minor_version>.<patch_version>',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
$majorVersion = $versionParts['major'];
|
|
||||||
$minorVersion = $versionParts['minor'] ?? 0;
|
|
||||||
$patchVersion = $versionParts['patch'] ?? null;
|
|
||||||
|
|
||||||
if ($majorVersion === '5' && $minorVersion === '7') {
|
|
||||||
$patchVersion ??= '9';
|
|
||||||
} else {
|
|
||||||
$patchVersion ??= '0';
|
|
||||||
}
|
|
||||||
|
|
||||||
return $majorVersion . '.' . $minorVersion . '.' . $patchVersion;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Detect MariaDB server version, including hack for some mariadb distributions
|
|
||||||
* that starts with the prefix '5.5.5-'
|
|
||||||
*
|
|
||||||
* @param string $versionString Version string as returned by mariadb server, i.e. '5.5.5-Mariadb-10.0.8-xenial'
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
private function getMariaDbMysqlVersionNumber(string $versionString): string
|
|
||||||
{
|
|
||||||
if (stripos($versionString, 'MariaDB') === 0) {
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/orm',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5779',
|
|
||||||
'Version detection logic for MySQL will change in DBAL 4. '
|
|
||||||
. 'Please specify the version as the server reports it, '
|
|
||||||
. 'e.g. "10.9.3-MariaDB" instead of "mariadb-10.9".',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
|
||||||
preg_match(
|
|
||||||
'/^(?:5\.5\.5-)?(mariadb-)?(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)/i',
|
|
||||||
$versionString,
|
|
||||||
$versionParts,
|
|
||||||
) !== 1
|
|
||||||
) {
|
|
||||||
throw Exception::invalidPlatformVersionSpecified(
|
|
||||||
$versionString,
|
|
||||||
'^(?:5\.5\.5-)?(mariadb-)?<major_version>.<minor_version>.<patch_version>',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $versionParts['major'] . '.' . $versionParts['minor'] . '.' . $versionParts['patch'];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @return AbstractMySQLPlatform
|
|
||||||
*/
|
|
||||||
public function getDatabasePlatform()
|
|
||||||
{
|
|
||||||
return new MySQLPlatform();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @deprecated Use {@link AbstractMySQLPlatform::createSchemaManager()} instead.
|
|
||||||
*
|
|
||||||
* @return MySQLSchemaManager
|
|
||||||
*/
|
|
||||||
public function getSchemaManager(Connection $conn, AbstractPlatform $platform)
|
|
||||||
{
|
|
||||||
Deprecation::triggerIfCalledFromOutside(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5458',
|
|
||||||
'AbstractMySQLDriver::getSchemaManager() is deprecated.'
|
|
||||||
. ' Use MySQLPlatform::createSchemaManager() instead.',
|
|
||||||
);
|
|
||||||
|
|
||||||
assert($platform instanceof AbstractMySQLPlatform);
|
|
||||||
|
|
||||||
return new MySQLSchemaManager($conn, $platform);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getExceptionConverter(): ExceptionConverter
|
|
||||||
{
|
|
||||||
return new MySQL\ExceptionConverter();
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,65 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Connection;
|
|
||||||
use Doctrine\DBAL\Driver;
|
|
||||||
use Doctrine\DBAL\Driver\AbstractOracleDriver\EasyConnectString;
|
|
||||||
use Doctrine\DBAL\Driver\API\ExceptionConverter;
|
|
||||||
use Doctrine\DBAL\Driver\API\OCI;
|
|
||||||
use Doctrine\DBAL\Platforms\AbstractPlatform;
|
|
||||||
use Doctrine\DBAL\Platforms\OraclePlatform;
|
|
||||||
use Doctrine\DBAL\Schema\OracleSchemaManager;
|
|
||||||
use Doctrine\Deprecations\Deprecation;
|
|
||||||
|
|
||||||
use function assert;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstract base implementation of the {@see Driver} interface for Oracle based drivers.
|
|
||||||
*/
|
|
||||||
abstract class AbstractOracleDriver implements Driver
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getDatabasePlatform()
|
|
||||||
{
|
|
||||||
return new OraclePlatform();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @deprecated Use {@link OraclePlatform::createSchemaManager()} instead.
|
|
||||||
*/
|
|
||||||
public function getSchemaManager(Connection $conn, AbstractPlatform $platform)
|
|
||||||
{
|
|
||||||
Deprecation::triggerIfCalledFromOutside(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5458',
|
|
||||||
'AbstractOracleDriver::getSchemaManager() is deprecated.'
|
|
||||||
. ' Use OraclePlatform::createSchemaManager() instead.',
|
|
||||||
);
|
|
||||||
|
|
||||||
assert($platform instanceof OraclePlatform);
|
|
||||||
|
|
||||||
return new OracleSchemaManager($conn, $platform);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getExceptionConverter(): ExceptionConverter
|
|
||||||
{
|
|
||||||
return new OCI\ExceptionConverter();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns an appropriate Easy Connect String for the given parameters.
|
|
||||||
*
|
|
||||||
* @param array<string, mixed> $params The connection parameters to return the Easy Connect String for.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
protected function getEasyConnectString(array $params)
|
|
||||||
{
|
|
||||||
return (string) EasyConnectString::fromConnectionParameters($params);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,116 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver\AbstractOracleDriver;
|
|
||||||
|
|
||||||
use function implode;
|
|
||||||
use function is_array;
|
|
||||||
use function sprintf;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Represents an Oracle Easy Connect string
|
|
||||||
*
|
|
||||||
* @link https://docs.oracle.com/database/121/NETAG/naming.htm
|
|
||||||
*/
|
|
||||||
final class EasyConnectString
|
|
||||||
{
|
|
||||||
private string $string;
|
|
||||||
|
|
||||||
private function __construct(string $string)
|
|
||||||
{
|
|
||||||
$this->string = $string;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function __toString(): string
|
|
||||||
{
|
|
||||||
return $this->string;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates the object from an array representation
|
|
||||||
*
|
|
||||||
* @param mixed[] $params
|
|
||||||
*/
|
|
||||||
public static function fromArray(array $params): self
|
|
||||||
{
|
|
||||||
return new self(self::renderParams($params));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates the object from the given DBAL connection parameters.
|
|
||||||
*
|
|
||||||
* @param mixed[] $params
|
|
||||||
*/
|
|
||||||
public static function fromConnectionParameters(array $params): self
|
|
||||||
{
|
|
||||||
if (isset($params['connectstring'])) {
|
|
||||||
return new self($params['connectstring']);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! isset($params['host'])) {
|
|
||||||
return new self($params['dbname'] ?? '');
|
|
||||||
}
|
|
||||||
|
|
||||||
$connectData = [];
|
|
||||||
|
|
||||||
if (isset($params['servicename']) || isset($params['dbname'])) {
|
|
||||||
$serviceKey = 'SID';
|
|
||||||
|
|
||||||
if (isset($params['service'])) {
|
|
||||||
$serviceKey = 'SERVICE_NAME';
|
|
||||||
}
|
|
||||||
|
|
||||||
$serviceName = $params['servicename'] ?? $params['dbname'];
|
|
||||||
|
|
||||||
$connectData[$serviceKey] = $serviceName;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($params['instancename'])) {
|
|
||||||
$connectData['INSTANCE_NAME'] = $params['instancename'];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! empty($params['pooled'])) {
|
|
||||||
$connectData['SERVER'] = 'POOLED';
|
|
||||||
}
|
|
||||||
|
|
||||||
return self::fromArray([
|
|
||||||
'DESCRIPTION' => [
|
|
||||||
'ADDRESS' => [
|
|
||||||
'PROTOCOL' => 'TCP',
|
|
||||||
'HOST' => $params['host'],
|
|
||||||
'PORT' => $params['port'] ?? 1521,
|
|
||||||
],
|
|
||||||
'CONNECT_DATA' => $connectData,
|
|
||||||
],
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @param mixed[] $params */
|
|
||||||
private static function renderParams(array $params): string
|
|
||||||
{
|
|
||||||
$chunks = [];
|
|
||||||
|
|
||||||
foreach ($params as $key => $value) {
|
|
||||||
$string = self::renderValue($value);
|
|
||||||
|
|
||||||
if ($string === '') {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$chunks[] = sprintf('(%s=%s)', $key, $string);
|
|
||||||
}
|
|
||||||
|
|
||||||
return implode('', $chunks);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @param mixed $value */
|
|
||||||
private static function renderValue($value): string
|
|
||||||
{
|
|
||||||
if (is_array($value)) {
|
|
||||||
return self::renderParams($value);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (string) $value;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,93 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Doctrine\DBAL\Driver;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Connection;
|
|
||||||
use Doctrine\DBAL\Driver\API\ExceptionConverter;
|
|
||||||
use Doctrine\DBAL\Driver\API\PostgreSQL;
|
|
||||||
use Doctrine\DBAL\Exception;
|
|
||||||
use Doctrine\DBAL\Platforms\AbstractPlatform;
|
|
||||||
use Doctrine\DBAL\Platforms\PostgreSQL100Platform;
|
|
||||||
use Doctrine\DBAL\Platforms\PostgreSQL120Platform;
|
|
||||||
use Doctrine\DBAL\Platforms\PostgreSQL94Platform;
|
|
||||||
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
|
|
||||||
use Doctrine\DBAL\Schema\PostgreSQLSchemaManager;
|
|
||||||
use Doctrine\DBAL\VersionAwarePlatformDriver;
|
|
||||||
use Doctrine\Deprecations\Deprecation;
|
|
||||||
|
|
||||||
use function assert;
|
|
||||||
use function preg_match;
|
|
||||||
use function version_compare;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstract base implementation of the {@see Driver} interface for PostgreSQL based drivers.
|
|
||||||
*/
|
|
||||||
abstract class AbstractPostgreSQLDriver implements VersionAwarePlatformDriver
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function createDatabasePlatformForVersion($version)
|
|
||||||
{
|
|
||||||
if (preg_match('/^(?P<major>\d+)(?:\.(?P<minor>\d+)(?:\.(?P<patch>\d+))?)?/', $version, $versionParts) !== 1) {
|
|
||||||
throw Exception::invalidPlatformVersionSpecified(
|
|
||||||
$version,
|
|
||||||
'<major_version>.<minor_version>.<patch_version>',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
$majorVersion = $versionParts['major'];
|
|
||||||
$minorVersion = $versionParts['minor'] ?? 0;
|
|
||||||
$patchVersion = $versionParts['patch'] ?? 0;
|
|
||||||
$version = $majorVersion . '.' . $minorVersion . '.' . $patchVersion;
|
|
||||||
|
|
||||||
if (version_compare($version, '12.0', '>=')) {
|
|
||||||
return new PostgreSQL120Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (version_compare($version, '10.0', '>=')) {
|
|
||||||
return new PostgreSQL100Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
Deprecation::trigger(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5060',
|
|
||||||
'PostgreSQL 9 support is deprecated and will be removed in DBAL 4.'
|
|
||||||
. ' Consider upgrading to Postgres 10 or later.',
|
|
||||||
);
|
|
||||||
|
|
||||||
return new PostgreSQL94Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
public function getDatabasePlatform()
|
|
||||||
{
|
|
||||||
return new PostgreSQL94Platform();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*
|
|
||||||
* @deprecated Use {@link PostgreSQLPlatform::createSchemaManager()} instead.
|
|
||||||
*/
|
|
||||||
public function getSchemaManager(Connection $conn, AbstractPlatform $platform)
|
|
||||||
{
|
|
||||||
Deprecation::triggerIfCalledFromOutside(
|
|
||||||
'doctrine/dbal',
|
|
||||||
'https://github.com/doctrine/dbal/pull/5458',
|
|
||||||
'AbstractPostgreSQLDriver::getSchemaManager() is deprecated.'
|
|
||||||
. ' Use PostgreSQLPlatform::createSchemaManager() instead.',
|
|
||||||
);
|
|
||||||
|
|
||||||
assert($platform instanceof PostgreSQLPlatform);
|
|
||||||
|
|
||||||
return new PostgreSQLSchemaManager($conn, $platform);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getExceptionConverter(): ExceptionConverter
|
|
||||||
{
|
|
||||||
return new PostgreSQL\ExceptionConverter();
|
|
||||||
}
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user