Plugin Directory

Changeset 3131444


Ignore:
Timestamp:
08/06/2024 08:35:48 AM (19 months ago)
Author:
wiredmindshelp
Message:

Updated from GitLab CI 1.8.0

Location:
ip2content/trunk
Files:
1234 added
14 edited

Legend:

Unmodified
Added
Removed
  • ip2content/trunk/Http/Services/CacheService.php

    r3085478 r3131444  
    22
    33namespace WMIP2C\Http\Services;
     4
     5use Flintstone\Flintstone;
     6use WMIP2C\Common\Enums\WordpressOptions;
    47
    58final class CacheService
     
    1518    {
    1619        if ($this->checkIfCacheIsEnabled()) {
    17             $file = $this->getCacheFile($key);
    18 
    19             if ($key !== 'settings') {
    20                 if ($this->checkIfCacheIsExpired($file)) {
    21                     unlink($file);
    22                 }
    23             }
    24 
    25             if (file_exists($file)) {
    26                 return file_get_contents($file);
    27             }
     20            return $this->getCacheEntry($key);
    2821        }
    2922
     
    3326    public function set(string $key, string $value)
    3427    {
    35         if ($this->checkIfCacheIsEnabled() || $key === 'settings') {
    36             $file = $this->getCacheFile($key);
    37             file_put_contents($file, $value);
     28        if ($this->checkIfCacheIsEnabled()) {
     29            $this->setCacheEntry($key, $value);
    3830        }
    3931    }
    4032
    41     public function deleteCache(): void {
    42         $files = scandir($this->cacheDir);
     33    public function deleteCache(): void
     34    {
     35        $files = array_values(array_diff(scandir($this->cacheDir), array('..', '.')));
    4336
    4437        foreach ($files as $file) {
    45             if (md5('settings') === $file) {
    46                 continue;
    47             }
    48 
    4938            unlink($this->cacheDir . $file);
    5039        }
     
    5342    private function checkIfCacheIsEnabled(): bool
    5443    {
    55         $settings = [];
    56         $cachedSettingsFile = $this->getCacheFile('settings');
    57         if (file_exists($cachedSettingsFile)) {
    58             $settings = json_decode(file_get_contents($cachedSettingsFile), true);
    59         }
     44        $cachedSettings = $this->getCacheEntry('settings');
    6045
     46        if ($cachedSettings) {
     47            $settings = json_decode($cachedSettings, true);
    6148
    62         if (count($settings)) {
    6349            return $settings['cache'];
    6450        }
    6551
    66         return false;
     52        return (bool) get_option(WordpressOptions::CACHE_ACTIVE);
    6753    }
    6854
    69     private function checkIfCacheIsExpired($filepath): bool
     55    private function checkIfCacheIsExpired(string $key): bool
    7056    {
    71         return filemtime($filepath) < strtotime('-7 days');
     57        $cacheFileClient = $this->getCacheFileClient();
     58
     59        $cached = $cacheFileClient->get($this->getCacheKey($key));
     60        $expired = false;
     61
     62        if ($cached['ttl'] && $cached['ttl'] < strtotime("now")) {
     63            $expired = true;
     64        }
     65
     66        return $expired;
     67
    7268    }
    7369
    74     private function getCacheFile(string $key): string
     70    private function getCacheEntry(string $key)
     71    {
     72        $cacheFileClient = $this->getCacheFileClient();
     73
     74        $cached = $cacheFileClient->get($this->getCacheKey($key));
     75
     76        if ($cached && $key !== 'settings') {
     77            if ($this->checkIfCacheIsExpired($key)) {
     78                $cached = null;
     79            }
     80        }
     81
     82        if ($cached && $cached['data']) {
     83            return $cached['data'];
     84        }
     85
     86        return null;
     87    }
     88
     89    private function getCacheFileClient()
    7590    {
    7691        if (!file_exists($this->cacheDir)) {
     
    7893        }
    7994
    80         return $this->cacheDir . md5($key);
     95        return new Flintstone(WMIP2C_PLUGIN_PREFIX . 'Cache', ['dir' => $this->cacheDir]);
     96    }
     97
     98    private function getCacheKey(string $key): string
     99    {
     100        return md5($key);
     101    }
     102
     103    private function setCacheEntry(string $key, string $data)
     104    {
     105        $cacheFileClient = $this->getCacheFileClient();
     106
     107        $cached = array('data' => $data);
     108
     109        if ($key !== 'settings') {
     110            $cached['ttl'] = strtotime('+7 days');
     111        }
     112
     113        return $cacheFileClient->set($this->getCacheKey($key), $cached);
    81114    }
    82115}
  • ip2content/trunk/README.txt

    r3115264 r3131444  
    66Tested up to: 6.2
    77Requires PHP: 7.4
    8 Stable tag: 1.7.2
     8Stable tag: 1.8.0
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • ip2content/trunk/composer.json

    r3085478 r3131444  
    66        "vlucas/phpdotenv": "^5.5",
    77        "myclabs/php-enum": "^1.8",
    8       "ext-json": "*"
     8        "ext-json": "*",
     9        "fire015/flintstone": "^2.3"
    910    },
    1011    "require-dev": {
  • ip2content/trunk/composer.lock

    r3085478 r3131444  
    55        "This file is @generated automatically"
    66    ],
    7     "content-hash": "caf82596f43f98031cbb41a7d33d773a",
     7    "content-hash": "7c2a9b49c337aba3ed97046563f8e183",
    88    "packages": [
     9        {
     10            "name": "fire015/flintstone",
     11            "version": "v2.3.0",
     12            "source": {
     13                "type": "git",
     14                "url": "https://github.com/fire015/flintstone.git",
     15                "reference": "406bcaebb4c0e352aa097d141ffd90a2f57cf679"
     16            },
     17            "dist": {
     18                "type": "zip",
     19                "url": "https://api.github.com/repos/fire015/flintstone/zipball/406bcaebb4c0e352aa097d141ffd90a2f57cf679",
     20                "reference": "406bcaebb4c0e352aa097d141ffd90a2f57cf679",
     21                "shasum": ""
     22            },
     23            "require": {
     24                "php": ">=7.3"
     25            },
     26            "require-dev": {
     27                "phpunit/phpunit": "^9"
     28            },
     29            "type": "library",
     30            "autoload": {
     31                "psr-4": {
     32                    "Flintstone\\": "src/"
     33                }
     34            },
     35            "notification-url": "https://packagist.org/downloads/",
     36            "license": [
     37                "MIT"
     38            ],
     39            "authors": [
     40                {
     41                    "name": "Jason M",
     42                    "email": "[email protected]"
     43                }
     44            ],
     45            "description": "A key/value database store using flat files for PHP",
     46            "homepage": "https://github.com/fire015/flintstone",
     47            "keywords": [
     48                "cache",
     49                "database",
     50                "files",
     51                "flintstone",
     52                "memory"
     53            ],
     54            "support": {
     55                "issues": "https://github.com/fire015/flintstone/issues",
     56                "source": "https://github.com/fire015/flintstone/tree/v2.3.0"
     57            },
     58            "time": "2021-01-20T10:36:23+00:00"
     59        },
    960        {
    1061            "name": "graham-campbell/result-type",
     
    30003051    "prefer-stable": false,
    30013052    "prefer-lowest": false,
    3002     "platform": [],
     3053    "platform": {
     3054        "ext-json": "*"
     3055    },
    30033056    "platform-dev": [],
    3004     "plugin-api-version": "2.3.0"
     3057    "plugin-api-version": "2.6.0"
    30053058}
  • ip2content/trunk/vendor/composer/ClassLoader.php

    r2864341 r3131444  
    4343class ClassLoader
    4444{
    45     /** @var ?string */
     45    /** @var \Closure(string):void */
     46    private static $includeFile;
     47
     48    /** @var string|null */
    4649    private $vendorDir;
    4750
    4851    // PSR-4
    4952    /**
    50      * @var array[]
    51      * @psalm-var array<string, array<string, int>>
     53     * @var array<string, array<string, int>>
    5254     */
    5355    private $prefixLengthsPsr4 = array();
    5456    /**
    55      * @var array[]
    56      * @psalm-var array<string, array<int, string>>
     57     * @var array<string, list<string>>
    5758     */
    5859    private $prefixDirsPsr4 = array();
    5960    /**
    60      * @var array[]
    61      * @psalm-var array<string, string>
     61     * @var list<string>
    6262     */
    6363    private $fallbackDirsPsr4 = array();
     
    6565    // PSR-0
    6666    /**
    67      * @var array[]
    68      * @psalm-var array<string, array<string, string[]>>
     67     * List of PSR-0 prefixes
     68     *
     69     * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
     70     *
     71     * @var array<string, array<string, list<string>>>
    6972     */
    7073    private $prefixesPsr0 = array();
    7174    /**
    72      * @var array[]
    73      * @psalm-var array<string, string>
     75     * @var list<string>
    7476     */
    7577    private $fallbackDirsPsr0 = array();
     
    7981
    8082    /**
    81      * @var string[]
    82      * @psalm-var array<string, string>
     83     * @var array<string, string>
    8384     */
    8485    private $classMap = array();
     
    8889
    8990    /**
    90      * @var bool[]
    91      * @psalm-var array<string, bool>
     91     * @var array<string, bool>
    9292     */
    9393    private $missingClasses = array();
    9494
    95     /** @var ?string */
     95    /** @var string|null */
    9696    private $apcuPrefix;
    9797
    9898    /**
    99      * @var self[]
     99     * @var array<string, self>
    100100     */
    101101    private static $registeredLoaders = array();
    102102
    103103    /**
    104      * @param ?string $vendorDir
     104     * @param string|null $vendorDir
    105105     */
    106106    public function __construct($vendorDir = null)
    107107    {
    108108        $this->vendorDir = $vendorDir;
    109     }
    110 
    111     /**
    112      * @return string[]
     109        self::initializeIncludeClosure();
     110    }
     111
     112    /**
     113     * @return array<string, list<string>>
    113114     */
    114115    public function getPrefixes()
     
    122123
    123124    /**
    124      * @return array[]
    125      * @psalm-return array<string, array<int, string>>
     125     * @return array<string, list<string>>
    126126     */
    127127    public function getPrefixesPsr4()
     
    131131
    132132    /**
    133      * @return array[]
    134      * @psalm-return array<string, string>
     133     * @return list<string>
    135134     */
    136135    public function getFallbackDirs()
     
    140139
    141140    /**
    142      * @return array[]
    143      * @psalm-return array<string, string>
     141     * @return list<string>
    144142     */
    145143    public function getFallbackDirsPsr4()
     
    149147
    150148    /**
    151      * @return string[] Array of classname => path
    152      * @psalm-return array<string, string>
     149     * @return array<string, string> Array of classname => path
    153150     */
    154151    public function getClassMap()
     
    158155
    159156    /**
    160      * @param string[] $classMap Class to filename map
    161      * @psalm-param array<string, string> $classMap
     157     * @param array<string, string> $classMap Class to filename map
    162158     *
    163159     * @return void
     
    176172     * appending or prepending to the ones previously set for this prefix.
    177173     *
    178      * @param string          $prefix  The prefix
    179      * @param string[]|string $paths   The PSR-0 root directories
    180      * @param bool            $prepend Whether to prepend the directories
     174     * @param string              $prefix  The prefix
     175     * @param list<string>|string $paths   The PSR-0 root directories
     176     * @param bool                $prepend Whether to prepend the directories
    181177     *
    182178     * @return void
     
    184180    public function add($prefix, $paths, $prepend = false)
    185181    {
     182        $paths = (array) $paths;
    186183        if (!$prefix) {
    187184            if ($prepend) {
    188185                $this->fallbackDirsPsr0 = array_merge(
    189                     (array) $paths,
     186                    $paths,
    190187                    $this->fallbackDirsPsr0
    191188                );
     
    193190                $this->fallbackDirsPsr0 = array_merge(
    194191                    $this->fallbackDirsPsr0,
    195                     (array) $paths
     192                    $paths
    196193                );
    197194            }
     
    202199        $first = $prefix[0];
    203200        if (!isset($this->prefixesPsr0[$first][$prefix])) {
    204             $this->prefixesPsr0[$first][$prefix] = (array) $paths;
     201            $this->prefixesPsr0[$first][$prefix] = $paths;
    205202
    206203            return;
     
    208205        if ($prepend) {
    209206            $this->prefixesPsr0[$first][$prefix] = array_merge(
    210                 (array) $paths,
     207                $paths,
    211208                $this->prefixesPsr0[$first][$prefix]
    212209            );
     
    214211            $this->prefixesPsr0[$first][$prefix] = array_merge(
    215212                $this->prefixesPsr0[$first][$prefix],
    216                 (array) $paths
     213                $paths
    217214            );
    218215        }
     
    223220     * appending or prepending to the ones previously set for this namespace.
    224221     *
    225      * @param string          $prefix  The prefix/namespace, with trailing '\\'
    226      * @param string[]|string $paths   The PSR-4 base directories
    227      * @param bool            $prepend Whether to prepend the directories
     222     * @param string              $prefix  The prefix/namespace, with trailing '\\'
     223     * @param list<string>|string $paths   The PSR-4 base directories
     224     * @param bool                $prepend Whether to prepend the directories
    228225     *
    229226     * @throws \InvalidArgumentException
     
    233230    public function addPsr4($prefix, $paths, $prepend = false)
    234231    {
     232        $paths = (array) $paths;
    235233        if (!$prefix) {
    236234            // Register directories for the root namespace.
    237235            if ($prepend) {
    238236                $this->fallbackDirsPsr4 = array_merge(
    239                     (array) $paths,
     237                    $paths,
    240238                    $this->fallbackDirsPsr4
    241239                );
     
    243241                $this->fallbackDirsPsr4 = array_merge(
    244242                    $this->fallbackDirsPsr4,
    245                     (array) $paths
     243                    $paths
    246244                );
    247245            }
     
    253251            }
    254252            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
    255             $this->prefixDirsPsr4[$prefix] = (array) $paths;
     253            $this->prefixDirsPsr4[$prefix] = $paths;
    256254        } elseif ($prepend) {
    257255            // Prepend directories for an already registered namespace.
    258256            $this->prefixDirsPsr4[$prefix] = array_merge(
    259                 (array) $paths,
     257                $paths,
    260258                $this->prefixDirsPsr4[$prefix]
    261259            );
     
    264262            $this->prefixDirsPsr4[$prefix] = array_merge(
    265263                $this->prefixDirsPsr4[$prefix],
    266                 (array) $paths
     264                $paths
    267265            );
    268266        }
     
    273271     * replacing any others previously set for this prefix.
    274272     *
    275      * @param string          $prefix The prefix
    276      * @param string[]|string $paths  The PSR-0 base directories
     273     * @param string              $prefix The prefix
     274     * @param list<string>|string $paths  The PSR-0 base directories
    277275     *
    278276     * @return void
     
    291289     * replacing any others previously set for this namespace.
    292290     *
    293      * @param string          $prefix The prefix/namespace, with trailing '\\'
    294      * @param string[]|string $paths  The PSR-4 base directories
     291     * @param string              $prefix The prefix/namespace, with trailing '\\'
     292     * @param list<string>|string $paths  The PSR-4 base directories
    295293     *
    296294     * @throws \InvalidArgumentException
     
    426424    {
    427425        if ($file = $this->findFile($class)) {
    428             includeFile($file);
     426            $includeFile = self::$includeFile;
     427            $includeFile($file);
    429428
    430429            return true;
     
    477476
    478477    /**
    479      * Returns the currently registered loaders indexed by their corresponding vendor directories.
    480      *
    481      * @return self[]
     478     * Returns the currently registered loaders keyed by their corresponding vendor directories.
     479     *
     480     * @return array<string, self>
    482481     */
    483482    public static function getRegisteredLoaders()
     
    556555        return false;
    557556    }
     557
     558    /**
     559     * @return void
     560     */
     561    private static function initializeIncludeClosure()
     562    {
     563        if (self::$includeFile !== null) {
     564            return;
     565        }
     566
     567        /**
     568         * Scope isolated include.
     569         *
     570         * Prevents access to $this/self from included files.
     571         *
     572         * @param  string $file
     573         * @return void
     574         */
     575        self::$includeFile = \Closure::bind(static function($file) {
     576            include $file;
     577        }, null, null);
     578    }
    558579}
    559 
    560 /**
    561  * Scope isolated include.
    562  *
    563  * Prevents access to $this/self from included files.
    564  *
    565  * @param  string $file
    566  * @return void
    567  * @private
    568  */
    569 function includeFile($file)
    570 {
    571     include $file;
    572 }
  • ip2content/trunk/vendor/composer/InstalledVersions.php

    r2864341 r3131444  
    9999        foreach (self::getInstalled() as $installed) {
    100100            if (isset($installed['versions'][$packageName])) {
    101                 return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
     101                return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
    102102            }
    103103        }
     
    120120    public static function satisfies(VersionParser $parser, $packageName, $constraint)
    121121    {
    122         $constraint = $parser->parseConstraints($constraint);
     122        $constraint = $parser->parseConstraints((string) $constraint);
    123123        $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
    124124
     
    329329                    $installed[] = self::$installedByVendor[$vendorDir];
    330330                } elseif (is_file($vendorDir.'/composer/installed.php')) {
    331                     $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
     331                    /** @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 */
     332                    $required = require $vendorDir.'/composer/installed.php';
     333                    $installed[] = self::$installedByVendor[$vendorDir] = $required;
    332334                    if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
    333335                        self::$installed = $installed[count($installed) - 1];
     
    341343            // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
    342344            if (substr(__DIR__, -8, 1) !== 'C') {
    343                 self::$installed = require __DIR__ . '/installed.php';
     345                /** @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 */
     346                $required = require __DIR__ . '/installed.php';
     347                self::$installed = $required;
    344348            } else {
    345349                self::$installed = array();
    346350            }
    347351        }
    348         $installed[] = self::$installed;
     352
     353        if (self::$installed !== array()) {
     354            $installed[] = self::$installed;
     355        }
    349356
    350357        return $installed;
  • ip2content/trunk/vendor/composer/autoload_classmap.php

    r2864341 r3131444  
    77
    88return array(
     9    'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
    910    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
     11    'JsonException' => $vendorDir . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
     12    'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
     13    'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
     14    'ReturnTypeWillChange' => $vendorDir . '/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php',
     15    'SebastianBergmann\\Diff\\Chunk' => $vendorDir . '/sebastian/diff/src/Chunk.php',
     16    'SebastianBergmann\\Diff\\ConfigurationException' => $vendorDir . '/sebastian/diff/src/Exception/ConfigurationException.php',
     17    'SebastianBergmann\\Diff\\Diff' => $vendorDir . '/sebastian/diff/src/Diff.php',
     18    'SebastianBergmann\\Diff\\Differ' => $vendorDir . '/sebastian/diff/src/Differ.php',
     19    'SebastianBergmann\\Diff\\Exception' => $vendorDir . '/sebastian/diff/src/Exception/Exception.php',
     20    'SebastianBergmann\\Diff\\InvalidArgumentException' => $vendorDir . '/sebastian/diff/src/Exception/InvalidArgumentException.php',
     21    'SebastianBergmann\\Diff\\Line' => $vendorDir . '/sebastian/diff/src/Line.php',
     22    'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php',
     23    'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php',
     24    'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php',
     25    'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php',
     26    'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => $vendorDir . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php',
     27    'SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php',
     28    'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php',
     29    'SebastianBergmann\\Diff\\Parser' => $vendorDir . '/sebastian/diff/src/Parser.php',
     30    'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php',
     31    'Stringable' => $vendorDir . '/myclabs/php-enum/stubs/Stringable.php',
     32    'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
     33    'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
    1034);
  • ip2content/trunk/vendor/composer/autoload_psr4.php

    r2864341 r3131444  
    88return array(
    99    'WMIP2C\\Public\\' => array($baseDir . '/Public'),
     10    'WMIP2C\\PublicSite\\' => array($baseDir . '/Public'),
    1011    'WMIP2C\\Http\\' => array($baseDir . '/Http'),
    1112    'WMIP2C\\Database\\Seeders\\' => array($baseDir . '/Database/Seeders'),
     
    1415    'WMIP2C\\Common\\' => array($baseDir . '/Common'),
    1516    'WMIP2C\\Admin\\' => array($baseDir . '/Admin'),
     17    'Symfony\\Polyfill\\Php81\\' => array($vendorDir . '/symfony/polyfill-php81'),
     18    'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'),
     19    'Symfony\\Polyfill\\Php73\\' => array($vendorDir . '/symfony/polyfill-php73'),
     20    'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
     21    'Symfony\\Polyfill\\Intl\\Normalizer\\' => array($vendorDir . '/symfony/polyfill-intl-normalizer'),
     22    'Symfony\\Polyfill\\Intl\\Grapheme\\' => array($vendorDir . '/symfony/polyfill-intl-grapheme'),
     23    'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
     24    'Symfony\\Contracts\\Service\\' => array($vendorDir . '/symfony/service-contracts'),
     25    'Symfony\\Contracts\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher-contracts'),
     26    'Symfony\\Component\\String\\' => array($vendorDir . '/symfony/string'),
     27    'Symfony\\Component\\Stopwatch\\' => array($vendorDir . '/symfony/stopwatch'),
     28    'Symfony\\Component\\Process\\' => array($vendorDir . '/symfony/process'),
     29    'Symfony\\Component\\OptionsResolver\\' => array($vendorDir . '/symfony/options-resolver'),
     30    'Symfony\\Component\\Finder\\' => array($vendorDir . '/symfony/finder'),
     31    'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'),
     32    'Symfony\\Component\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher'),
     33    'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
    1634    'Rakit\\Validation\\' => array($vendorDir . '/rakit/validation/src'),
     35    'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
     36    'Psr\\EventDispatcher\\' => array($vendorDir . '/psr/event-dispatcher/src'),
     37    'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
     38    'Psr\\Cache\\' => array($vendorDir . '/psr/cache/src'),
     39    'PhpOption\\' => array($vendorDir . '/phpoption/phpoption/src/PhpOption'),
     40    'PhpCsFixer\\' => array($vendorDir . '/friendsofphp/php-cs-fixer/src'),
     41    'MyCLabs\\Enum\\' => array($vendorDir . '/myclabs/php-enum/src'),
     42    'GrahamCampbell\\ResultType\\' => array($vendorDir . '/graham-campbell/result-type/src'),
     43    'Flintstone\\' => array($vendorDir . '/fire015/flintstone/src'),
     44    'Dotenv\\' => array($vendorDir . '/vlucas/phpdotenv/src'),
     45    'Doctrine\\Common\\Lexer\\' => array($vendorDir . '/doctrine/lexer/lib/Doctrine/Common/Lexer'),
     46    'Doctrine\\Common\\Annotations\\' => array($vendorDir . '/doctrine/annotations/lib/Doctrine/Common/Annotations'),
     47    'Composer\\XdebugHandler\\' => array($vendorDir . '/composer/xdebug-handler/src'),
     48    'Composer\\Semver\\' => array($vendorDir . '/composer/semver/src'),
     49    'Composer\\Pcre\\' => array($vendorDir . '/composer/pcre/src'),
    1750);
  • ip2content/trunk/vendor/composer/autoload_real.php

    r2864341 r3131444  
    3434        $loader->register(true);
    3535
     36        $filesToLoad = \Composer\Autoload\ComposerStaticInitf33e29bcb863e8ae6ff5c1bc8322fc9d::$files;
     37        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
     38            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
     39                $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
     40
     41                require $file;
     42            }
     43        }, null, null);
     44        foreach ($filesToLoad as $fileIdentifier => $file) {
     45            $requireFile($fileIdentifier, $file);
     46        }
     47
    3648        return $loader;
    3749    }
  • ip2content/trunk/vendor/composer/autoload_static.php

    r2864341 r3131444  
    77class ComposerStaticInitf33e29bcb863e8ae6ff5c1bc8322fc9d
    88{
     9    public static $files = array (
     10        'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
     11        '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
     12        '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
     13        '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
     14        '0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
     15        '8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
     16        'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
     17        'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
     18        '23c18046f52bef3eea034657bafda50f' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php',
     19    );
     20
    921    public static $prefixLengthsPsr4 = array (
    1022        'W' =>
    1123        array (
    1224            'WMIP2C\\Public\\' => 14,
     25            'WMIP2C\\PublicSite\\' => 18,
    1326            'WMIP2C\\Http\\' => 12,
    1427            'WMIP2C\\Database\\Seeders\\' => 24,
     
    1831            'WMIP2C\\Admin\\' => 13,
    1932        ),
     33        'S' =>
     34        array (
     35            'Symfony\\Polyfill\\Php81\\' => 23,
     36            'Symfony\\Polyfill\\Php80\\' => 23,
     37            'Symfony\\Polyfill\\Php73\\' => 23,
     38            'Symfony\\Polyfill\\Mbstring\\' => 26,
     39            'Symfony\\Polyfill\\Intl\\Normalizer\\' => 33,
     40            'Symfony\\Polyfill\\Intl\\Grapheme\\' => 31,
     41            'Symfony\\Polyfill\\Ctype\\' => 23,
     42            'Symfony\\Contracts\\Service\\' => 26,
     43            'Symfony\\Contracts\\EventDispatcher\\' => 34,
     44            'Symfony\\Component\\String\\' => 25,
     45            'Symfony\\Component\\Stopwatch\\' => 28,
     46            'Symfony\\Component\\Process\\' => 26,
     47            'Symfony\\Component\\OptionsResolver\\' => 34,
     48            'Symfony\\Component\\Finder\\' => 25,
     49            'Symfony\\Component\\Filesystem\\' => 29,
     50            'Symfony\\Component\\EventDispatcher\\' => 34,
     51            'Symfony\\Component\\Console\\' => 26,
     52        ),
    2053        'R' =>
    2154        array (
    2255            'Rakit\\Validation\\' => 17,
     56        ),
     57        'P' =>
     58        array (
     59            'Psr\\Log\\' => 8,
     60            'Psr\\EventDispatcher\\' => 20,
     61            'Psr\\Container\\' => 14,
     62            'Psr\\Cache\\' => 10,
     63            'PhpOption\\' => 10,
     64            'PhpCsFixer\\' => 11,
     65        ),
     66        'M' =>
     67        array (
     68            'MyCLabs\\Enum\\' => 13,
     69        ),
     70        'G' =>
     71        array (
     72            'GrahamCampbell\\ResultType\\' => 26,
     73        ),
     74        'F' =>
     75        array (
     76            'Flintstone\\' => 11,
     77        ),
     78        'D' =>
     79        array (
     80            'Dotenv\\' => 7,
     81            'Doctrine\\Common\\Lexer\\' => 22,
     82            'Doctrine\\Common\\Annotations\\' => 28,
     83        ),
     84        'C' =>
     85        array (
     86            'Composer\\XdebugHandler\\' => 23,
     87            'Composer\\Semver\\' => 16,
     88            'Composer\\Pcre\\' => 14,
    2389        ),
    2490    );
     
    2995            0 => __DIR__ . '/../..' . '/Public',
    3096        ),
     97        'WMIP2C\\PublicSite\\' =>
     98        array (
     99            0 => __DIR__ . '/../..' . '/Public',
     100        ),
    31101        'WMIP2C\\Http\\' =>
    32102        array (
     
    53123            0 => __DIR__ . '/../..' . '/Admin',
    54124        ),
     125        'Symfony\\Polyfill\\Php81\\' =>
     126        array (
     127            0 => __DIR__ . '/..' . '/symfony/polyfill-php81',
     128        ),
     129        'Symfony\\Polyfill\\Php80\\' =>
     130        array (
     131            0 => __DIR__ . '/..' . '/symfony/polyfill-php80',
     132        ),
     133        'Symfony\\Polyfill\\Php73\\' =>
     134        array (
     135            0 => __DIR__ . '/..' . '/symfony/polyfill-php73',
     136        ),
     137        'Symfony\\Polyfill\\Mbstring\\' =>
     138        array (
     139            0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
     140        ),
     141        'Symfony\\Polyfill\\Intl\\Normalizer\\' =>
     142        array (
     143            0 => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer',
     144        ),
     145        'Symfony\\Polyfill\\Intl\\Grapheme\\' =>
     146        array (
     147            0 => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme',
     148        ),
     149        'Symfony\\Polyfill\\Ctype\\' =>
     150        array (
     151            0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
     152        ),
     153        'Symfony\\Contracts\\Service\\' =>
     154        array (
     155            0 => __DIR__ . '/..' . '/symfony/service-contracts',
     156        ),
     157        'Symfony\\Contracts\\EventDispatcher\\' =>
     158        array (
     159            0 => __DIR__ . '/..' . '/symfony/event-dispatcher-contracts',
     160        ),
     161        'Symfony\\Component\\String\\' =>
     162        array (
     163            0 => __DIR__ . '/..' . '/symfony/string',
     164        ),
     165        'Symfony\\Component\\Stopwatch\\' =>
     166        array (
     167            0 => __DIR__ . '/..' . '/symfony/stopwatch',
     168        ),
     169        'Symfony\\Component\\Process\\' =>
     170        array (
     171            0 => __DIR__ . '/..' . '/symfony/process',
     172        ),
     173        'Symfony\\Component\\OptionsResolver\\' =>
     174        array (
     175            0 => __DIR__ . '/..' . '/symfony/options-resolver',
     176        ),
     177        'Symfony\\Component\\Finder\\' =>
     178        array (
     179            0 => __DIR__ . '/..' . '/symfony/finder',
     180        ),
     181        'Symfony\\Component\\Filesystem\\' =>
     182        array (
     183            0 => __DIR__ . '/..' . '/symfony/filesystem',
     184        ),
     185        'Symfony\\Component\\EventDispatcher\\' =>
     186        array (
     187            0 => __DIR__ . '/..' . '/symfony/event-dispatcher',
     188        ),
     189        'Symfony\\Component\\Console\\' =>
     190        array (
     191            0 => __DIR__ . '/..' . '/symfony/console',
     192        ),
    55193        'Rakit\\Validation\\' =>
    56194        array (
    57195            0 => __DIR__ . '/..' . '/rakit/validation/src',
    58196        ),
     197        'Psr\\Log\\' =>
     198        array (
     199            0 => __DIR__ . '/..' . '/psr/log/Psr/Log',
     200        ),
     201        'Psr\\EventDispatcher\\' =>
     202        array (
     203            0 => __DIR__ . '/..' . '/psr/event-dispatcher/src',
     204        ),
     205        'Psr\\Container\\' =>
     206        array (
     207            0 => __DIR__ . '/..' . '/psr/container/src',
     208        ),
     209        'Psr\\Cache\\' =>
     210        array (
     211            0 => __DIR__ . '/..' . '/psr/cache/src',
     212        ),
     213        'PhpOption\\' =>
     214        array (
     215            0 => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption',
     216        ),
     217        'PhpCsFixer\\' =>
     218        array (
     219            0 => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src',
     220        ),
     221        'MyCLabs\\Enum\\' =>
     222        array (
     223            0 => __DIR__ . '/..' . '/myclabs/php-enum/src',
     224        ),
     225        'GrahamCampbell\\ResultType\\' =>
     226        array (
     227            0 => __DIR__ . '/..' . '/graham-campbell/result-type/src',
     228        ),
     229        'Flintstone\\' =>
     230        array (
     231            0 => __DIR__ . '/..' . '/fire015/flintstone/src',
     232        ),
     233        'Dotenv\\' =>
     234        array (
     235            0 => __DIR__ . '/..' . '/vlucas/phpdotenv/src',
     236        ),
     237        'Doctrine\\Common\\Lexer\\' =>
     238        array (
     239            0 => __DIR__ . '/..' . '/doctrine/lexer/lib/Doctrine/Common/Lexer',
     240        ),
     241        'Doctrine\\Common\\Annotations\\' =>
     242        array (
     243            0 => __DIR__ . '/..' . '/doctrine/annotations/lib/Doctrine/Common/Annotations',
     244        ),
     245        'Composer\\XdebugHandler\\' =>
     246        array (
     247            0 => __DIR__ . '/..' . '/composer/xdebug-handler/src',
     248        ),
     249        'Composer\\Semver\\' =>
     250        array (
     251            0 => __DIR__ . '/..' . '/composer/semver/src',
     252        ),
     253        'Composer\\Pcre\\' =>
     254        array (
     255            0 => __DIR__ . '/..' . '/composer/pcre/src',
     256        ),
    59257    );
    60258
    61259    public static $classMap = array (
     260        'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
    62261        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
     262        'JsonException' => __DIR__ . '/..' . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
     263        'Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
     264        'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
     265        'ReturnTypeWillChange' => __DIR__ . '/..' . '/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php',
     266        'SebastianBergmann\\Diff\\Chunk' => __DIR__ . '/..' . '/sebastian/diff/src/Chunk.php',
     267        'SebastianBergmann\\Diff\\ConfigurationException' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/ConfigurationException.php',
     268        'SebastianBergmann\\Diff\\Diff' => __DIR__ . '/..' . '/sebastian/diff/src/Diff.php',
     269        'SebastianBergmann\\Diff\\Differ' => __DIR__ . '/..' . '/sebastian/diff/src/Differ.php',
     270        'SebastianBergmann\\Diff\\Exception' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/Exception.php',
     271        'SebastianBergmann\\Diff\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/InvalidArgumentException.php',
     272        'SebastianBergmann\\Diff\\Line' => __DIR__ . '/..' . '/sebastian/diff/src/Line.php',
     273        'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php',
     274        'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php',
     275        'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php',
     276        'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php',
     277        'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => __DIR__ . '/..' . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php',
     278        'SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php',
     279        'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php',
     280        'SebastianBergmann\\Diff\\Parser' => __DIR__ . '/..' . '/sebastian/diff/src/Parser.php',
     281        'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php',
     282        'Stringable' => __DIR__ . '/..' . '/myclabs/php-enum/stubs/Stringable.php',
     283        'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
     284        'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
    63285    );
    64286
  • ip2content/trunk/vendor/composer/installed.json

    r2864341 r3131444  
    11{
    22    "packages": [
     3        {
     4            "name": "composer/pcre",
     5            "version": "3.1.0",
     6            "version_normalized": "3.1.0.0",
     7            "source": {
     8                "type": "git",
     9                "url": "https://github.com/composer/pcre.git",
     10                "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2"
     11            },
     12            "dist": {
     13                "type": "zip",
     14                "url": "https://api.github.com/repos/composer/pcre/zipball/4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
     15                "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
     16                "shasum": ""
     17            },
     18            "require": {
     19                "php": "^7.4 || ^8.0"
     20            },
     21            "require-dev": {
     22                "phpstan/phpstan": "^1.3",
     23                "phpstan/phpstan-strict-rules": "^1.1",
     24                "symfony/phpunit-bridge": "^5"
     25            },
     26            "time": "2022-11-17T09:50:14+00:00",
     27            "type": "library",
     28            "extra": {
     29                "branch-alias": {
     30                    "dev-main": "3.x-dev"
     31                }
     32            },
     33            "installation-source": "dist",
     34            "autoload": {
     35                "psr-4": {
     36                    "Composer\\Pcre\\": "src"
     37                }
     38            },
     39            "notification-url": "https://packagist.org/downloads/",
     40            "license": [
     41                "MIT"
     42            ],
     43            "authors": [
     44                {
     45                    "name": "Jordi Boggiano",
     46                    "email": "[email protected]",
     47                    "homepage": "http://seld.be"
     48                }
     49            ],
     50            "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
     51            "keywords": [
     52                "PCRE",
     53                "preg",
     54                "regex",
     55                "regular expression"
     56            ],
     57            "support": {
     58                "issues": "https://github.com/composer/pcre/issues",
     59                "source": "https://github.com/composer/pcre/tree/3.1.0"
     60            },
     61            "funding": [
     62                {
     63                    "url": "https://packagist.com",
     64                    "type": "custom"
     65                },
     66                {
     67                    "url": "https://github.com/composer",
     68                    "type": "github"
     69                },
     70                {
     71                    "url": "https://tidelift.com/funding/github/packagist/composer/composer",
     72                    "type": "tidelift"
     73                }
     74            ],
     75            "install-path": "./pcre"
     76        },
     77        {
     78            "name": "composer/semver",
     79            "version": "3.3.2",
     80            "version_normalized": "3.3.2.0",
     81            "source": {
     82                "type": "git",
     83                "url": "https://github.com/composer/semver.git",
     84                "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
     85            },
     86            "dist": {
     87                "type": "zip",
     88                "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
     89                "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
     90                "shasum": ""
     91            },
     92            "require": {
     93                "php": "^5.3.2 || ^7.0 || ^8.0"
     94            },
     95            "require-dev": {
     96                "phpstan/phpstan": "^1.4",
     97                "symfony/phpunit-bridge": "^4.2 || ^5"
     98            },
     99            "time": "2022-04-01T19:23:25+00:00",
     100            "type": "library",
     101            "extra": {
     102                "branch-alias": {
     103                    "dev-main": "3.x-dev"
     104                }
     105            },
     106            "installation-source": "dist",
     107            "autoload": {
     108                "psr-4": {
     109                    "Composer\\Semver\\": "src"
     110                }
     111            },
     112            "notification-url": "https://packagist.org/downloads/",
     113            "license": [
     114                "MIT"
     115            ],
     116            "authors": [
     117                {
     118                    "name": "Nils Adermann",
     119                    "email": "[email protected]",
     120                    "homepage": "http://www.naderman.de"
     121                },
     122                {
     123                    "name": "Jordi Boggiano",
     124                    "email": "[email protected]",
     125                    "homepage": "http://seld.be"
     126                },
     127                {
     128                    "name": "Rob Bast",
     129                    "email": "[email protected]",
     130                    "homepage": "http://robbast.nl"
     131                }
     132            ],
     133            "description": "Semver library that offers utilities, version constraint parsing and validation.",
     134            "keywords": [
     135                "semantic",
     136                "semver",
     137                "validation",
     138                "versioning"
     139            ],
     140            "support": {
     141                "irc": "irc://irc.freenode.org/composer",
     142                "issues": "https://github.com/composer/semver/issues",
     143                "source": "https://github.com/composer/semver/tree/3.3.2"
     144            },
     145            "funding": [
     146                {
     147                    "url": "https://packagist.com",
     148                    "type": "custom"
     149                },
     150                {
     151                    "url": "https://github.com/composer",
     152                    "type": "github"
     153                },
     154                {
     155                    "url": "https://tidelift.com/funding/github/packagist/composer/composer",
     156                    "type": "tidelift"
     157                }
     158            ],
     159            "install-path": "./semver"
     160        },
     161        {
     162            "name": "composer/xdebug-handler",
     163            "version": "3.0.3",
     164            "version_normalized": "3.0.3.0",
     165            "source": {
     166                "type": "git",
     167                "url": "https://github.com/composer/xdebug-handler.git",
     168                "reference": "ced299686f41dce890debac69273b47ffe98a40c"
     169            },
     170            "dist": {
     171                "type": "zip",
     172                "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
     173                "reference": "ced299686f41dce890debac69273b47ffe98a40c",
     174                "shasum": ""
     175            },
     176            "require": {
     177                "composer/pcre": "^1 || ^2 || ^3",
     178                "php": "^7.2.5 || ^8.0",
     179                "psr/log": "^1 || ^2 || ^3"
     180            },
     181            "require-dev": {
     182                "phpstan/phpstan": "^1.0",
     183                "phpstan/phpstan-strict-rules": "^1.1",
     184                "symfony/phpunit-bridge": "^6.0"
     185            },
     186            "time": "2022-02-25T21:32:43+00:00",
     187            "type": "library",
     188            "installation-source": "dist",
     189            "autoload": {
     190                "psr-4": {
     191                    "Composer\\XdebugHandler\\": "src"
     192                }
     193            },
     194            "notification-url": "https://packagist.org/downloads/",
     195            "license": [
     196                "MIT"
     197            ],
     198            "authors": [
     199                {
     200                    "name": "John Stevenson",
     201                    "email": "[email protected]"
     202                }
     203            ],
     204            "description": "Restarts a process without Xdebug.",
     205            "keywords": [
     206                "Xdebug",
     207                "performance"
     208            ],
     209            "support": {
     210                "irc": "irc://irc.freenode.org/composer",
     211                "issues": "https://github.com/composer/xdebug-handler/issues",
     212                "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
     213            },
     214            "funding": [
     215                {
     216                    "url": "https://packagist.com",
     217                    "type": "custom"
     218                },
     219                {
     220                    "url": "https://github.com/composer",
     221                    "type": "github"
     222                },
     223                {
     224                    "url": "https://tidelift.com/funding/github/packagist/composer/composer",
     225                    "type": "tidelift"
     226                }
     227            ],
     228            "install-path": "./xdebug-handler"
     229        },
     230        {
     231            "name": "doctrine/annotations",
     232            "version": "1.13.3",
     233            "version_normalized": "1.13.3.0",
     234            "source": {
     235                "type": "git",
     236                "url": "https://github.com/doctrine/annotations.git",
     237                "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
     238            },
     239            "dist": {
     240                "type": "zip",
     241                "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
     242                "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
     243                "shasum": ""
     244            },
     245            "require": {
     246                "doctrine/lexer": "1.*",
     247                "ext-tokenizer": "*",
     248                "php": "^7.1 || ^8.0",
     249                "psr/cache": "^1 || ^2 || ^3"
     250            },
     251            "require-dev": {
     252                "doctrine/cache": "^1.11 || ^2.0",
     253                "doctrine/coding-standard": "^6.0 || ^8.1",
     254                "phpstan/phpstan": "^1.4.10 || ^1.8.0",
     255                "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
     256                "symfony/cache": "^4.4 || ^5.2",
     257                "vimeo/psalm": "^4.10"
     258            },
     259            "time": "2022-07-02T10:48:51+00:00",
     260            "type": "library",
     261            "installation-source": "dist",
     262            "autoload": {
     263                "psr-4": {
     264                    "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
     265                }
     266            },
     267            "notification-url": "https://packagist.org/downloads/",
     268            "license": [
     269                "MIT"
     270            ],
     271            "authors": [
     272                {
     273                    "name": "Guilherme Blanco",
     274                    "email": "[email protected]"
     275                },
     276                {
     277                    "name": "Roman Borschel",
     278                    "email": "[email protected]"
     279                },
     280                {
     281                    "name": "Benjamin Eberlei",
     282                    "email": "[email protected]"
     283                },
     284                {
     285                    "name": "Jonathan Wage",
     286                    "email": "[email protected]"
     287                },
     288                {
     289                    "name": "Johannes Schmitt",
     290                    "email": "[email protected]"
     291                }
     292            ],
     293            "description": "Docblock Annotations Parser",
     294            "homepage": "https://www.doctrine-project.org/projects/annotations.html",
     295            "keywords": [
     296                "annotations",
     297                "docblock",
     298                "parser"
     299            ],
     300            "support": {
     301                "issues": "https://github.com/doctrine/annotations/issues",
     302                "source": "https://github.com/doctrine/annotations/tree/1.13.3"
     303            },
     304            "install-path": "../doctrine/annotations"
     305        },
     306        {
     307            "name": "doctrine/lexer",
     308            "version": "1.2.3",
     309            "version_normalized": "1.2.3.0",
     310            "source": {
     311                "type": "git",
     312                "url": "https://github.com/doctrine/lexer.git",
     313                "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
     314            },
     315            "dist": {
     316                "type": "zip",
     317                "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
     318                "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
     319                "shasum": ""
     320            },
     321            "require": {
     322                "php": "^7.1 || ^8.0"
     323            },
     324            "require-dev": {
     325                "doctrine/coding-standard": "^9.0",
     326                "phpstan/phpstan": "^1.3",
     327                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
     328                "vimeo/psalm": "^4.11"
     329            },
     330            "time": "2022-02-28T11:07:21+00:00",
     331            "type": "library",
     332            "installation-source": "dist",
     333            "autoload": {
     334                "psr-4": {
     335                    "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
     336                }
     337            },
     338            "notification-url": "https://packagist.org/downloads/",
     339            "license": [
     340                "MIT"
     341            ],
     342            "authors": [
     343                {
     344                    "name": "Guilherme Blanco",
     345                    "email": "[email protected]"
     346                },
     347                {
     348                    "name": "Roman Borschel",
     349                    "email": "[email protected]"
     350                },
     351                {
     352                    "name": "Johannes Schmitt",
     353                    "email": "[email protected]"
     354                }
     355            ],
     356            "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
     357            "homepage": "https://www.doctrine-project.org/projects/lexer.html",
     358            "keywords": [
     359                "annotations",
     360                "docblock",
     361                "lexer",
     362                "parser",
     363                "php"
     364            ],
     365            "support": {
     366                "issues": "https://github.com/doctrine/lexer/issues",
     367                "source": "https://github.com/doctrine/lexer/tree/1.2.3"
     368            },
     369            "funding": [
     370                {
     371                    "url": "https://www.doctrine-project.org/sponsorship.html",
     372                    "type": "custom"
     373                },
     374                {
     375                    "url": "https://www.patreon.com/phpdoctrine",
     376                    "type": "patreon"
     377                },
     378                {
     379                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
     380                    "type": "tidelift"
     381                }
     382            ],
     383            "install-path": "../doctrine/lexer"
     384        },
     385        {
     386            "name": "fire015/flintstone",
     387            "version": "v2.3.0",
     388            "version_normalized": "2.3.0.0",
     389            "source": {
     390                "type": "git",
     391                "url": "https://github.com/fire015/flintstone.git",
     392                "reference": "406bcaebb4c0e352aa097d141ffd90a2f57cf679"
     393            },
     394            "dist": {
     395                "type": "zip",
     396                "url": "https://api.github.com/repos/fire015/flintstone/zipball/406bcaebb4c0e352aa097d141ffd90a2f57cf679",
     397                "reference": "406bcaebb4c0e352aa097d141ffd90a2f57cf679",
     398                "shasum": ""
     399            },
     400            "require": {
     401                "php": ">=7.3"
     402            },
     403            "require-dev": {
     404                "phpunit/phpunit": "^9"
     405            },
     406            "time": "2021-01-20T10:36:23+00:00",
     407            "type": "library",
     408            "installation-source": "dist",
     409            "autoload": {
     410                "psr-4": {
     411                    "Flintstone\\": "src/"
     412                }
     413            },
     414            "notification-url": "https://packagist.org/downloads/",
     415            "license": [
     416                "MIT"
     417            ],
     418            "authors": [
     419                {
     420                    "name": "Jason M",
     421                    "email": "[email protected]"
     422                }
     423            ],
     424            "description": "A key/value database store using flat files for PHP",
     425            "homepage": "https://github.com/fire015/flintstone",
     426            "keywords": [
     427                "cache",
     428                "database",
     429                "files",
     430                "flintstone",
     431                "memory"
     432            ],
     433            "support": {
     434                "issues": "https://github.com/fire015/flintstone/issues",
     435                "source": "https://github.com/fire015/flintstone/tree/v2.3.0"
     436            },
     437            "install-path": "../fire015/flintstone"
     438        },
     439        {
     440            "name": "friendsofphp/php-cs-fixer",
     441            "version": "v3.13.0",
     442            "version_normalized": "3.13.0.0",
     443            "source": {
     444                "type": "git",
     445                "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
     446                "reference": "a6232229a8309e8811dc751c28b91cb34b2943e1"
     447            },
     448            "dist": {
     449                "type": "zip",
     450                "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/a6232229a8309e8811dc751c28b91cb34b2943e1",
     451                "reference": "a6232229a8309e8811dc751c28b91cb34b2943e1",
     452                "shasum": ""
     453            },
     454            "require": {
     455                "composer/semver": "^3.2",
     456                "composer/xdebug-handler": "^3.0.3",
     457                "doctrine/annotations": "^1.13",
     458                "ext-json": "*",
     459                "ext-tokenizer": "*",
     460                "php": "^7.4 || ^8.0",
     461                "sebastian/diff": "^4.0",
     462                "symfony/console": "^5.4 || ^6.0",
     463                "symfony/event-dispatcher": "^5.4 || ^6.0",
     464                "symfony/filesystem": "^5.4 || ^6.0",
     465                "symfony/finder": "^5.4 || ^6.0",
     466                "symfony/options-resolver": "^5.4 || ^6.0",
     467                "symfony/polyfill-mbstring": "^1.23",
     468                "symfony/polyfill-php80": "^1.25",
     469                "symfony/polyfill-php81": "^1.25",
     470                "symfony/process": "^5.4 || ^6.0",
     471                "symfony/stopwatch": "^5.4 || ^6.0"
     472            },
     473            "require-dev": {
     474                "justinrainbow/json-schema": "^5.2",
     475                "keradus/cli-executor": "^2.0",
     476                "mikey179/vfsstream": "^1.6.10",
     477                "php-coveralls/php-coveralls": "^2.5.2",
     478                "php-cs-fixer/accessible-object": "^1.1",
     479                "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
     480                "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
     481                "phpspec/prophecy": "^1.15",
     482                "phpspec/prophecy-phpunit": "^2.0",
     483                "phpunit/phpunit": "^9.5",
     484                "phpunitgoodpractices/polyfill": "^1.6",
     485                "phpunitgoodpractices/traits": "^1.9.2",
     486                "symfony/phpunit-bridge": "^6.0",
     487                "symfony/yaml": "^5.4 || ^6.0"
     488            },
     489            "suggest": {
     490                "ext-dom": "For handling output formats in XML",
     491                "ext-mbstring": "For handling non-UTF8 characters."
     492            },
     493            "time": "2022-10-31T19:28:50+00:00",
     494            "bin": [
     495                "php-cs-fixer"
     496            ],
     497            "type": "application",
     498            "installation-source": "dist",
     499            "autoload": {
     500                "psr-4": {
     501                    "PhpCsFixer\\": "src/"
     502                }
     503            },
     504            "notification-url": "https://packagist.org/downloads/",
     505            "license": [
     506                "MIT"
     507            ],
     508            "authors": [
     509                {
     510                    "name": "Fabien Potencier",
     511                    "email": "[email protected]"
     512                },
     513                {
     514                    "name": "Dariusz Rumiński",
     515                    "email": "[email protected]"
     516                }
     517            ],
     518            "description": "A tool to automatically fix PHP code style",
     519            "support": {
     520                "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
     521                "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.13.0"
     522            },
     523            "funding": [
     524                {
     525                    "url": "https://github.com/keradus",
     526                    "type": "github"
     527                }
     528            ],
     529            "install-path": "../friendsofphp/php-cs-fixer"
     530        },
     531        {
     532            "name": "graham-campbell/result-type",
     533            "version": "v1.1.0",
     534            "version_normalized": "1.1.0.0",
     535            "source": {
     536                "type": "git",
     537                "url": "https://github.com/GrahamCampbell/Result-Type.git",
     538                "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8"
     539            },
     540            "dist": {
     541                "type": "zip",
     542                "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8",
     543                "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8",
     544                "shasum": ""
     545            },
     546            "require": {
     547                "php": "^7.2.5 || ^8.0",
     548                "phpoption/phpoption": "^1.9"
     549            },
     550            "require-dev": {
     551                "phpunit/phpunit": "^8.5.28 || ^9.5.21"
     552            },
     553            "time": "2022-07-30T15:56:11+00:00",
     554            "type": "library",
     555            "installation-source": "dist",
     556            "autoload": {
     557                "psr-4": {
     558                    "GrahamCampbell\\ResultType\\": "src/"
     559                }
     560            },
     561            "notification-url": "https://packagist.org/downloads/",
     562            "license": [
     563                "MIT"
     564            ],
     565            "authors": [
     566                {
     567                    "name": "Graham Campbell",
     568                    "email": "[email protected]",
     569                    "homepage": "https://github.com/GrahamCampbell"
     570                }
     571            ],
     572            "description": "An Implementation Of The Result Type",
     573            "keywords": [
     574                "Graham Campbell",
     575                "GrahamCampbell",
     576                "Result Type",
     577                "Result-Type",
     578                "result"
     579            ],
     580            "support": {
     581                "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
     582                "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0"
     583            },
     584            "funding": [
     585                {
     586                    "url": "https://github.com/GrahamCampbell",
     587                    "type": "github"
     588                },
     589                {
     590                    "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
     591                    "type": "tidelift"
     592                }
     593            ],
     594            "install-path": "../graham-campbell/result-type"
     595        },
     596        {
     597            "name": "myclabs/php-enum",
     598            "version": "1.8.4",
     599            "version_normalized": "1.8.4.0",
     600            "source": {
     601                "type": "git",
     602                "url": "https://github.com/myclabs/php-enum.git",
     603                "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
     604            },
     605            "dist": {
     606                "type": "zip",
     607                "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
     608                "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
     609                "shasum": ""
     610            },
     611            "require": {
     612                "ext-json": "*",
     613                "php": "^7.3 || ^8.0"
     614            },
     615            "require-dev": {
     616                "phpunit/phpunit": "^9.5",
     617                "squizlabs/php_codesniffer": "1.*",
     618                "vimeo/psalm": "^4.6.2"
     619            },
     620            "time": "2022-08-04T09:53:51+00:00",
     621            "type": "library",
     622            "installation-source": "dist",
     623            "autoload": {
     624                "psr-4": {
     625                    "MyCLabs\\Enum\\": "src/"
     626                },
     627                "classmap": [
     628                    "stubs/Stringable.php"
     629                ]
     630            },
     631            "notification-url": "https://packagist.org/downloads/",
     632            "license": [
     633                "MIT"
     634            ],
     635            "authors": [
     636                {
     637                    "name": "PHP Enum contributors",
     638                    "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
     639                }
     640            ],
     641            "description": "PHP Enum implementation",
     642            "homepage": "http://github.com/myclabs/php-enum",
     643            "keywords": [
     644                "enum"
     645            ],
     646            "support": {
     647                "issues": "https://github.com/myclabs/php-enum/issues",
     648                "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
     649            },
     650            "funding": [
     651                {
     652                    "url": "https://github.com/mnapoli",
     653                    "type": "github"
     654                },
     655                {
     656                    "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
     657                    "type": "tidelift"
     658                }
     659            ],
     660            "install-path": "../myclabs/php-enum"
     661        },
     662        {
     663            "name": "phpoption/phpoption",
     664            "version": "1.9.0",
     665            "version_normalized": "1.9.0.0",
     666            "source": {
     667                "type": "git",
     668                "url": "https://github.com/schmittjoh/php-option.git",
     669                "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab"
     670            },
     671            "dist": {
     672                "type": "zip",
     673                "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
     674                "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
     675                "shasum": ""
     676            },
     677            "require": {
     678                "php": "^7.2.5 || ^8.0"
     679            },
     680            "require-dev": {
     681                "bamarni/composer-bin-plugin": "^1.8",
     682                "phpunit/phpunit": "^8.5.28 || ^9.5.21"
     683            },
     684            "time": "2022-07-30T15:51:26+00:00",
     685            "type": "library",
     686            "extra": {
     687                "bamarni-bin": {
     688                    "bin-links": true,
     689                    "forward-command": true
     690                },
     691                "branch-alias": {
     692                    "dev-master": "1.9-dev"
     693                }
     694            },
     695            "installation-source": "dist",
     696            "autoload": {
     697                "psr-4": {
     698                    "PhpOption\\": "src/PhpOption/"
     699                }
     700            },
     701            "notification-url": "https://packagist.org/downloads/",
     702            "license": [
     703                "Apache-2.0"
     704            ],
     705            "authors": [
     706                {
     707                    "name": "Johannes M. Schmitt",
     708                    "email": "[email protected]",
     709                    "homepage": "https://github.com/schmittjoh"
     710                },
     711                {
     712                    "name": "Graham Campbell",
     713                    "email": "[email protected]",
     714                    "homepage": "https://github.com/GrahamCampbell"
     715                }
     716            ],
     717            "description": "Option Type for PHP",
     718            "keywords": [
     719                "language",
     720                "option",
     721                "php",
     722                "type"
     723            ],
     724            "support": {
     725                "issues": "https://github.com/schmittjoh/php-option/issues",
     726                "source": "https://github.com/schmittjoh/php-option/tree/1.9.0"
     727            },
     728            "funding": [
     729                {
     730                    "url": "https://github.com/GrahamCampbell",
     731                    "type": "github"
     732                },
     733                {
     734                    "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
     735                    "type": "tidelift"
     736                }
     737            ],
     738            "install-path": "../phpoption/phpoption"
     739        },
     740        {
     741            "name": "psr/cache",
     742            "version": "1.0.1",
     743            "version_normalized": "1.0.1.0",
     744            "source": {
     745                "type": "git",
     746                "url": "https://github.com/php-fig/cache.git",
     747                "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
     748            },
     749            "dist": {
     750                "type": "zip",
     751                "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
     752                "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
     753                "shasum": ""
     754            },
     755            "require": {
     756                "php": ">=5.3.0"
     757            },
     758            "time": "2016-08-06T20:24:11+00:00",
     759            "type": "library",
     760            "extra": {
     761                "branch-alias": {
     762                    "dev-master": "1.0.x-dev"
     763                }
     764            },
     765            "installation-source": "dist",
     766            "autoload": {
     767                "psr-4": {
     768                    "Psr\\Cache\\": "src/"
     769                }
     770            },
     771            "notification-url": "https://packagist.org/downloads/",
     772            "license": [
     773                "MIT"
     774            ],
     775            "authors": [
     776                {
     777                    "name": "PHP-FIG",
     778                    "homepage": "http://www.php-fig.org/"
     779                }
     780            ],
     781            "description": "Common interface for caching libraries",
     782            "keywords": [
     783                "cache",
     784                "psr",
     785                "psr-6"
     786            ],
     787            "support": {
     788                "source": "https://github.com/php-fig/cache/tree/master"
     789            },
     790            "install-path": "../psr/cache"
     791        },
     792        {
     793            "name": "psr/container",
     794            "version": "1.1.2",
     795            "version_normalized": "1.1.2.0",
     796            "source": {
     797                "type": "git",
     798                "url": "https://github.com/php-fig/container.git",
     799                "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
     800            },
     801            "dist": {
     802                "type": "zip",
     803                "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
     804                "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
     805                "shasum": ""
     806            },
     807            "require": {
     808                "php": ">=7.4.0"
     809            },
     810            "time": "2021-11-05T16:50:12+00:00",
     811            "type": "library",
     812            "installation-source": "dist",
     813            "autoload": {
     814                "psr-4": {
     815                    "Psr\\Container\\": "src/"
     816                }
     817            },
     818            "notification-url": "https://packagist.org/downloads/",
     819            "license": [
     820                "MIT"
     821            ],
     822            "authors": [
     823                {
     824                    "name": "PHP-FIG",
     825                    "homepage": "https://www.php-fig.org/"
     826                }
     827            ],
     828            "description": "Common Container Interface (PHP FIG PSR-11)",
     829            "homepage": "https://github.com/php-fig/container",
     830            "keywords": [
     831                "PSR-11",
     832                "container",
     833                "container-interface",
     834                "container-interop",
     835                "psr"
     836            ],
     837            "support": {
     838                "issues": "https://github.com/php-fig/container/issues",
     839                "source": "https://github.com/php-fig/container/tree/1.1.2"
     840            },
     841            "install-path": "../psr/container"
     842        },
     843        {
     844            "name": "psr/event-dispatcher",
     845            "version": "1.0.0",
     846            "version_normalized": "1.0.0.0",
     847            "source": {
     848                "type": "git",
     849                "url": "https://github.com/php-fig/event-dispatcher.git",
     850                "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
     851            },
     852            "dist": {
     853                "type": "zip",
     854                "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
     855                "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
     856                "shasum": ""
     857            },
     858            "require": {
     859                "php": ">=7.2.0"
     860            },
     861            "time": "2019-01-08T18:20:26+00:00",
     862            "type": "library",
     863            "extra": {
     864                "branch-alias": {
     865                    "dev-master": "1.0.x-dev"
     866                }
     867            },
     868            "installation-source": "dist",
     869            "autoload": {
     870                "psr-4": {
     871                    "Psr\\EventDispatcher\\": "src/"
     872                }
     873            },
     874            "notification-url": "https://packagist.org/downloads/",
     875            "license": [
     876                "MIT"
     877            ],
     878            "authors": [
     879                {
     880                    "name": "PHP-FIG",
     881                    "homepage": "http://www.php-fig.org/"
     882                }
     883            ],
     884            "description": "Standard interfaces for event handling.",
     885            "keywords": [
     886                "events",
     887                "psr",
     888                "psr-14"
     889            ],
     890            "support": {
     891                "issues": "https://github.com/php-fig/event-dispatcher/issues",
     892                "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
     893            },
     894            "install-path": "../psr/event-dispatcher"
     895        },
     896        {
     897            "name": "psr/log",
     898            "version": "1.1.4",
     899            "version_normalized": "1.1.4.0",
     900            "source": {
     901                "type": "git",
     902                "url": "https://github.com/php-fig/log.git",
     903                "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
     904            },
     905            "dist": {
     906                "type": "zip",
     907                "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
     908                "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
     909                "shasum": ""
     910            },
     911            "require": {
     912                "php": ">=5.3.0"
     913            },
     914            "time": "2021-05-03T11:20:27+00:00",
     915            "type": "library",
     916            "extra": {
     917                "branch-alias": {
     918                    "dev-master": "1.1.x-dev"
     919                }
     920            },
     921            "installation-source": "dist",
     922            "autoload": {
     923                "psr-4": {
     924                    "Psr\\Log\\": "Psr/Log/"
     925                }
     926            },
     927            "notification-url": "https://packagist.org/downloads/",
     928            "license": [
     929                "MIT"
     930            ],
     931            "authors": [
     932                {
     933                    "name": "PHP-FIG",
     934                    "homepage": "https://www.php-fig.org/"
     935                }
     936            ],
     937            "description": "Common interface for logging libraries",
     938            "homepage": "https://github.com/php-fig/log",
     939            "keywords": [
     940                "log",
     941                "psr",
     942                "psr-3"
     943            ],
     944            "support": {
     945                "source": "https://github.com/php-fig/log/tree/1.1.4"
     946            },
     947            "install-path": "../psr/log"
     948        },
    3949        {
    4950            "name": "rakit/validation",
     
    49995            },
    50996            "install-path": "../rakit/validation"
     997        },
     998        {
     999            "name": "roave/security-advisories",
     1000            "version": "dev-latest",
     1001            "version_normalized": "dev-latest",
     1002            "source": {
     1003                "type": "git",
     1004                "url": "https://github.com/Roave/SecurityAdvisories.git",
     1005                "reference": "a5d6404aa779f8c718f5e90164da5c37a6065aaf"
     1006            },
     1007            "dist": {
     1008                "type": "zip",
     1009                "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/a5d6404aa779f8c718f5e90164da5c37a6065aaf",
     1010                "reference": "a5d6404aa779f8c718f5e90164da5c37a6065aaf",
     1011                "shasum": ""
     1012            },
     1013            "conflict": {
     1014                "3f/pygmentize": "<1.2",
     1015                "admidio/admidio": "<4.1.9",
     1016                "adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3",
     1017                "aheinze/cockpit": "<=2.2.1",
     1018                "akaunting/akaunting": "<2.1.13",
     1019                "alextselegidis/easyappointments": "<=1.4.3",
     1020                "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
     1021                "amazing/media2click": ">=1,<1.3.3",
     1022                "amphp/artax": "<1.0.6|>=2,<2.0.6",
     1023                "amphp/http": "<1.0.1",
     1024                "amphp/http-client": ">=4,<4.4",
     1025                "anchorcms/anchor-cms": "<=0.12.7",
     1026                "andreapollastri/cipi": "<=3.1.15",
     1027                "apereo/phpcas": "<1.6",
     1028                "api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6",
     1029                "appwrite/server-ce": "<0.11.1|>=0.12,<0.12.2",
     1030                "area17/twill": "<1.2.5|>=2,<2.5.3",
     1031                "asymmetricrypt/asymmetricrypt": ">=0,<9.9.99",
     1032                "awesome-support/awesome-support": "<=6.0.7",
     1033                "aws/aws-sdk-php": ">=3,<3.2.1",
     1034                "backdrop/backdrop": "<=1.23",
     1035                "badaso/core": "<2.7",
     1036                "bagisto/bagisto": "<0.1.5",
     1037                "barrelstrength/sprout-base-email": "<1.2.7",
     1038                "barrelstrength/sprout-forms": "<3.9",
     1039                "barryvdh/laravel-translation-manager": "<0.6.2",
     1040                "baserproject/basercms": "<4.7.2",
     1041                "billz/raspap-webgui": "<=2.6.6",
     1042                "bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3",
     1043                "bmarshall511/wordpress_zero_spam": "<5.2.13",
     1044                "bolt/bolt": "<3.7.2",
     1045                "bolt/core": "<=4.2",
     1046                "bottelet/flarepoint": "<2.2.1",
     1047                "brightlocal/phpwhois": "<=4.2.5",
     1048                "brotkrueml/codehighlight": "<2.7",
     1049                "brotkrueml/schema": "<1.13.1|>=2,<2.5.1",
     1050                "brotkrueml/typo3-matomo-integration": "<1.3.2",
     1051                "buddypress/buddypress": "<7.2.1",
     1052                "bugsnag/bugsnag-laravel": ">=2,<2.0.2",
     1053                "bytefury/crater": "<6.0.2",
     1054                "cachethq/cachet": "<2.5.1",
     1055                "cakephp/cakephp": "<3.10.3|>=4,<4.0.6",
     1056                "cardgate/magento2": "<2.0.33",
     1057                "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
     1058                "cartalyst/sentry": "<=2.1.6",
     1059                "catfan/medoo": "<1.7.5",
     1060                "centreon/centreon": "<22.10-beta.1",
     1061                "cesnet/simplesamlphp-module-proxystatistics": "<3.1",
     1062                "codeception/codeception": "<3.1.3|>=4,<4.1.22",
     1063                "codeigniter/framework": "<=3.0.6",
     1064                "codeigniter4/framework": "<4.2.7",
     1065                "codeigniter4/shield": "= 1.0.0-beta",
     1066                "codiad/codiad": "<=2.8.4",
     1067                "composer/composer": "<1.10.26|>=2-alpha.1,<2.2.12|>=2.3,<2.3.5",
     1068                "concrete5/concrete5": "<=9.1.3|>= 9.0.0RC1, < 9.1.3",
     1069                "concrete5/core": "<8.5.8|>=9,<9.1",
     1070                "contao-components/mediaelement": ">=2.14.2,<2.21.1",
     1071                "contao/contao": ">=4,<4.4.56|>=4.5,<4.9.18|>=4.10,<4.11.7|>=4.13,<4.13.3",
     1072                "contao/core": ">=2,<3.5.39",
     1073                "contao/core-bundle": "<4.9.18|>=4.10,<4.11.7|>=4.13,<4.13.3|= 4.10.0",
     1074                "contao/listing-bundle": ">=4,<4.4.8",
     1075                "contao/managed-edition": "<=1.5",
     1076                "craftcms/cms": "<3.7.55.2|>= 4.0.0-RC1, < 4.2.1",
     1077                "croogo/croogo": "<3.0.7",
     1078                "cuyz/valinor": "<0.12",
     1079                "czproject/git-php": "<4.0.3",
     1080                "darylldoyle/safe-svg": "<1.9.10",
     1081                "datadog/dd-trace": ">=0.30,<0.30.2",
     1082                "david-garcia/phpwhois": "<=4.3.1",
     1083                "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1",
     1084                "directmailteam/direct-mail": "<5.2.4",
     1085                "doctrine/annotations": ">=1,<1.2.7",
     1086                "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2",
     1087                "doctrine/common": ">=2,<2.4.3|>=2.5,<2.5.1",
     1088                "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2|>=3,<3.1.4",
     1089                "doctrine/doctrine-bundle": "<1.5.2",
     1090                "doctrine/doctrine-module": "<=0.7.1",
     1091                "doctrine/mongodb-odm": ">=1,<1.0.2",
     1092                "doctrine/mongodb-odm-bundle": ">=2,<3.0.1",
     1093                "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4",
     1094                "dolibarr/dolibarr": "<16|>=16.0.1,<16.0.3|= 12.0.5|>= 3.3.beta1, < 13.0.2",
     1095                "dompdf/dompdf": "<2.0.1",
     1096                "drupal/core": ">=7,<7.91|>=8,<9.3.19|>=9.4,<9.4.3",
     1097                "drupal/drupal": ">=7,<7.80|>=8,<8.9.16|>=9,<9.1.12|>=9.2,<9.2.4",
     1098                "dweeves/magmi": "<=0.7.24",
     1099                "ecodev/newsletter": "<=4",
     1100                "ectouch/ectouch": "<=2.7.2",
     1101                "elefant/cms": "<1.3.13",
     1102                "elgg/elgg": "<3.3.24|>=4,<4.0.5",
     1103                "endroid/qr-code-bundle": "<3.4.2",
     1104                "enshrined/svg-sanitize": "<0.15",
     1105                "erusev/parsedown": "<1.7.2",
     1106                "ether/logs": "<3.0.4",
     1107                "exceedone/exment": "<4.4.3|>=5,<5.0.3",
     1108                "exceedone/laravel-admin": "= 3.0.0|<2.2.3",
     1109                "ezsystems/demobundle": ">=5.4,<5.4.6.1",
     1110                "ezsystems/ez-support-tools": ">=2.2,<2.2.3",
     1111                "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1",
     1112                "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1|>=5.4,<5.4.11.1|>=2017.12,<2017.12.0.1",
     1113                "ezsystems/ezplatform": "<=1.13.6|>=2,<=2.5.24",
     1114                "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.26",
     1115                "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1",
     1116                "ezsystems/ezplatform-graphql": ">=1-rc.1,<1.0.13|>=2-beta.1,<2.3.12",
     1117                "ezsystems/ezplatform-kernel": "<=1.2.5|>=1.3,<1.3.26",
     1118                "ezsystems/ezplatform-rest": ">=1.2,<=1.2.2|>=1.3,<1.3.8",
     1119                "ezsystems/ezplatform-richtext": ">=2.3,<=2.3.7",
     1120                "ezsystems/ezplatform-user": ">=1,<1.0.1",
     1121                "ezsystems/ezpublish-kernel": "<=6.13.8.1|>=7,<7.5.30",
     1122                "ezsystems/ezpublish-legacy": "<=2017.12.7.3|>=2018.6,<=2019.3.5.1",
     1123                "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3",
     1124                "ezsystems/repository-forms": ">=2.3,<2.3.2.1|>=2.5,<2.5.15",
     1125                "ezyang/htmlpurifier": "<4.1.1",
     1126                "facade/ignition": "<1.16.15|>=2,<2.4.2|>=2.5,<2.5.2",
     1127                "facturascripts/facturascripts": "<=2022.8",
     1128                "feehi/cms": "<=2.1.1",
     1129                "feehi/feehicms": "<=2.0.1.1",
     1130                "fenom/fenom": "<=2.12.1",
     1131                "filegator/filegator": "<7.8",
     1132                "firebase/php-jwt": "<2",
     1133                "flarum/core": ">=1,<=1.0.1|>=1.5,<1.6.2",
     1134                "flarum/sticky": ">=0.1-beta.14,<=0.1-beta.15",
     1135                "flarum/tags": "<=0.1-beta.13",
     1136                "fluidtypo3/vhs": "<5.1.1",
     1137                "fof/byobu": ">=0.3-beta.2,<1.1.7",
     1138                "fof/upload": "<1.2.3",
     1139                "fooman/tcpdf": "<6.2.22",
     1140                "forkcms/forkcms": "<5.11.1",
     1141                "fossar/tcpdf-parser": "<6.2.22",
     1142                "francoisjacquet/rosariosis": "<10.1",
     1143                "friendsofsymfony/oauth2-php": "<1.3",
     1144                "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2",
     1145                "friendsofsymfony/user-bundle": ">=1.2,<1.3.5",
     1146                "friendsoftypo3/mediace": ">=7.6.2,<7.6.5",
     1147                "froala/wysiwyg-editor": "<3.2.7",
     1148                "froxlor/froxlor": "<0.10.39",
     1149                "fuel/core": "<1.8.1",
     1150                "gaoming13/wechat-php-sdk": "<=1.10.2",
     1151                "genix/cms": "<=1.1.11",
     1152                "getgrav/grav": "<1.7.34",
     1153                "getkirby/cms": "= 3.8.0|<3.5.8.2|>=3.6,<3.6.6.2|>=3.7,<3.7.5.1",
     1154                "getkirby/panel": "<2.5.14",
     1155                "getkirby/starterkit": "<=3.7.0.2",
     1156                "gilacms/gila": "<=1.11.4",
     1157                "globalpayments/php-sdk": "<2",
     1158                "google/protobuf": "<3.15",
     1159                "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3",
     1160                "gree/jose": "<=2.2",
     1161                "gregwar/rst": "<1.0.3",
     1162                "grumpydictator/firefly-iii": "<5.6.5",
     1163                "guzzlehttp/guzzle": "<6.5.8|>=7,<7.4.5",
     1164                "guzzlehttp/psr7": "<1.8.4|>=2,<2.1.1",
     1165                "helloxz/imgurl": "= 2.31|<=2.31",
     1166                "hillelcoren/invoice-ninja": "<5.3.35",
     1167                "hjue/justwriting": "<=1",
     1168                "hov/jobfair": "<1.0.13|>=2,<2.0.2",
     1169                "hyn/multi-tenant": ">=5.6,<5.7.2",
     1170                "ibexa/admin-ui": ">=4.2,<4.2.3",
     1171                "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3",
     1172                "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3",
     1173                "ibexa/post-install": "<=1.0.4",
     1174                "icecoder/icecoder": "<=8.1",
     1175                "idno/known": "<=1.3.1",
     1176                "illuminate/auth": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.10",
     1177                "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4",
     1178                "illuminate/database": "<6.20.26|>=7,<7.30.5|>=8,<8.40",
     1179                "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15",
     1180                "illuminate/view": "<6.20.42|>=7,<7.30.6|>=8,<8.75",
     1181                "impresscms/impresscms": "<=1.4.3",
     1182                "in2code/femanager": "<5.5.2|>=6,<6.3.3|>=7,<7.0.1",
     1183                "in2code/lux": "<17.6.1|>=18,<24.0.2",
     1184                "intelliants/subrion": "<=4.2.1",
     1185                "islandora/islandora": ">=2,<2.4.1",
     1186                "ivankristianto/phpwhois": "<=4.3",
     1187                "jackalope/jackalope-doctrine-dbal": "<1.7.4",
     1188                "james-heinrich/getid3": "<1.9.21",
     1189                "jasig/phpcas": "<1.3.3",
     1190                "joomla/archive": "<1.1.12|>=2,<2.0.1",
     1191                "joomla/filesystem": "<1.6.2|>=2,<2.0.1",
     1192                "joomla/filter": "<1.4.4|>=2,<2.0.1",
     1193                "joomla/input": ">=2,<2.0.2",
     1194                "joomla/session": "<1.3.1",
     1195                "joyqi/hyper-down": "<=2.4.27",
     1196                "jsdecena/laracom": "<2.0.9",
     1197                "jsmitty12/phpwhois": "<5.1",
     1198                "kazist/phpwhois": "<=4.2.6",
     1199                "kevinpapst/kimai2": "<1.16.7",
     1200                "kitodo/presentation": "<3.1.2",
     1201                "klaviyo/magento2-extension": ">=1,<3",
     1202                "krayin/laravel-crm": "<1.2.2",
     1203                "kreait/firebase-php": ">=3.2,<3.8.1",
     1204                "la-haute-societe/tcpdf": "<6.2.22",
     1205                "laminas/laminas-diactoros": "<2.11.1",
     1206                "laminas/laminas-form": "<2.17.1|>=3,<3.0.2|>=3.1,<3.1.1",
     1207                "laminas/laminas-http": "<2.14.2",
     1208                "laravel/fortify": "<1.11.1",
     1209                "laravel/framework": "<6.20.42|>=7,<7.30.6|>=8,<8.75",
     1210                "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10",
     1211                "latte/latte": "<2.10.8",
     1212                "lavalite/cms": "<=5.8",
     1213                "lcobucci/jwt": ">=3.4,<3.4.6|>=4,<4.0.4|>=4.1,<4.1.5",
     1214                "league/commonmark": "<0.18.3",
     1215                "league/flysystem": "<1.1.4|>=2,<2.1.1",
     1216                "lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3",
     1217                "librenms/librenms": "<22.10",
     1218                "limesurvey/limesurvey": "<3.27.19",
     1219                "livehelperchat/livehelperchat": "<=3.91",
     1220                "livewire/livewire": ">2.2.4,<2.2.6",
     1221                "lms/routes": "<2.1.1",
     1222                "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2",
     1223                "luyadev/yii-helpers": "<1.2.1",
     1224                "magento/community-edition": ">=2,<2.2.10|>=2.3,<2.3.3",
     1225                "magento/magento1ce": "<1.9.4.3",
     1226                "magento/magento1ee": ">=1,<1.14.4.3",
     1227                "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2-p.2",
     1228                "marcwillmann/turn": "<0.3.3",
     1229                "matyhtf/framework": "<3.0.6",
     1230                "mautic/core": "<4.3|= 2.13.1",
     1231                "mediawiki/core": ">=1.27,<1.27.6|>=1.29,<1.29.3|>=1.30,<1.30.2|>=1.31,<1.31.9|>=1.32,<1.32.6|>=1.32.99,<1.33.3|>=1.33.99,<1.34.3|>=1.34.99,<1.35",
     1232                "melisplatform/melis-asset-manager": "<5.0.1",
     1233                "melisplatform/melis-cms": "<5.0.1",
     1234                "melisplatform/melis-front": "<5.0.1",
     1235                "mezzio/mezzio-swoole": "<3.7|>=4,<4.3",
     1236                "microweber/microweber": "<=1.3.1",
     1237                "miniorange/miniorange-saml": "<1.4.3",
     1238                "mittwald/typo3_forum": "<1.2.1",
     1239                "modx/revolution": "<= 2.8.3-pl|<2.8",
     1240                "mojo42/jirafeau": "<4.4",
     1241                "monolog/monolog": ">=1.8,<1.12",
     1242                "moodle/moodle": "<4.0.5",
     1243                "mustache/mustache": ">=2,<2.14.1",
     1244                "namshi/jose": "<2.2",
     1245                "neoan3-apps/template": "<1.1.1",
     1246                "neorazorx/facturascripts": "<2022.4",
     1247                "neos/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
     1248                "neos/form": ">=1.2,<4.3.3|>=5,<5.0.9|>=5.1,<5.1.3",
     1249                "neos/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.9.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<5.3.10|>=7,<7.0.9|>=7.1,<7.1.7|>=7.2,<7.2.6|>=7.3,<7.3.4|>=8,<8.0.2",
     1250                "neos/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",
     1251                "netgen/tagsbundle": ">=3.4,<3.4.11|>=4,<4.0.15",
     1252                "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6",
     1253                "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13",
     1254                "nilsteampassnet/teampass": "<=2.1.27.36",
     1255                "notrinos/notrinos-erp": "<=0.7",
     1256                "noumo/easyii": "<=0.9",
     1257                "nukeviet/nukeviet": "<4.5.2",
     1258                "nystudio107/craft-seomatic": "<3.4.12",
     1259                "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1",
     1260                "october/backend": "<1.1.2",
     1261                "october/cms": "= 1.1.1|= 1.0.471|= 1.0.469|>=1.0.319,<1.0.469",
     1262                "october/october": ">=1.0.319,<1.0.466|>=2.1,<2.1.12",
     1263                "october/rain": "<1.0.472|>=1.1,<1.1.2",
     1264                "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.0.66",
     1265                "onelogin/php-saml": "<2.10.4",
     1266                "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5",
     1267                "open-web-analytics/open-web-analytics": "<1.7.4",
     1268                "opencart/opencart": "<=3.0.3.7",
     1269                "openid/php-openid": "<2.3",
     1270                "openmage/magento-lts": "<19.4.15|>=20,<20.0.13",
     1271                "orchid/platform": ">=9,<9.4.4",
     1272                "oro/commerce": ">=4.1,<5.0.6",
     1273                "oro/crm": ">=1.7,<1.7.4|>=3.1,<4.1.17|>=4.2,<4.2.7",
     1274                "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<4.2.8",
     1275                "packbackbooks/lti-1-3-php-library": "<5",
     1276                "padraic/humbug_get_contents": "<1.1.2",
     1277                "pagarme/pagarme-php": ">=0,<3",
     1278                "pagekit/pagekit": "<=1.0.18",
     1279                "paragonie/random_compat": "<2",
     1280                "passbolt/passbolt_api": "<2.11",
     1281                "paypal/merchant-sdk-php": "<3.12",
     1282                "pear/archive_tar": "<1.4.14",
     1283                "pear/crypt_gpg": "<1.6.7",
     1284                "pegasus/google-for-jobs": "<1.5.1|>=2,<2.1.1",
     1285                "personnummer/personnummer": "<3.0.2",
     1286                "phanan/koel": "<5.1.4",
     1287                "phpfastcache/phpfastcache": "<6.1.5|>=7,<7.1.2|>=8,<8.0.7",
     1288                "phpmailer/phpmailer": "<6.5",
     1289                "phpmussel/phpmussel": ">=1,<1.6",
     1290                "phpmyadmin/phpmyadmin": "<5.1.3",
     1291                "phpmyfaq/phpmyfaq": "<=3.1.7",
     1292                "phpoffice/phpexcel": "<1.8",
     1293                "phpoffice/phpspreadsheet": "<1.16",
     1294                "phpseclib/phpseclib": "<2.0.31|>=3,<3.0.7",
     1295                "phpservermon/phpservermon": "<=3.5.2",
     1296                "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5,<5.6.3",
     1297                "phpwhois/phpwhois": "<=4.2.5",
     1298                "phpxmlrpc/extras": "<0.6.1",
     1299                "phpxmlrpc/phpxmlrpc": "<4.9",
     1300                "pimcore/data-hub": "<1.2.4",
     1301                "pimcore/pimcore": "<10.5.9",
     1302                "pocketmine/bedrock-protocol": "<8.0.2",
     1303                "pocketmine/pocketmine-mp": "<4.7.2|>= 4.0.0-BETA5, < 4.4.2",
     1304                "pressbooks/pressbooks": "<5.18",
     1305                "prestashop/autoupgrade": ">=4,<4.10.1",
     1306                "prestashop/blockwishlist": ">=2,<2.1.1",
     1307                "prestashop/contactform": ">=1.0.1,<4.3",
     1308                "prestashop/gamification": "<2.3.2",
     1309                "prestashop/prestashop": "<1.7.8.8",
     1310                "prestashop/productcomments": "<5.0.2",
     1311                "prestashop/ps_emailsubscription": "<2.6.1",
     1312                "prestashop/ps_facetedsearch": "<3.4.1",
     1313                "prestashop/ps_linklist": "<3.1",
     1314                "privatebin/privatebin": "<1.4",
     1315                "processwire/processwire": "<=3.0.200",
     1316                "propel/propel": ">=2-alpha.1,<=2-alpha.7",
     1317                "propel/propel1": ">=1,<=1.7.1",
     1318                "pterodactyl/panel": "<1.7",
     1319                "ptrofimov/beanstalk_console": "<1.7.14",
     1320                "pusher/pusher-php-server": "<2.2.1",
     1321                "pwweb/laravel-core": "<=0.3.6-beta",
     1322                "pyrocms/pyrocms": "<=3.9.1",
     1323                "rainlab/debugbar-plugin": "<3.1",
     1324                "rankmath/seo-by-rank-math": "<=1.0.95",
     1325                "react/http": ">=0.7,<1.7",
     1326                "remdex/livehelperchat": "<3.99",
     1327                "rmccue/requests": ">=1.6,<1.8",
     1328                "robrichards/xmlseclibs": "<3.0.4",
     1329                "rudloff/alltube": "<3.0.3",
     1330                "s-cart/core": "<6.9",
     1331                "s-cart/s-cart": "<6.9",
     1332                "sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1",
     1333                "sabre/dav": ">=1.6,<1.6.99|>=1.7,<1.7.11|>=1.8,<1.8.9",
     1334                "scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11",
     1335                "sensiolabs/connect": "<4.2.3",
     1336                "serluck/phpwhois": "<=4.2.6",
     1337                "shopware/core": "<=6.4.9",
     1338                "shopware/platform": "<=6.4.9",
     1339                "shopware/production": "<=6.3.5.2",
     1340                "shopware/shopware": "<=5.7.14",
     1341                "shopware/storefront": "<=6.4.8.1",
     1342                "shopxo/shopxo": "<2.2.6",
     1343                "showdoc/showdoc": "<2.10.4",
     1344                "silverstripe/admin": ">=1,<1.11.3",
     1345                "silverstripe/assets": ">=1,<1.11.1",
     1346                "silverstripe/cms": "<4.11.3",
     1347                "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1",
     1348                "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3",
     1349                "silverstripe/framework": "<4.11.14",
     1350                "silverstripe/graphql": "<3.5.2|>=4-alpha.1,<4-alpha.2|= 4.0.0-alpha1",
     1351                "silverstripe/hybridsessions": ">=1,<2.4.1|>=2.5,<2.5.1",
     1352                "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1",
     1353                "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4",
     1354                "silverstripe/silverstripe-omnipay": "<2.5.2|>=3,<3.0.2|>=3.1,<3.1.4|>=3.2,<3.2.1",
     1355                "silverstripe/subsites": ">=2,<2.1.1",
     1356                "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1",
     1357                "silverstripe/userforms": "<3",
     1358                "silverstripe/versioned-admin": ">=1,<1.11.1",
     1359                "simple-updates/phpwhois": "<=1",
     1360                "simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4",
     1361                "simplesamlphp/simplesamlphp": "<1.18.6",
     1362                "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1",
     1363                "simplito/elliptic-php": "<1.0.6",
     1364                "slim/slim": "<2.6",
     1365                "smarty/smarty": "<3.1.47|>=4,<4.2.1",
     1366                "snipe/snipe-it": "<6.0.11|>= 6.0.0-RC-1, <= 6.0.0-RC-5",
     1367                "socalnick/scn-social-auth": "<1.15.2",
     1368                "socialiteproviders/steam": "<1.1",
     1369                "spatie/browsershot": "<3.57.4",
     1370                "spipu/html2pdf": "<5.2.4",
     1371                "spoonity/tcpdf": "<6.2.22",
     1372                "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",
     1373                "ssddanbrown/bookstack": "<22.2.3",
     1374                "statamic/cms": "<3.2.39|>=3.3,<3.3.2",
     1375                "stormpath/sdk": ">=0,<9.9.99",
     1376                "studio-42/elfinder": "<2.1.59",
     1377                "subrion/cms": "<=4.2.1",
     1378                "sulu/sulu": "= 2.4.0-RC1|<1.6.44|>=2,<2.2.18|>=2.3,<2.3.8",
     1379                "swiftmailer/swiftmailer": ">=4,<5.4.5",
     1380                "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
     1381                "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
     1382                "sylius/grid-bundle": "<1.10.1",
     1383                "sylius/paypal-plugin": ">=1,<1.2.4|>=1.3,<1.3.1",
     1384                "sylius/resource-bundle": "<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4",
     1385                "sylius/sylius": "<1.9.10|>=1.10,<1.10.11|>=1.11,<1.11.2",
     1386                "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99",
     1387                "symbiote/silverstripe-queuedjobs": ">=3,<3.0.2|>=3.1,<3.1.4|>=4,<4.0.7|>=4.1,<4.1.2|>=4.2,<4.2.4|>=4.3,<4.3.3|>=4.4,<4.4.3|>=4.5,<4.5.1|>=4.6,<4.6.4",
     1388                "symbiote/silverstripe-versionedfiles": "<=2.0.3",
     1389                "symfont/process": ">=0,<4",
     1390                "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8",
     1391                "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
     1392                "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4",
     1393                "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1",
     1394                "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=5.3.14,<=5.3.14|>=5.4.3,<=5.4.3|>=6.0.3,<=6.0.3|= 6.0.3|= 5.4.3|= 5.3.14",
     1395                "symfony/http-foundation": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7",
     1396                "symfony/http-kernel": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.4.13|>=5,<5.1.5|>=5.2,<5.3.12",
     1397                "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13",
     1398                "symfony/maker-bundle": ">=1.27,<1.29.2|>=1.30,<1.31.1",
     1399                "symfony/mime": ">=4.3,<4.3.8",
     1400                "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
     1401                "symfony/polyfill": ">=1,<1.10",
     1402                "symfony/polyfill-php55": ">=1,<1.10",
     1403                "symfony/proxy-manager-bridge": ">=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
     1404                "symfony/routing": ">=2,<2.0.19",
     1405                "symfony/security": ">=2,<2.7.51|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.8",
     1406                "symfony/security-bundle": ">=2,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11|>=5.3,<5.3.12",
     1407                "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.9",
     1408                "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
     1409                "symfony/security-guard": ">=2.8,<3.4.48|>=4,<4.4.23|>=5,<5.2.8",
     1410                "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7|>=5.1,<5.2.8|>=5.3,<5.3.2",
     1411                "symfony/serializer": ">=2,<2.0.11|>=4.1,<4.4.35|>=5,<5.3.12",
     1412                "symfony/symfony": ">=2,<3.4.49|>=4,<4.4.35|>=5,<5.3.12|>=5.3.14,<=5.3.14|>=5.4.3,<=5.4.3|>=6.0.3,<=6.0.3",
     1413                "symfony/translation": ">=2,<2.0.17",
     1414                "symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3",
     1415                "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8",
     1416                "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",
     1417                "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7",
     1418                "t3/dce": ">=2.2,<2.6.2",
     1419                "t3g/svg-sanitizer": "<1.0.3",
     1420                "tastyigniter/tastyigniter": "<3.3",
     1421                "tecnickcom/tcpdf": "<6.2.22",
     1422                "terminal42/contao-tablelookupwizard": "<3.3.5",
     1423                "thelia/backoffice-default-template": ">=2.1,<2.1.2",
     1424                "thelia/thelia": ">=2.1-beta.1,<2.1.3",
     1425                "theonedemon/phpwhois": "<=4.2.5",
     1426                "thinkcmf/thinkcmf": "<=5.1.7",
     1427                "thorsten/phpmyfaq": "<3.1.8",
     1428                "tinymce/tinymce": "<5.10.7|>=6,<6.3.1",
     1429                "titon/framework": ">=0,<9.9.99",
     1430                "tobiasbg/tablepress": "<= 2.0-RC1",
     1431                "topthink/framework": "<=6.0.13",
     1432                "topthink/think": "<=6.0.9",
     1433                "topthink/thinkphp": "<=3.2.3",
     1434                "tribalsystems/zenario": "<=9.3.57595",
     1435                "truckersmp/phpwhois": "<=4.3.1",
     1436                "twig/twig": "<1.44.7|>=2,<2.15.3|>=3,<3.4.3",
     1437                "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.38|>=9,<9.5.29|>=10,<10.4.32|>=11,<11.5.16",
     1438                "typo3/cms-backend": ">=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1",
     1439                "typo3/cms-core": ">=6.2,<=6.2.56|>=7,<7.6.58|>=8,<8.7.48|>=9,<9.5.37|>=10,<10.4.32|>=11,<11.5.16",
     1440                "typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1",
     1441                "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
     1442                "typo3/html-sanitizer": ">=1,<1.0.7|>=2,<2.0.16",
     1443                "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3",
     1444                "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1",
     1445                "typo3/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",
     1446                "typo3fluid/fluid": ">=2,<2.0.8|>=2.1,<2.1.7|>=2.2,<2.2.4|>=2.3,<2.3.7|>=2.4,<2.4.4|>=2.5,<2.5.11|>=2.6,<2.6.10",
     1447                "ua-parser/uap-php": "<3.8",
     1448                "unisharp/laravel-filemanager": "<=2.5.1",
     1449                "userfrosting/userfrosting": ">=0.3.1,<4.6.3",
     1450                "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2",
     1451                "vanilla/safecurl": "<0.9.2",
     1452                "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4",
     1453                "vrana/adminer": "<4.8.1",
     1454                "wallabag/tcpdf": "<6.2.22",
     1455                "wanglelecc/laracms": "<=1.0.3",
     1456                "web-auth/webauthn-framework": ">=3.3,<3.3.4",
     1457                "webcoast/deferred-image-processing": "<1.0.2",
     1458                "wikimedia/parsoid": "<0.12.2",
     1459                "willdurand/js-translation-bundle": "<2.1.1",
     1460                "wintercms/winter": "<1.0.475|>=1.1,<1.1.10|>=1.2,<1.2.1",
     1461                "woocommerce/woocommerce": "<6.6",
     1462                "wp-cli/wp-cli": "<2.5",
     1463                "wp-graphql/wp-graphql": "<0.3.5",
     1464                "wpanel/wpanel4-cms": "<=4.3.1",
     1465                "wwbn/avideo": "<=11.6",
     1466                "yeswiki/yeswiki": "<4.1",
     1467                "yetiforce/yetiforce-crm": "<=6.4",
     1468                "yidashi/yii2cmf": "<=2",
     1469                "yii2mod/yii2-cms": "<1.9.2",
     1470                "yiisoft/yii": "<1.1.27",
     1471                "yiisoft/yii2": "<2.0.38",
     1472                "yiisoft/yii2-bootstrap": "<2.0.4",
     1473                "yiisoft/yii2-dev": "<2.0.43",
     1474                "yiisoft/yii2-elasticsearch": "<2.0.5",
     1475                "yiisoft/yii2-gii": "<2.0.4",
     1476                "yiisoft/yii2-jui": "<2.0.4",
     1477                "yiisoft/yii2-redis": "<2.0.8",
     1478                "yoast-seo-for-typo3/yoast_seo": "<7.2.3",
     1479                "yourls/yourls": "<=1.8.2",
     1480                "zendesk/zendesk_api_client_php": "<2.2.11",
     1481                "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3",
     1482                "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2",
     1483                "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2",
     1484                "zendframework/zend-db": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.10|>=2.3,<2.3.5",
     1485                "zendframework/zend-developer-tools": ">=1.2.2,<1.2.3",
     1486                "zendframework/zend-diactoros": "<1.8.4",
     1487                "zendframework/zend-feed": "<2.10.3",
     1488                "zendframework/zend-form": ">=2,<2.2.7|>=2.3,<2.3.1",
     1489                "zendframework/zend-http": "<2.8.1",
     1490                "zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6",
     1491                "zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3",
     1492                "zendframework/zend-mail": ">=2,<2.4.11|>=2.5,<2.7.2",
     1493                "zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1",
     1494                "zendframework/zend-session": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.9|>=2.3,<2.3.4",
     1495                "zendframework/zend-validator": ">=2.3,<2.3.6",
     1496                "zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1",
     1497                "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6",
     1498                "zendframework/zendframework": "<=3",
     1499                "zendframework/zendframework1": "<1.12.20",
     1500                "zendframework/zendopenid": ">=2,<2.0.2",
     1501                "zendframework/zendxml": ">=1,<1.0.1",
     1502                "zetacomponents/mail": "<1.8.2",
     1503                "zf-commons/zfc-user": "<1.2.2",
     1504                "zfcampus/zf-apigility-doctrine": ">=1,<1.0.3",
     1505                "zfr/zfr-oauth2-server-module": "<0.1.2",
     1506                "zoujingli/thinkadmin": "<6.0.22"
     1507            },
     1508            "time": "2022-12-09T00:16:03+00:00",
     1509            "default-branch": true,
     1510            "type": "metapackage",
     1511            "notification-url": "https://packagist.org/downloads/",
     1512            "license": [
     1513                "MIT"
     1514            ],
     1515            "authors": [
     1516                {
     1517                    "name": "Marco Pivetta",
     1518                    "email": "[email protected]",
     1519                    "role": "maintainer"
     1520                },
     1521                {
     1522                    "name": "Ilya Tribusean",
     1523                    "email": "[email protected]",
     1524                    "role": "maintainer"
     1525                }
     1526            ],
     1527            "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
     1528            "support": {
     1529                "issues": "https://github.com/Roave/SecurityAdvisories/issues",
     1530                "source": "https://github.com/Roave/SecurityAdvisories/tree/latest"
     1531            },
     1532            "funding": [
     1533                {
     1534                    "url": "https://github.com/Ocramius",
     1535                    "type": "github"
     1536                },
     1537                {
     1538                    "url": "https://tidelift.com/funding/github/packagist/roave/security-advisories",
     1539                    "type": "tidelift"
     1540                }
     1541            ],
     1542            "install-path": null
     1543        },
     1544        {
     1545            "name": "sebastian/diff",
     1546            "version": "4.0.4",
     1547            "version_normalized": "4.0.4.0",
     1548            "source": {
     1549                "type": "git",
     1550                "url": "https://github.com/sebastianbergmann/diff.git",
     1551                "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
     1552            },
     1553            "dist": {
     1554                "type": "zip",
     1555                "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
     1556                "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
     1557                "shasum": ""
     1558            },
     1559            "require": {
     1560                "php": ">=7.3"
     1561            },
     1562            "require-dev": {
     1563                "phpunit/phpunit": "^9.3",
     1564                "symfony/process": "^4.2 || ^5"
     1565            },
     1566            "time": "2020-10-26T13:10:38+00:00",
     1567            "type": "library",
     1568            "extra": {
     1569                "branch-alias": {
     1570                    "dev-master": "4.0-dev"
     1571                }
     1572            },
     1573            "installation-source": "dist",
     1574            "autoload": {
     1575                "classmap": [
     1576                    "src/"
     1577                ]
     1578            },
     1579            "notification-url": "https://packagist.org/downloads/",
     1580            "license": [
     1581                "BSD-3-Clause"
     1582            ],
     1583            "authors": [
     1584                {
     1585                    "name": "Sebastian Bergmann",
     1586                    "email": "[email protected]"
     1587                },
     1588                {
     1589                    "name": "Kore Nordmann",
     1590                    "email": "[email protected]"
     1591                }
     1592            ],
     1593            "description": "Diff implementation",
     1594            "homepage": "https://github.com/sebastianbergmann/diff",
     1595            "keywords": [
     1596                "diff",
     1597                "udiff",
     1598                "unidiff",
     1599                "unified diff"
     1600            ],
     1601            "support": {
     1602                "issues": "https://github.com/sebastianbergmann/diff/issues",
     1603                "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
     1604            },
     1605            "funding": [
     1606                {
     1607                    "url": "https://github.com/sebastianbergmann",
     1608                    "type": "github"
     1609                }
     1610            ],
     1611            "install-path": "../sebastian/diff"
     1612        },
     1613        {
     1614            "name": "symfony/console",
     1615            "version": "v5.4.16",
     1616            "version_normalized": "5.4.16.0",
     1617            "source": {
     1618                "type": "git",
     1619                "url": "https://github.com/symfony/console.git",
     1620                "reference": "8e9b9c8dfb33af6057c94e1b44846bee700dc5ef"
     1621            },
     1622            "dist": {
     1623                "type": "zip",
     1624                "url": "https://api.github.com/repos/symfony/console/zipball/8e9b9c8dfb33af6057c94e1b44846bee700dc5ef",
     1625                "reference": "8e9b9c8dfb33af6057c94e1b44846bee700dc5ef",
     1626                "shasum": ""
     1627            },
     1628            "require": {
     1629                "php": ">=7.2.5",
     1630                "symfony/deprecation-contracts": "^2.1|^3",
     1631                "symfony/polyfill-mbstring": "~1.0",
     1632                "symfony/polyfill-php73": "^1.9",
     1633                "symfony/polyfill-php80": "^1.16",
     1634                "symfony/service-contracts": "^1.1|^2|^3",
     1635                "symfony/string": "^5.1|^6.0"
     1636            },
     1637            "conflict": {
     1638                "psr/log": ">=3",
     1639                "symfony/dependency-injection": "<4.4",
     1640                "symfony/dotenv": "<5.1",
     1641                "symfony/event-dispatcher": "<4.4",
     1642                "symfony/lock": "<4.4",
     1643                "symfony/process": "<4.4"
     1644            },
     1645            "provide": {
     1646                "psr/log-implementation": "1.0|2.0"
     1647            },
     1648            "require-dev": {
     1649                "psr/log": "^1|^2",
     1650                "symfony/config": "^4.4|^5.0|^6.0",
     1651                "symfony/dependency-injection": "^4.4|^5.0|^6.0",
     1652                "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
     1653                "symfony/lock": "^4.4|^5.0|^6.0",
     1654                "symfony/process": "^4.4|^5.0|^6.0",
     1655                "symfony/var-dumper": "^4.4|^5.0|^6.0"
     1656            },
     1657            "suggest": {
     1658                "psr/log": "For using the console logger",
     1659                "symfony/event-dispatcher": "",
     1660                "symfony/lock": "",
     1661                "symfony/process": ""
     1662            },
     1663            "time": "2022-11-25T14:09:27+00:00",
     1664            "type": "library",
     1665            "installation-source": "dist",
     1666            "autoload": {
     1667                "psr-4": {
     1668                    "Symfony\\Component\\Console\\": ""
     1669                },
     1670                "exclude-from-classmap": [
     1671                    "/Tests/"
     1672                ]
     1673            },
     1674            "notification-url": "https://packagist.org/downloads/",
     1675            "license": [
     1676                "MIT"
     1677            ],
     1678            "authors": [
     1679                {
     1680                    "name": "Fabien Potencier",
     1681                    "email": "[email protected]"
     1682                },
     1683                {
     1684                    "name": "Symfony Community",
     1685                    "homepage": "https://symfony.com/contributors"
     1686                }
     1687            ],
     1688            "description": "Eases the creation of beautiful and testable command line interfaces",
     1689            "homepage": "https://symfony.com",
     1690            "keywords": [
     1691                "cli",
     1692                "command line",
     1693                "console",
     1694                "terminal"
     1695            ],
     1696            "support": {
     1697                "source": "https://github.com/symfony/console/tree/v5.4.16"
     1698            },
     1699            "funding": [
     1700                {
     1701                    "url": "https://symfony.com/sponsor",
     1702                    "type": "custom"
     1703                },
     1704                {
     1705                    "url": "https://github.com/fabpot",
     1706                    "type": "github"
     1707                },
     1708                {
     1709                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     1710                    "type": "tidelift"
     1711                }
     1712            ],
     1713            "install-path": "../symfony/console"
     1714        },
     1715        {
     1716            "name": "symfony/deprecation-contracts",
     1717            "version": "v2.5.2",
     1718            "version_normalized": "2.5.2.0",
     1719            "source": {
     1720                "type": "git",
     1721                "url": "https://github.com/symfony/deprecation-contracts.git",
     1722                "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
     1723            },
     1724            "dist": {
     1725                "type": "zip",
     1726                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
     1727                "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
     1728                "shasum": ""
     1729            },
     1730            "require": {
     1731                "php": ">=7.1"
     1732            },
     1733            "time": "2022-01-02T09:53:40+00:00",
     1734            "type": "library",
     1735            "extra": {
     1736                "branch-alias": {
     1737                    "dev-main": "2.5-dev"
     1738                },
     1739                "thanks": {
     1740                    "name": "symfony/contracts",
     1741                    "url": "https://github.com/symfony/contracts"
     1742                }
     1743            },
     1744            "installation-source": "dist",
     1745            "autoload": {
     1746                "files": [
     1747                    "function.php"
     1748                ]
     1749            },
     1750            "notification-url": "https://packagist.org/downloads/",
     1751            "license": [
     1752                "MIT"
     1753            ],
     1754            "authors": [
     1755                {
     1756                    "name": "Nicolas Grekas",
     1757                    "email": "[email protected]"
     1758                },
     1759                {
     1760                    "name": "Symfony Community",
     1761                    "homepage": "https://symfony.com/contributors"
     1762                }
     1763            ],
     1764            "description": "A generic function and convention to trigger deprecation notices",
     1765            "homepage": "https://symfony.com",
     1766            "support": {
     1767                "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
     1768            },
     1769            "funding": [
     1770                {
     1771                    "url": "https://symfony.com/sponsor",
     1772                    "type": "custom"
     1773                },
     1774                {
     1775                    "url": "https://github.com/fabpot",
     1776                    "type": "github"
     1777                },
     1778                {
     1779                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     1780                    "type": "tidelift"
     1781                }
     1782            ],
     1783            "install-path": "../symfony/deprecation-contracts"
     1784        },
     1785        {
     1786            "name": "symfony/event-dispatcher",
     1787            "version": "v5.4.9",
     1788            "version_normalized": "5.4.9.0",
     1789            "source": {
     1790                "type": "git",
     1791                "url": "https://github.com/symfony/event-dispatcher.git",
     1792                "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
     1793            },
     1794            "dist": {
     1795                "type": "zip",
     1796                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
     1797                "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
     1798                "shasum": ""
     1799            },
     1800            "require": {
     1801                "php": ">=7.2.5",
     1802                "symfony/deprecation-contracts": "^2.1|^3",
     1803                "symfony/event-dispatcher-contracts": "^2|^3",
     1804                "symfony/polyfill-php80": "^1.16"
     1805            },
     1806            "conflict": {
     1807                "symfony/dependency-injection": "<4.4"
     1808            },
     1809            "provide": {
     1810                "psr/event-dispatcher-implementation": "1.0",
     1811                "symfony/event-dispatcher-implementation": "2.0"
     1812            },
     1813            "require-dev": {
     1814                "psr/log": "^1|^2|^3",
     1815                "symfony/config": "^4.4|^5.0|^6.0",
     1816                "symfony/dependency-injection": "^4.4|^5.0|^6.0",
     1817                "symfony/error-handler": "^4.4|^5.0|^6.0",
     1818                "symfony/expression-language": "^4.4|^5.0|^6.0",
     1819                "symfony/http-foundation": "^4.4|^5.0|^6.0",
     1820                "symfony/service-contracts": "^1.1|^2|^3",
     1821                "symfony/stopwatch": "^4.4|^5.0|^6.0"
     1822            },
     1823            "suggest": {
     1824                "symfony/dependency-injection": "",
     1825                "symfony/http-kernel": ""
     1826            },
     1827            "time": "2022-05-05T16:45:39+00:00",
     1828            "type": "library",
     1829            "installation-source": "dist",
     1830            "autoload": {
     1831                "psr-4": {
     1832                    "Symfony\\Component\\EventDispatcher\\": ""
     1833                },
     1834                "exclude-from-classmap": [
     1835                    "/Tests/"
     1836                ]
     1837            },
     1838            "notification-url": "https://packagist.org/downloads/",
     1839            "license": [
     1840                "MIT"
     1841            ],
     1842            "authors": [
     1843                {
     1844                    "name": "Fabien Potencier",
     1845                    "email": "[email protected]"
     1846                },
     1847                {
     1848                    "name": "Symfony Community",
     1849                    "homepage": "https://symfony.com/contributors"
     1850                }
     1851            ],
     1852            "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
     1853            "homepage": "https://symfony.com",
     1854            "support": {
     1855                "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
     1856            },
     1857            "funding": [
     1858                {
     1859                    "url": "https://symfony.com/sponsor",
     1860                    "type": "custom"
     1861                },
     1862                {
     1863                    "url": "https://github.com/fabpot",
     1864                    "type": "github"
     1865                },
     1866                {
     1867                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     1868                    "type": "tidelift"
     1869                }
     1870            ],
     1871            "install-path": "../symfony/event-dispatcher"
     1872        },
     1873        {
     1874            "name": "symfony/event-dispatcher-contracts",
     1875            "version": "v2.5.2",
     1876            "version_normalized": "2.5.2.0",
     1877            "source": {
     1878                "type": "git",
     1879                "url": "https://github.com/symfony/event-dispatcher-contracts.git",
     1880                "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
     1881            },
     1882            "dist": {
     1883                "type": "zip",
     1884                "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
     1885                "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
     1886                "shasum": ""
     1887            },
     1888            "require": {
     1889                "php": ">=7.2.5",
     1890                "psr/event-dispatcher": "^1"
     1891            },
     1892            "suggest": {
     1893                "symfony/event-dispatcher-implementation": ""
     1894            },
     1895            "time": "2022-01-02T09:53:40+00:00",
     1896            "type": "library",
     1897            "extra": {
     1898                "branch-alias": {
     1899                    "dev-main": "2.5-dev"
     1900                },
     1901                "thanks": {
     1902                    "name": "symfony/contracts",
     1903                    "url": "https://github.com/symfony/contracts"
     1904                }
     1905            },
     1906            "installation-source": "dist",
     1907            "autoload": {
     1908                "psr-4": {
     1909                    "Symfony\\Contracts\\EventDispatcher\\": ""
     1910                }
     1911            },
     1912            "notification-url": "https://packagist.org/downloads/",
     1913            "license": [
     1914                "MIT"
     1915            ],
     1916            "authors": [
     1917                {
     1918                    "name": "Nicolas Grekas",
     1919                    "email": "[email protected]"
     1920                },
     1921                {
     1922                    "name": "Symfony Community",
     1923                    "homepage": "https://symfony.com/contributors"
     1924                }
     1925            ],
     1926            "description": "Generic abstractions related to dispatching event",
     1927            "homepage": "https://symfony.com",
     1928            "keywords": [
     1929                "abstractions",
     1930                "contracts",
     1931                "decoupling",
     1932                "interfaces",
     1933                "interoperability",
     1934                "standards"
     1935            ],
     1936            "support": {
     1937                "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
     1938            },
     1939            "funding": [
     1940                {
     1941                    "url": "https://symfony.com/sponsor",
     1942                    "type": "custom"
     1943                },
     1944                {
     1945                    "url": "https://github.com/fabpot",
     1946                    "type": "github"
     1947                },
     1948                {
     1949                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     1950                    "type": "tidelift"
     1951                }
     1952            ],
     1953            "install-path": "../symfony/event-dispatcher-contracts"
     1954        },
     1955        {
     1956            "name": "symfony/filesystem",
     1957            "version": "v5.4.13",
     1958            "version_normalized": "5.4.13.0",
     1959            "source": {
     1960                "type": "git",
     1961                "url": "https://github.com/symfony/filesystem.git",
     1962                "reference": "ac09569844a9109a5966b9438fc29113ce77cf51"
     1963            },
     1964            "dist": {
     1965                "type": "zip",
     1966                "url": "https://api.github.com/repos/symfony/filesystem/zipball/ac09569844a9109a5966b9438fc29113ce77cf51",
     1967                "reference": "ac09569844a9109a5966b9438fc29113ce77cf51",
     1968                "shasum": ""
     1969            },
     1970            "require": {
     1971                "php": ">=7.2.5",
     1972                "symfony/polyfill-ctype": "~1.8",
     1973                "symfony/polyfill-mbstring": "~1.8",
     1974                "symfony/polyfill-php80": "^1.16"
     1975            },
     1976            "time": "2022-09-21T19:53:16+00:00",
     1977            "type": "library",
     1978            "installation-source": "dist",
     1979            "autoload": {
     1980                "psr-4": {
     1981                    "Symfony\\Component\\Filesystem\\": ""
     1982                },
     1983                "exclude-from-classmap": [
     1984                    "/Tests/"
     1985                ]
     1986            },
     1987            "notification-url": "https://packagist.org/downloads/",
     1988            "license": [
     1989                "MIT"
     1990            ],
     1991            "authors": [
     1992                {
     1993                    "name": "Fabien Potencier",
     1994                    "email": "[email protected]"
     1995                },
     1996                {
     1997                    "name": "Symfony Community",
     1998                    "homepage": "https://symfony.com/contributors"
     1999                }
     2000            ],
     2001            "description": "Provides basic utilities for the filesystem",
     2002            "homepage": "https://symfony.com",
     2003            "support": {
     2004                "source": "https://github.com/symfony/filesystem/tree/v5.4.13"
     2005            },
     2006            "funding": [
     2007                {
     2008                    "url": "https://symfony.com/sponsor",
     2009                    "type": "custom"
     2010                },
     2011                {
     2012                    "url": "https://github.com/fabpot",
     2013                    "type": "github"
     2014                },
     2015                {
     2016                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2017                    "type": "tidelift"
     2018                }
     2019            ],
     2020            "install-path": "../symfony/filesystem"
     2021        },
     2022        {
     2023            "name": "symfony/finder",
     2024            "version": "v5.4.11",
     2025            "version_normalized": "5.4.11.0",
     2026            "source": {
     2027                "type": "git",
     2028                "url": "https://github.com/symfony/finder.git",
     2029                "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
     2030            },
     2031            "dist": {
     2032                "type": "zip",
     2033                "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
     2034                "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
     2035                "shasum": ""
     2036            },
     2037            "require": {
     2038                "php": ">=7.2.5",
     2039                "symfony/deprecation-contracts": "^2.1|^3",
     2040                "symfony/polyfill-php80": "^1.16"
     2041            },
     2042            "time": "2022-07-29T07:37:50+00:00",
     2043            "type": "library",
     2044            "installation-source": "dist",
     2045            "autoload": {
     2046                "psr-4": {
     2047                    "Symfony\\Component\\Finder\\": ""
     2048                },
     2049                "exclude-from-classmap": [
     2050                    "/Tests/"
     2051                ]
     2052            },
     2053            "notification-url": "https://packagist.org/downloads/",
     2054            "license": [
     2055                "MIT"
     2056            ],
     2057            "authors": [
     2058                {
     2059                    "name": "Fabien Potencier",
     2060                    "email": "[email protected]"
     2061                },
     2062                {
     2063                    "name": "Symfony Community",
     2064                    "homepage": "https://symfony.com/contributors"
     2065                }
     2066            ],
     2067            "description": "Finds files and directories via an intuitive fluent interface",
     2068            "homepage": "https://symfony.com",
     2069            "support": {
     2070                "source": "https://github.com/symfony/finder/tree/v5.4.11"
     2071            },
     2072            "funding": [
     2073                {
     2074                    "url": "https://symfony.com/sponsor",
     2075                    "type": "custom"
     2076                },
     2077                {
     2078                    "url": "https://github.com/fabpot",
     2079                    "type": "github"
     2080                },
     2081                {
     2082                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2083                    "type": "tidelift"
     2084                }
     2085            ],
     2086            "install-path": "../symfony/finder"
     2087        },
     2088        {
     2089            "name": "symfony/options-resolver",
     2090            "version": "v5.4.11",
     2091            "version_normalized": "5.4.11.0",
     2092            "source": {
     2093                "type": "git",
     2094                "url": "https://github.com/symfony/options-resolver.git",
     2095                "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690"
     2096            },
     2097            "dist": {
     2098                "type": "zip",
     2099                "url": "https://api.github.com/repos/symfony/options-resolver/zipball/54f14e36aa73cb8f7261d7686691fd4d75ea2690",
     2100                "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690",
     2101                "shasum": ""
     2102            },
     2103            "require": {
     2104                "php": ">=7.2.5",
     2105                "symfony/deprecation-contracts": "^2.1|^3",
     2106                "symfony/polyfill-php73": "~1.0",
     2107                "symfony/polyfill-php80": "^1.16"
     2108            },
     2109            "time": "2022-07-20T13:00:38+00:00",
     2110            "type": "library",
     2111            "installation-source": "dist",
     2112            "autoload": {
     2113                "psr-4": {
     2114                    "Symfony\\Component\\OptionsResolver\\": ""
     2115                },
     2116                "exclude-from-classmap": [
     2117                    "/Tests/"
     2118                ]
     2119            },
     2120            "notification-url": "https://packagist.org/downloads/",
     2121            "license": [
     2122                "MIT"
     2123            ],
     2124            "authors": [
     2125                {
     2126                    "name": "Fabien Potencier",
     2127                    "email": "[email protected]"
     2128                },
     2129                {
     2130                    "name": "Symfony Community",
     2131                    "homepage": "https://symfony.com/contributors"
     2132                }
     2133            ],
     2134            "description": "Provides an improved replacement for the array_replace PHP function",
     2135            "homepage": "https://symfony.com",
     2136            "keywords": [
     2137                "config",
     2138                "configuration",
     2139                "options"
     2140            ],
     2141            "support": {
     2142                "source": "https://github.com/symfony/options-resolver/tree/v5.4.11"
     2143            },
     2144            "funding": [
     2145                {
     2146                    "url": "https://symfony.com/sponsor",
     2147                    "type": "custom"
     2148                },
     2149                {
     2150                    "url": "https://github.com/fabpot",
     2151                    "type": "github"
     2152                },
     2153                {
     2154                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2155                    "type": "tidelift"
     2156                }
     2157            ],
     2158            "install-path": "../symfony/options-resolver"
     2159        },
     2160        {
     2161            "name": "symfony/polyfill-ctype",
     2162            "version": "v1.27.0",
     2163            "version_normalized": "1.27.0.0",
     2164            "source": {
     2165                "type": "git",
     2166                "url": "https://github.com/symfony/polyfill-ctype.git",
     2167                "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
     2168            },
     2169            "dist": {
     2170                "type": "zip",
     2171                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
     2172                "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
     2173                "shasum": ""
     2174            },
     2175            "require": {
     2176                "php": ">=7.1"
     2177            },
     2178            "provide": {
     2179                "ext-ctype": "*"
     2180            },
     2181            "suggest": {
     2182                "ext-ctype": "For best performance"
     2183            },
     2184            "time": "2022-11-03T14:55:06+00:00",
     2185            "type": "library",
     2186            "extra": {
     2187                "branch-alias": {
     2188                    "dev-main": "1.27-dev"
     2189                },
     2190                "thanks": {
     2191                    "name": "symfony/polyfill",
     2192                    "url": "https://github.com/symfony/polyfill"
     2193                }
     2194            },
     2195            "installation-source": "dist",
     2196            "autoload": {
     2197                "files": [
     2198                    "bootstrap.php"
     2199                ],
     2200                "psr-4": {
     2201                    "Symfony\\Polyfill\\Ctype\\": ""
     2202                }
     2203            },
     2204            "notification-url": "https://packagist.org/downloads/",
     2205            "license": [
     2206                "MIT"
     2207            ],
     2208            "authors": [
     2209                {
     2210                    "name": "Gert de Pagter",
     2211                    "email": "[email protected]"
     2212                },
     2213                {
     2214                    "name": "Symfony Community",
     2215                    "homepage": "https://symfony.com/contributors"
     2216                }
     2217            ],
     2218            "description": "Symfony polyfill for ctype functions",
     2219            "homepage": "https://symfony.com",
     2220            "keywords": [
     2221                "compatibility",
     2222                "ctype",
     2223                "polyfill",
     2224                "portable"
     2225            ],
     2226            "support": {
     2227                "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
     2228            },
     2229            "funding": [
     2230                {
     2231                    "url": "https://symfony.com/sponsor",
     2232                    "type": "custom"
     2233                },
     2234                {
     2235                    "url": "https://github.com/fabpot",
     2236                    "type": "github"
     2237                },
     2238                {
     2239                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2240                    "type": "tidelift"
     2241                }
     2242            ],
     2243            "install-path": "../symfony/polyfill-ctype"
     2244        },
     2245        {
     2246            "name": "symfony/polyfill-intl-grapheme",
     2247            "version": "v1.27.0",
     2248            "version_normalized": "1.27.0.0",
     2249            "source": {
     2250                "type": "git",
     2251                "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
     2252                "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
     2253            },
     2254            "dist": {
     2255                "type": "zip",
     2256                "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
     2257                "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
     2258                "shasum": ""
     2259            },
     2260            "require": {
     2261                "php": ">=7.1"
     2262            },
     2263            "suggest": {
     2264                "ext-intl": "For best performance"
     2265            },
     2266            "time": "2022-11-03T14:55:06+00:00",
     2267            "type": "library",
     2268            "extra": {
     2269                "branch-alias": {
     2270                    "dev-main": "1.27-dev"
     2271                },
     2272                "thanks": {
     2273                    "name": "symfony/polyfill",
     2274                    "url": "https://github.com/symfony/polyfill"
     2275                }
     2276            },
     2277            "installation-source": "dist",
     2278            "autoload": {
     2279                "files": [
     2280                    "bootstrap.php"
     2281                ],
     2282                "psr-4": {
     2283                    "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
     2284                }
     2285            },
     2286            "notification-url": "https://packagist.org/downloads/",
     2287            "license": [
     2288                "MIT"
     2289            ],
     2290            "authors": [
     2291                {
     2292                    "name": "Nicolas Grekas",
     2293                    "email": "[email protected]"
     2294                },
     2295                {
     2296                    "name": "Symfony Community",
     2297                    "homepage": "https://symfony.com/contributors"
     2298                }
     2299            ],
     2300            "description": "Symfony polyfill for intl's grapheme_* functions",
     2301            "homepage": "https://symfony.com",
     2302            "keywords": [
     2303                "compatibility",
     2304                "grapheme",
     2305                "intl",
     2306                "polyfill",
     2307                "portable",
     2308                "shim"
     2309            ],
     2310            "support": {
     2311                "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
     2312            },
     2313            "funding": [
     2314                {
     2315                    "url": "https://symfony.com/sponsor",
     2316                    "type": "custom"
     2317                },
     2318                {
     2319                    "url": "https://github.com/fabpot",
     2320                    "type": "github"
     2321                },
     2322                {
     2323                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2324                    "type": "tidelift"
     2325                }
     2326            ],
     2327            "install-path": "../symfony/polyfill-intl-grapheme"
     2328        },
     2329        {
     2330            "name": "symfony/polyfill-intl-normalizer",
     2331            "version": "v1.27.0",
     2332            "version_normalized": "1.27.0.0",
     2333            "source": {
     2334                "type": "git",
     2335                "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
     2336                "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
     2337            },
     2338            "dist": {
     2339                "type": "zip",
     2340                "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
     2341                "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
     2342                "shasum": ""
     2343            },
     2344            "require": {
     2345                "php": ">=7.1"
     2346            },
     2347            "suggest": {
     2348                "ext-intl": "For best performance"
     2349            },
     2350            "time": "2022-11-03T14:55:06+00:00",
     2351            "type": "library",
     2352            "extra": {
     2353                "branch-alias": {
     2354                    "dev-main": "1.27-dev"
     2355                },
     2356                "thanks": {
     2357                    "name": "symfony/polyfill",
     2358                    "url": "https://github.com/symfony/polyfill"
     2359                }
     2360            },
     2361            "installation-source": "dist",
     2362            "autoload": {
     2363                "files": [
     2364                    "bootstrap.php"
     2365                ],
     2366                "psr-4": {
     2367                    "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
     2368                },
     2369                "classmap": [
     2370                    "Resources/stubs"
     2371                ]
     2372            },
     2373            "notification-url": "https://packagist.org/downloads/",
     2374            "license": [
     2375                "MIT"
     2376            ],
     2377            "authors": [
     2378                {
     2379                    "name": "Nicolas Grekas",
     2380                    "email": "[email protected]"
     2381                },
     2382                {
     2383                    "name": "Symfony Community",
     2384                    "homepage": "https://symfony.com/contributors"
     2385                }
     2386            ],
     2387            "description": "Symfony polyfill for intl's Normalizer class and related functions",
     2388            "homepage": "https://symfony.com",
     2389            "keywords": [
     2390                "compatibility",
     2391                "intl",
     2392                "normalizer",
     2393                "polyfill",
     2394                "portable",
     2395                "shim"
     2396            ],
     2397            "support": {
     2398                "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
     2399            },
     2400            "funding": [
     2401                {
     2402                    "url": "https://symfony.com/sponsor",
     2403                    "type": "custom"
     2404                },
     2405                {
     2406                    "url": "https://github.com/fabpot",
     2407                    "type": "github"
     2408                },
     2409                {
     2410                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2411                    "type": "tidelift"
     2412                }
     2413            ],
     2414            "install-path": "../symfony/polyfill-intl-normalizer"
     2415        },
     2416        {
     2417            "name": "symfony/polyfill-mbstring",
     2418            "version": "v1.27.0",
     2419            "version_normalized": "1.27.0.0",
     2420            "source": {
     2421                "type": "git",
     2422                "url": "https://github.com/symfony/polyfill-mbstring.git",
     2423                "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
     2424            },
     2425            "dist": {
     2426                "type": "zip",
     2427                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
     2428                "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
     2429                "shasum": ""
     2430            },
     2431            "require": {
     2432                "php": ">=7.1"
     2433            },
     2434            "provide": {
     2435                "ext-mbstring": "*"
     2436            },
     2437            "suggest": {
     2438                "ext-mbstring": "For best performance"
     2439            },
     2440            "time": "2022-11-03T14:55:06+00:00",
     2441            "type": "library",
     2442            "extra": {
     2443                "branch-alias": {
     2444                    "dev-main": "1.27-dev"
     2445                },
     2446                "thanks": {
     2447                    "name": "symfony/polyfill",
     2448                    "url": "https://github.com/symfony/polyfill"
     2449                }
     2450            },
     2451            "installation-source": "dist",
     2452            "autoload": {
     2453                "files": [
     2454                    "bootstrap.php"
     2455                ],
     2456                "psr-4": {
     2457                    "Symfony\\Polyfill\\Mbstring\\": ""
     2458                }
     2459            },
     2460            "notification-url": "https://packagist.org/downloads/",
     2461            "license": [
     2462                "MIT"
     2463            ],
     2464            "authors": [
     2465                {
     2466                    "name": "Nicolas Grekas",
     2467                    "email": "[email protected]"
     2468                },
     2469                {
     2470                    "name": "Symfony Community",
     2471                    "homepage": "https://symfony.com/contributors"
     2472                }
     2473            ],
     2474            "description": "Symfony polyfill for the Mbstring extension",
     2475            "homepage": "https://symfony.com",
     2476            "keywords": [
     2477                "compatibility",
     2478                "mbstring",
     2479                "polyfill",
     2480                "portable",
     2481                "shim"
     2482            ],
     2483            "support": {
     2484                "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
     2485            },
     2486            "funding": [
     2487                {
     2488                    "url": "https://symfony.com/sponsor",
     2489                    "type": "custom"
     2490                },
     2491                {
     2492                    "url": "https://github.com/fabpot",
     2493                    "type": "github"
     2494                },
     2495                {
     2496                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2497                    "type": "tidelift"
     2498                }
     2499            ],
     2500            "install-path": "../symfony/polyfill-mbstring"
     2501        },
     2502        {
     2503            "name": "symfony/polyfill-php73",
     2504            "version": "v1.27.0",
     2505            "version_normalized": "1.27.0.0",
     2506            "source": {
     2507                "type": "git",
     2508                "url": "https://github.com/symfony/polyfill-php73.git",
     2509                "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
     2510            },
     2511            "dist": {
     2512                "type": "zip",
     2513                "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
     2514                "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
     2515                "shasum": ""
     2516            },
     2517            "require": {
     2518                "php": ">=7.1"
     2519            },
     2520            "time": "2022-11-03T14:55:06+00:00",
     2521            "type": "library",
     2522            "extra": {
     2523                "branch-alias": {
     2524                    "dev-main": "1.27-dev"
     2525                },
     2526                "thanks": {
     2527                    "name": "symfony/polyfill",
     2528                    "url": "https://github.com/symfony/polyfill"
     2529                }
     2530            },
     2531            "installation-source": "dist",
     2532            "autoload": {
     2533                "files": [
     2534                    "bootstrap.php"
     2535                ],
     2536                "psr-4": {
     2537                    "Symfony\\Polyfill\\Php73\\": ""
     2538                },
     2539                "classmap": [
     2540                    "Resources/stubs"
     2541                ]
     2542            },
     2543            "notification-url": "https://packagist.org/downloads/",
     2544            "license": [
     2545                "MIT"
     2546            ],
     2547            "authors": [
     2548                {
     2549                    "name": "Nicolas Grekas",
     2550                    "email": "[email protected]"
     2551                },
     2552                {
     2553                    "name": "Symfony Community",
     2554                    "homepage": "https://symfony.com/contributors"
     2555                }
     2556            ],
     2557            "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
     2558            "homepage": "https://symfony.com",
     2559            "keywords": [
     2560                "compatibility",
     2561                "polyfill",
     2562                "portable",
     2563                "shim"
     2564            ],
     2565            "support": {
     2566                "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
     2567            },
     2568            "funding": [
     2569                {
     2570                    "url": "https://symfony.com/sponsor",
     2571                    "type": "custom"
     2572                },
     2573                {
     2574                    "url": "https://github.com/fabpot",
     2575                    "type": "github"
     2576                },
     2577                {
     2578                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2579                    "type": "tidelift"
     2580                }
     2581            ],
     2582            "install-path": "../symfony/polyfill-php73"
     2583        },
     2584        {
     2585            "name": "symfony/polyfill-php80",
     2586            "version": "v1.27.0",
     2587            "version_normalized": "1.27.0.0",
     2588            "source": {
     2589                "type": "git",
     2590                "url": "https://github.com/symfony/polyfill-php80.git",
     2591                "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
     2592            },
     2593            "dist": {
     2594                "type": "zip",
     2595                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
     2596                "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
     2597                "shasum": ""
     2598            },
     2599            "require": {
     2600                "php": ">=7.1"
     2601            },
     2602            "time": "2022-11-03T14:55:06+00:00",
     2603            "type": "library",
     2604            "extra": {
     2605                "branch-alias": {
     2606                    "dev-main": "1.27-dev"
     2607                },
     2608                "thanks": {
     2609                    "name": "symfony/polyfill",
     2610                    "url": "https://github.com/symfony/polyfill"
     2611                }
     2612            },
     2613            "installation-source": "dist",
     2614            "autoload": {
     2615                "files": [
     2616                    "bootstrap.php"
     2617                ],
     2618                "psr-4": {
     2619                    "Symfony\\Polyfill\\Php80\\": ""
     2620                },
     2621                "classmap": [
     2622                    "Resources/stubs"
     2623                ]
     2624            },
     2625            "notification-url": "https://packagist.org/downloads/",
     2626            "license": [
     2627                "MIT"
     2628            ],
     2629            "authors": [
     2630                {
     2631                    "name": "Ion Bazan",
     2632                    "email": "[email protected]"
     2633                },
     2634                {
     2635                    "name": "Nicolas Grekas",
     2636                    "email": "[email protected]"
     2637                },
     2638                {
     2639                    "name": "Symfony Community",
     2640                    "homepage": "https://symfony.com/contributors"
     2641                }
     2642            ],
     2643            "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
     2644            "homepage": "https://symfony.com",
     2645            "keywords": [
     2646                "compatibility",
     2647                "polyfill",
     2648                "portable",
     2649                "shim"
     2650            ],
     2651            "support": {
     2652                "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
     2653            },
     2654            "funding": [
     2655                {
     2656                    "url": "https://symfony.com/sponsor",
     2657                    "type": "custom"
     2658                },
     2659                {
     2660                    "url": "https://github.com/fabpot",
     2661                    "type": "github"
     2662                },
     2663                {
     2664                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2665                    "type": "tidelift"
     2666                }
     2667            ],
     2668            "install-path": "../symfony/polyfill-php80"
     2669        },
     2670        {
     2671            "name": "symfony/polyfill-php81",
     2672            "version": "v1.27.0",
     2673            "version_normalized": "1.27.0.0",
     2674            "source": {
     2675                "type": "git",
     2676                "url": "https://github.com/symfony/polyfill-php81.git",
     2677                "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
     2678            },
     2679            "dist": {
     2680                "type": "zip",
     2681                "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
     2682                "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
     2683                "shasum": ""
     2684            },
     2685            "require": {
     2686                "php": ">=7.1"
     2687            },
     2688            "time": "2022-11-03T14:55:06+00:00",
     2689            "type": "library",
     2690            "extra": {
     2691                "branch-alias": {
     2692                    "dev-main": "1.27-dev"
     2693                },
     2694                "thanks": {
     2695                    "name": "symfony/polyfill",
     2696                    "url": "https://github.com/symfony/polyfill"
     2697                }
     2698            },
     2699            "installation-source": "dist",
     2700            "autoload": {
     2701                "files": [
     2702                    "bootstrap.php"
     2703                ],
     2704                "psr-4": {
     2705                    "Symfony\\Polyfill\\Php81\\": ""
     2706                },
     2707                "classmap": [
     2708                    "Resources/stubs"
     2709                ]
     2710            },
     2711            "notification-url": "https://packagist.org/downloads/",
     2712            "license": [
     2713                "MIT"
     2714            ],
     2715            "authors": [
     2716                {
     2717                    "name": "Nicolas Grekas",
     2718                    "email": "[email protected]"
     2719                },
     2720                {
     2721                    "name": "Symfony Community",
     2722                    "homepage": "https://symfony.com/contributors"
     2723                }
     2724            ],
     2725            "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
     2726            "homepage": "https://symfony.com",
     2727            "keywords": [
     2728                "compatibility",
     2729                "polyfill",
     2730                "portable",
     2731                "shim"
     2732            ],
     2733            "support": {
     2734                "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
     2735            },
     2736            "funding": [
     2737                {
     2738                    "url": "https://symfony.com/sponsor",
     2739                    "type": "custom"
     2740                },
     2741                {
     2742                    "url": "https://github.com/fabpot",
     2743                    "type": "github"
     2744                },
     2745                {
     2746                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2747                    "type": "tidelift"
     2748                }
     2749            ],
     2750            "install-path": "../symfony/polyfill-php81"
     2751        },
     2752        {
     2753            "name": "symfony/process",
     2754            "version": "v5.4.11",
     2755            "version_normalized": "5.4.11.0",
     2756            "source": {
     2757                "type": "git",
     2758                "url": "https://github.com/symfony/process.git",
     2759                "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1"
     2760            },
     2761            "dist": {
     2762                "type": "zip",
     2763                "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1",
     2764                "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1",
     2765                "shasum": ""
     2766            },
     2767            "require": {
     2768                "php": ">=7.2.5",
     2769                "symfony/polyfill-php80": "^1.16"
     2770            },
     2771            "time": "2022-06-27T16:58:25+00:00",
     2772            "type": "library",
     2773            "installation-source": "dist",
     2774            "autoload": {
     2775                "psr-4": {
     2776                    "Symfony\\Component\\Process\\": ""
     2777                },
     2778                "exclude-from-classmap": [
     2779                    "/Tests/"
     2780                ]
     2781            },
     2782            "notification-url": "https://packagist.org/downloads/",
     2783            "license": [
     2784                "MIT"
     2785            ],
     2786            "authors": [
     2787                {
     2788                    "name": "Fabien Potencier",
     2789                    "email": "[email protected]"
     2790                },
     2791                {
     2792                    "name": "Symfony Community",
     2793                    "homepage": "https://symfony.com/contributors"
     2794                }
     2795            ],
     2796            "description": "Executes commands in sub-processes",
     2797            "homepage": "https://symfony.com",
     2798            "support": {
     2799                "source": "https://github.com/symfony/process/tree/v5.4.11"
     2800            },
     2801            "funding": [
     2802                {
     2803                    "url": "https://symfony.com/sponsor",
     2804                    "type": "custom"
     2805                },
     2806                {
     2807                    "url": "https://github.com/fabpot",
     2808                    "type": "github"
     2809                },
     2810                {
     2811                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2812                    "type": "tidelift"
     2813                }
     2814            ],
     2815            "install-path": "../symfony/process"
     2816        },
     2817        {
     2818            "name": "symfony/service-contracts",
     2819            "version": "v2.5.2",
     2820            "version_normalized": "2.5.2.0",
     2821            "source": {
     2822                "type": "git",
     2823                "url": "https://github.com/symfony/service-contracts.git",
     2824                "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
     2825            },
     2826            "dist": {
     2827                "type": "zip",
     2828                "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
     2829                "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
     2830                "shasum": ""
     2831            },
     2832            "require": {
     2833                "php": ">=7.2.5",
     2834                "psr/container": "^1.1",
     2835                "symfony/deprecation-contracts": "^2.1|^3"
     2836            },
     2837            "conflict": {
     2838                "ext-psr": "<1.1|>=2"
     2839            },
     2840            "suggest": {
     2841                "symfony/service-implementation": ""
     2842            },
     2843            "time": "2022-05-30T19:17:29+00:00",
     2844            "type": "library",
     2845            "extra": {
     2846                "branch-alias": {
     2847                    "dev-main": "2.5-dev"
     2848                },
     2849                "thanks": {
     2850                    "name": "symfony/contracts",
     2851                    "url": "https://github.com/symfony/contracts"
     2852                }
     2853            },
     2854            "installation-source": "dist",
     2855            "autoload": {
     2856                "psr-4": {
     2857                    "Symfony\\Contracts\\Service\\": ""
     2858                }
     2859            },
     2860            "notification-url": "https://packagist.org/downloads/",
     2861            "license": [
     2862                "MIT"
     2863            ],
     2864            "authors": [
     2865                {
     2866                    "name": "Nicolas Grekas",
     2867                    "email": "[email protected]"
     2868                },
     2869                {
     2870                    "name": "Symfony Community",
     2871                    "homepage": "https://symfony.com/contributors"
     2872                }
     2873            ],
     2874            "description": "Generic abstractions related to writing services",
     2875            "homepage": "https://symfony.com",
     2876            "keywords": [
     2877                "abstractions",
     2878                "contracts",
     2879                "decoupling",
     2880                "interfaces",
     2881                "interoperability",
     2882                "standards"
     2883            ],
     2884            "support": {
     2885                "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
     2886            },
     2887            "funding": [
     2888                {
     2889                    "url": "https://symfony.com/sponsor",
     2890                    "type": "custom"
     2891                },
     2892                {
     2893                    "url": "https://github.com/fabpot",
     2894                    "type": "github"
     2895                },
     2896                {
     2897                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2898                    "type": "tidelift"
     2899                }
     2900            ],
     2901            "install-path": "../symfony/service-contracts"
     2902        },
     2903        {
     2904            "name": "symfony/stopwatch",
     2905            "version": "v5.4.13",
     2906            "version_normalized": "5.4.13.0",
     2907            "source": {
     2908                "type": "git",
     2909                "url": "https://github.com/symfony/stopwatch.git",
     2910                "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69"
     2911            },
     2912            "dist": {
     2913                "type": "zip",
     2914                "url": "https://api.github.com/repos/symfony/stopwatch/zipball/6df7a3effde34d81717bbef4591e5ffe32226d69",
     2915                "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69",
     2916                "shasum": ""
     2917            },
     2918            "require": {
     2919                "php": ">=7.2.5",
     2920                "symfony/service-contracts": "^1|^2|^3"
     2921            },
     2922            "time": "2022-09-28T13:19:49+00:00",
     2923            "type": "library",
     2924            "installation-source": "dist",
     2925            "autoload": {
     2926                "psr-4": {
     2927                    "Symfony\\Component\\Stopwatch\\": ""
     2928                },
     2929                "exclude-from-classmap": [
     2930                    "/Tests/"
     2931                ]
     2932            },
     2933            "notification-url": "https://packagist.org/downloads/",
     2934            "license": [
     2935                "MIT"
     2936            ],
     2937            "authors": [
     2938                {
     2939                    "name": "Fabien Potencier",
     2940                    "email": "[email protected]"
     2941                },
     2942                {
     2943                    "name": "Symfony Community",
     2944                    "homepage": "https://symfony.com/contributors"
     2945                }
     2946            ],
     2947            "description": "Provides a way to profile code",
     2948            "homepage": "https://symfony.com",
     2949            "support": {
     2950                "source": "https://github.com/symfony/stopwatch/tree/v5.4.13"
     2951            },
     2952            "funding": [
     2953                {
     2954                    "url": "https://symfony.com/sponsor",
     2955                    "type": "custom"
     2956                },
     2957                {
     2958                    "url": "https://github.com/fabpot",
     2959                    "type": "github"
     2960                },
     2961                {
     2962                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     2963                    "type": "tidelift"
     2964                }
     2965            ],
     2966            "install-path": "../symfony/stopwatch"
     2967        },
     2968        {
     2969            "name": "symfony/string",
     2970            "version": "v5.4.15",
     2971            "version_normalized": "5.4.15.0",
     2972            "source": {
     2973                "type": "git",
     2974                "url": "https://github.com/symfony/string.git",
     2975                "reference": "571334ce9f687e3e6af72db4d3b2a9431e4fd9ed"
     2976            },
     2977            "dist": {
     2978                "type": "zip",
     2979                "url": "https://api.github.com/repos/symfony/string/zipball/571334ce9f687e3e6af72db4d3b2a9431e4fd9ed",
     2980                "reference": "571334ce9f687e3e6af72db4d3b2a9431e4fd9ed",
     2981                "shasum": ""
     2982            },
     2983            "require": {
     2984                "php": ">=7.2.5",
     2985                "symfony/polyfill-ctype": "~1.8",
     2986                "symfony/polyfill-intl-grapheme": "~1.0",
     2987                "symfony/polyfill-intl-normalizer": "~1.0",
     2988                "symfony/polyfill-mbstring": "~1.0",
     2989                "symfony/polyfill-php80": "~1.15"
     2990            },
     2991            "conflict": {
     2992                "symfony/translation-contracts": ">=3.0"
     2993            },
     2994            "require-dev": {
     2995                "symfony/error-handler": "^4.4|^5.0|^6.0",
     2996                "symfony/http-client": "^4.4|^5.0|^6.0",
     2997                "symfony/translation-contracts": "^1.1|^2",
     2998                "symfony/var-exporter": "^4.4|^5.0|^6.0"
     2999            },
     3000            "time": "2022-10-05T15:16:54+00:00",
     3001            "type": "library",
     3002            "installation-source": "dist",
     3003            "autoload": {
     3004                "files": [
     3005                    "Resources/functions.php"
     3006                ],
     3007                "psr-4": {
     3008                    "Symfony\\Component\\String\\": ""
     3009                },
     3010                "exclude-from-classmap": [
     3011                    "/Tests/"
     3012                ]
     3013            },
     3014            "notification-url": "https://packagist.org/downloads/",
     3015            "license": [
     3016                "MIT"
     3017            ],
     3018            "authors": [
     3019                {
     3020                    "name": "Nicolas Grekas",
     3021                    "email": "[email protected]"
     3022                },
     3023                {
     3024                    "name": "Symfony Community",
     3025                    "homepage": "https://symfony.com/contributors"
     3026                }
     3027            ],
     3028            "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
     3029            "homepage": "https://symfony.com",
     3030            "keywords": [
     3031                "grapheme",
     3032                "i18n",
     3033                "string",
     3034                "unicode",
     3035                "utf-8",
     3036                "utf8"
     3037            ],
     3038            "support": {
     3039                "source": "https://github.com/symfony/string/tree/v5.4.15"
     3040            },
     3041            "funding": [
     3042                {
     3043                    "url": "https://symfony.com/sponsor",
     3044                    "type": "custom"
     3045                },
     3046                {
     3047                    "url": "https://github.com/fabpot",
     3048                    "type": "github"
     3049                },
     3050                {
     3051                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     3052                    "type": "tidelift"
     3053                }
     3054            ],
     3055            "install-path": "../symfony/string"
     3056        },
     3057        {
     3058            "name": "vlucas/phpdotenv",
     3059            "version": "v5.5.0",
     3060            "version_normalized": "5.5.0.0",
     3061            "source": {
     3062                "type": "git",
     3063                "url": "https://github.com/vlucas/phpdotenv.git",
     3064                "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
     3065            },
     3066            "dist": {
     3067                "type": "zip",
     3068                "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
     3069                "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
     3070                "shasum": ""
     3071            },
     3072            "require": {
     3073                "ext-pcre": "*",
     3074                "graham-campbell/result-type": "^1.0.2",
     3075                "php": "^7.1.3 || ^8.0",
     3076                "phpoption/phpoption": "^1.8",
     3077                "symfony/polyfill-ctype": "^1.23",
     3078                "symfony/polyfill-mbstring": "^1.23.1",
     3079                "symfony/polyfill-php80": "^1.23.1"
     3080            },
     3081            "require-dev": {
     3082                "bamarni/composer-bin-plugin": "^1.4.1",
     3083                "ext-filter": "*",
     3084                "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
     3085            },
     3086            "suggest": {
     3087                "ext-filter": "Required to use the boolean validator."
     3088            },
     3089            "time": "2022-10-16T01:01:54+00:00",
     3090            "type": "library",
     3091            "extra": {
     3092                "bamarni-bin": {
     3093                    "bin-links": true,
     3094                    "forward-command": true
     3095                },
     3096                "branch-alias": {
     3097                    "dev-master": "5.5-dev"
     3098                }
     3099            },
     3100            "installation-source": "dist",
     3101            "autoload": {
     3102                "psr-4": {
     3103                    "Dotenv\\": "src/"
     3104                }
     3105            },
     3106            "notification-url": "https://packagist.org/downloads/",
     3107            "license": [
     3108                "BSD-3-Clause"
     3109            ],
     3110            "authors": [
     3111                {
     3112                    "name": "Graham Campbell",
     3113                    "email": "[email protected]",
     3114                    "homepage": "https://github.com/GrahamCampbell"
     3115                },
     3116                {
     3117                    "name": "Vance Lucas",
     3118                    "email": "[email protected]",
     3119                    "homepage": "https://github.com/vlucas"
     3120                }
     3121            ],
     3122            "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
     3123            "keywords": [
     3124                "dotenv",
     3125                "env",
     3126                "environment"
     3127            ],
     3128            "support": {
     3129                "issues": "https://github.com/vlucas/phpdotenv/issues",
     3130                "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
     3131            },
     3132            "funding": [
     3133                {
     3134                    "url": "https://github.com/GrahamCampbell",
     3135                    "type": "github"
     3136                },
     3137                {
     3138                    "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
     3139                    "type": "tidelift"
     3140                }
     3141            ],
     3142            "install-path": "../vlucas/phpdotenv"
    513143        }
    523144    ],
    53     "dev": false,
    54     "dev-package-names": []
     3145    "dev": true,
     3146    "dev-package-names": [
     3147        "composer/pcre",
     3148        "composer/semver",
     3149        "composer/xdebug-handler",
     3150        "doctrine/annotations",
     3151        "doctrine/lexer",
     3152        "friendsofphp/php-cs-fixer",
     3153        "psr/cache",
     3154        "psr/container",
     3155        "psr/event-dispatcher",
     3156        "psr/log",
     3157        "roave/security-advisories",
     3158        "sebastian/diff",
     3159        "symfony/console",
     3160        "symfony/deprecation-contracts",
     3161        "symfony/event-dispatcher",
     3162        "symfony/event-dispatcher-contracts",
     3163        "symfony/filesystem",
     3164        "symfony/finder",
     3165        "symfony/options-resolver",
     3166        "symfony/polyfill-intl-grapheme",
     3167        "symfony/polyfill-intl-normalizer",
     3168        "symfony/polyfill-php73",
     3169        "symfony/polyfill-php81",
     3170        "symfony/process",
     3171        "symfony/service-contracts",
     3172        "symfony/stopwatch",
     3173        "symfony/string"
     3174    ]
    553175}
  • ip2content/trunk/vendor/composer/installed.php

    r2864341 r3131444  
    22    'root' => array(
    33        'name' => 'wmip2c/plugin',
    4         'pretty_version' => 'dev-main',
    5         'version' => 'dev-main',
    6         'reference' => '7eb88f6d176db00af348d4c5e2510480c062cf2a',
     4        'pretty_version' => 'dev-master',
     5        'version' => 'dev-master',
     6        'reference' => 'c6222ee4a575288e904d38f0b099666ae551d079',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
    99        'aliases' => array(),
    10         'dev' => false,
     10        'dev' => true,
    1111    ),
    1212    'versions' => array(
     13        'composer/pcre' => array(
     14            'pretty_version' => '3.1.0',
     15            'version' => '3.1.0.0',
     16            'reference' => '4bff79ddd77851fe3cdd11616ed3f92841ba5bd2',
     17            'type' => 'library',
     18            'install_path' => __DIR__ . '/./pcre',
     19            'aliases' => array(),
     20            'dev_requirement' => true,
     21        ),
     22        'composer/semver' => array(
     23            'pretty_version' => '3.3.2',
     24            'version' => '3.3.2.0',
     25            'reference' => '3953f23262f2bff1919fc82183ad9acb13ff62c9',
     26            'type' => 'library',
     27            'install_path' => __DIR__ . '/./semver',
     28            'aliases' => array(),
     29            'dev_requirement' => true,
     30        ),
     31        'composer/xdebug-handler' => array(
     32            'pretty_version' => '3.0.3',
     33            'version' => '3.0.3.0',
     34            'reference' => 'ced299686f41dce890debac69273b47ffe98a40c',
     35            'type' => 'library',
     36            'install_path' => __DIR__ . '/./xdebug-handler',
     37            'aliases' => array(),
     38            'dev_requirement' => true,
     39        ),
     40        'doctrine/annotations' => array(
     41            'pretty_version' => '1.13.3',
     42            'version' => '1.13.3.0',
     43            'reference' => '648b0343343565c4a056bfc8392201385e8d89f0',
     44            'type' => 'library',
     45            'install_path' => __DIR__ . '/../doctrine/annotations',
     46            'aliases' => array(),
     47            'dev_requirement' => true,
     48        ),
     49        'doctrine/lexer' => array(
     50            'pretty_version' => '1.2.3',
     51            'version' => '1.2.3.0',
     52            'reference' => 'c268e882d4dbdd85e36e4ad69e02dc284f89d229',
     53            'type' => 'library',
     54            'install_path' => __DIR__ . '/../doctrine/lexer',
     55            'aliases' => array(),
     56            'dev_requirement' => true,
     57        ),
     58        'fire015/flintstone' => array(
     59            'pretty_version' => 'v2.3.0',
     60            'version' => '2.3.0.0',
     61            'reference' => '406bcaebb4c0e352aa097d141ffd90a2f57cf679',
     62            'type' => 'library',
     63            'install_path' => __DIR__ . '/../fire015/flintstone',
     64            'aliases' => array(),
     65            'dev_requirement' => false,
     66        ),
     67        'friendsofphp/php-cs-fixer' => array(
     68            'pretty_version' => 'v3.13.0',
     69            'version' => '3.13.0.0',
     70            'reference' => 'a6232229a8309e8811dc751c28b91cb34b2943e1',
     71            'type' => 'application',
     72            'install_path' => __DIR__ . '/../friendsofphp/php-cs-fixer',
     73            'aliases' => array(),
     74            'dev_requirement' => true,
     75        ),
     76        'graham-campbell/result-type' => array(
     77            'pretty_version' => 'v1.1.0',
     78            'version' => '1.1.0.0',
     79            'reference' => 'a878d45c1914464426dc94da61c9e1d36ae262a8',
     80            'type' => 'library',
     81            'install_path' => __DIR__ . '/../graham-campbell/result-type',
     82            'aliases' => array(),
     83            'dev_requirement' => false,
     84        ),
     85        'myclabs/php-enum' => array(
     86            'pretty_version' => '1.8.4',
     87            'version' => '1.8.4.0',
     88            'reference' => 'a867478eae49c9f59ece437ae7f9506bfaa27483',
     89            'type' => 'library',
     90            'install_path' => __DIR__ . '/../myclabs/php-enum',
     91            'aliases' => array(),
     92            'dev_requirement' => false,
     93        ),
     94        'phpoption/phpoption' => array(
     95            'pretty_version' => '1.9.0',
     96            'version' => '1.9.0.0',
     97            'reference' => 'dc5ff11e274a90cc1c743f66c9ad700ce50db9ab',
     98            'type' => 'library',
     99            'install_path' => __DIR__ . '/../phpoption/phpoption',
     100            'aliases' => array(),
     101            'dev_requirement' => false,
     102        ),
     103        'psr/cache' => array(
     104            'pretty_version' => '1.0.1',
     105            'version' => '1.0.1.0',
     106            'reference' => 'd11b50ad223250cf17b86e38383413f5a6764bf8',
     107            'type' => 'library',
     108            'install_path' => __DIR__ . '/../psr/cache',
     109            'aliases' => array(),
     110            'dev_requirement' => true,
     111        ),
     112        'psr/container' => array(
     113            'pretty_version' => '1.1.2',
     114            'version' => '1.1.2.0',
     115            'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea',
     116            'type' => 'library',
     117            'install_path' => __DIR__ . '/../psr/container',
     118            'aliases' => array(),
     119            'dev_requirement' => true,
     120        ),
     121        'psr/event-dispatcher' => array(
     122            'pretty_version' => '1.0.0',
     123            'version' => '1.0.0.0',
     124            'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0',
     125            'type' => 'library',
     126            'install_path' => __DIR__ . '/../psr/event-dispatcher',
     127            'aliases' => array(),
     128            'dev_requirement' => true,
     129        ),
     130        'psr/event-dispatcher-implementation' => array(
     131            'dev_requirement' => true,
     132            'provided' => array(
     133                0 => '1.0',
     134            ),
     135        ),
     136        'psr/log' => array(
     137            'pretty_version' => '1.1.4',
     138            'version' => '1.1.4.0',
     139            'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11',
     140            'type' => 'library',
     141            'install_path' => __DIR__ . '/../psr/log',
     142            'aliases' => array(),
     143            'dev_requirement' => true,
     144        ),
     145        'psr/log-implementation' => array(
     146            'dev_requirement' => true,
     147            'provided' => array(
     148                0 => '1.0|2.0',
     149            ),
     150        ),
    13151        'rakit/validation' => array(
    14152            'pretty_version' => 'v1.4.0',
     
    20158            'dev_requirement' => false,
    21159        ),
     160        'roave/security-advisories' => array(
     161            'pretty_version' => 'dev-latest',
     162            'version' => 'dev-latest',
     163            'reference' => 'a5d6404aa779f8c718f5e90164da5c37a6065aaf',
     164            'type' => 'metapackage',
     165            'install_path' => null,
     166            'aliases' => array(
     167                0 => '9999999-dev',
     168            ),
     169            'dev_requirement' => true,
     170        ),
     171        'sebastian/diff' => array(
     172            'pretty_version' => '4.0.4',
     173            'version' => '4.0.4.0',
     174            'reference' => '3461e3fccc7cfdfc2720be910d3bd73c69be590d',
     175            'type' => 'library',
     176            'install_path' => __DIR__ . '/../sebastian/diff',
     177            'aliases' => array(),
     178            'dev_requirement' => true,
     179        ),
     180        'symfony/console' => array(
     181            'pretty_version' => 'v5.4.16',
     182            'version' => '5.4.16.0',
     183            'reference' => '8e9b9c8dfb33af6057c94e1b44846bee700dc5ef',
     184            'type' => 'library',
     185            'install_path' => __DIR__ . '/../symfony/console',
     186            'aliases' => array(),
     187            'dev_requirement' => true,
     188        ),
     189        'symfony/deprecation-contracts' => array(
     190            'pretty_version' => 'v2.5.2',
     191            'version' => '2.5.2.0',
     192            'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66',
     193            'type' => 'library',
     194            'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
     195            'aliases' => array(),
     196            'dev_requirement' => true,
     197        ),
     198        'symfony/event-dispatcher' => array(
     199            'pretty_version' => 'v5.4.9',
     200            'version' => '5.4.9.0',
     201            'reference' => '8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc',
     202            'type' => 'library',
     203            'install_path' => __DIR__ . '/../symfony/event-dispatcher',
     204            'aliases' => array(),
     205            'dev_requirement' => true,
     206        ),
     207        'symfony/event-dispatcher-contracts' => array(
     208            'pretty_version' => 'v2.5.2',
     209            'version' => '2.5.2.0',
     210            'reference' => 'f98b54df6ad059855739db6fcbc2d36995283fe1',
     211            'type' => 'library',
     212            'install_path' => __DIR__ . '/../symfony/event-dispatcher-contracts',
     213            'aliases' => array(),
     214            'dev_requirement' => true,
     215        ),
     216        'symfony/event-dispatcher-implementation' => array(
     217            'dev_requirement' => true,
     218            'provided' => array(
     219                0 => '2.0',
     220            ),
     221        ),
     222        'symfony/filesystem' => array(
     223            'pretty_version' => 'v5.4.13',
     224            'version' => '5.4.13.0',
     225            'reference' => 'ac09569844a9109a5966b9438fc29113ce77cf51',
     226            'type' => 'library',
     227            'install_path' => __DIR__ . '/../symfony/filesystem',
     228            'aliases' => array(),
     229            'dev_requirement' => true,
     230        ),
     231        'symfony/finder' => array(
     232            'pretty_version' => 'v5.4.11',
     233            'version' => '5.4.11.0',
     234            'reference' => '7872a66f57caffa2916a584db1aa7f12adc76f8c',
     235            'type' => 'library',
     236            'install_path' => __DIR__ . '/../symfony/finder',
     237            'aliases' => array(),
     238            'dev_requirement' => true,
     239        ),
     240        'symfony/options-resolver' => array(
     241            'pretty_version' => 'v5.4.11',
     242            'version' => '5.4.11.0',
     243            'reference' => '54f14e36aa73cb8f7261d7686691fd4d75ea2690',
     244            'type' => 'library',
     245            'install_path' => __DIR__ . '/../symfony/options-resolver',
     246            'aliases' => array(),
     247            'dev_requirement' => true,
     248        ),
     249        'symfony/polyfill-ctype' => array(
     250            'pretty_version' => 'v1.27.0',
     251            'version' => '1.27.0.0',
     252            'reference' => '5bbc823adecdae860bb64756d639ecfec17b050a',
     253            'type' => 'library',
     254            'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
     255            'aliases' => array(),
     256            'dev_requirement' => false,
     257        ),
     258        'symfony/polyfill-intl-grapheme' => array(
     259            'pretty_version' => 'v1.27.0',
     260            'version' => '1.27.0.0',
     261            'reference' => '511a08c03c1960e08a883f4cffcacd219b758354',
     262            'type' => 'library',
     263            'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme',
     264            'aliases' => array(),
     265            'dev_requirement' => true,
     266        ),
     267        'symfony/polyfill-intl-normalizer' => array(
     268            'pretty_version' => 'v1.27.0',
     269            'version' => '1.27.0.0',
     270            'reference' => '19bd1e4fcd5b91116f14d8533c57831ed00571b6',
     271            'type' => 'library',
     272            'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer',
     273            'aliases' => array(),
     274            'dev_requirement' => true,
     275        ),
     276        'symfony/polyfill-mbstring' => array(
     277            'pretty_version' => 'v1.27.0',
     278            'version' => '1.27.0.0',
     279            'reference' => '8ad114f6b39e2c98a8b0e3bd907732c207c2b534',
     280            'type' => 'library',
     281            'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
     282            'aliases' => array(),
     283            'dev_requirement' => false,
     284        ),
     285        'symfony/polyfill-php73' => array(
     286            'pretty_version' => 'v1.27.0',
     287            'version' => '1.27.0.0',
     288            'reference' => '9e8ecb5f92152187c4799efd3c96b78ccab18ff9',
     289            'type' => 'library',
     290            'install_path' => __DIR__ . '/../symfony/polyfill-php73',
     291            'aliases' => array(),
     292            'dev_requirement' => true,
     293        ),
     294        'symfony/polyfill-php80' => array(
     295            'pretty_version' => 'v1.27.0',
     296            'version' => '1.27.0.0',
     297            'reference' => '7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936',
     298            'type' => 'library',
     299            'install_path' => __DIR__ . '/../symfony/polyfill-php80',
     300            'aliases' => array(),
     301            'dev_requirement' => false,
     302        ),
     303        'symfony/polyfill-php81' => array(
     304            'pretty_version' => 'v1.27.0',
     305            'version' => '1.27.0.0',
     306            'reference' => '707403074c8ea6e2edaf8794b0157a0bfa52157a',
     307            'type' => 'library',
     308            'install_path' => __DIR__ . '/../symfony/polyfill-php81',
     309            'aliases' => array(),
     310            'dev_requirement' => true,
     311        ),
     312        'symfony/process' => array(
     313            'pretty_version' => 'v5.4.11',
     314            'version' => '5.4.11.0',
     315            'reference' => '6e75fe6874cbc7e4773d049616ab450eff537bf1',
     316            'type' => 'library',
     317            'install_path' => __DIR__ . '/../symfony/process',
     318            'aliases' => array(),
     319            'dev_requirement' => true,
     320        ),
     321        'symfony/service-contracts' => array(
     322            'pretty_version' => 'v2.5.2',
     323            'version' => '2.5.2.0',
     324            'reference' => '4b426aac47d6427cc1a1d0f7e2ac724627f5966c',
     325            'type' => 'library',
     326            'install_path' => __DIR__ . '/../symfony/service-contracts',
     327            'aliases' => array(),
     328            'dev_requirement' => true,
     329        ),
     330        'symfony/stopwatch' => array(
     331            'pretty_version' => 'v5.4.13',
     332            'version' => '5.4.13.0',
     333            'reference' => '6df7a3effde34d81717bbef4591e5ffe32226d69',
     334            'type' => 'library',
     335            'install_path' => __DIR__ . '/../symfony/stopwatch',
     336            'aliases' => array(),
     337            'dev_requirement' => true,
     338        ),
     339        'symfony/string' => array(
     340            'pretty_version' => 'v5.4.15',
     341            'version' => '5.4.15.0',
     342            'reference' => '571334ce9f687e3e6af72db4d3b2a9431e4fd9ed',
     343            'type' => 'library',
     344            'install_path' => __DIR__ . '/../symfony/string',
     345            'aliases' => array(),
     346            'dev_requirement' => true,
     347        ),
     348        'vlucas/phpdotenv' => array(
     349            'pretty_version' => 'v5.5.0',
     350            'version' => '5.5.0.0',
     351            'reference' => '1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7',
     352            'type' => 'library',
     353            'install_path' => __DIR__ . '/../vlucas/phpdotenv',
     354            'aliases' => array(),
     355            'dev_requirement' => false,
     356        ),
    22357        'wmip2c/plugin' => array(
    23             'pretty_version' => 'dev-main',
    24             'version' => 'dev-main',
    25             'reference' => '7eb88f6d176db00af348d4c5e2510480c062cf2a',
     358            'pretty_version' => 'dev-master',
     359            'version' => 'dev-master',
     360            'reference' => 'c6222ee4a575288e904d38f0b099666ae551d079',
    26361            'type' => 'project',
    27362            'install_path' => __DIR__ . '/../../',
  • ip2content/trunk/vendor/composer/platform_check.php

    r2864341 r3131444  
    55$issues = array();
    66
    7 if (!(PHP_VERSION_ID >= 70000)) {
    8     $issues[] = 'Your Composer dependencies require a PHP version ">= 7.0.0". You are running ' . PHP_VERSION . '.';
     7if (!(PHP_VERSION_ID >= 70300)) {
     8    $issues[] = 'Your Composer dependencies require a PHP version ">= 7.3.0". You are running ' . PHP_VERSION . '.';
    99}
    1010
  • ip2content/trunk/wmip2c.php

    r3115264 r3131444  
    44Plugin Name: IP2Content
    55Description: IP2Content
    6 Version: 1.7.2
     6Version: 1.8.0
    77Author: WiredMinds
    88Author URI: https://wiredminds.de/
Note: See TracChangeset for help on using the changeset viewer.