Plugin Directory

Changeset 3131121 for wp-slimstat


Ignore:
Timestamp:
08/05/2024 02:31:32 PM (20 months ago)
Author:
mostafa.s1990
Message:

Update to version 5.2.5 from GitHub

Location:
wp-slimstat
Files:
1112 added
30 deleted
22 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-slimstat/tags/5.2.5/CHANGELOG.md

    r3119942 r3131121  
     1= 5.2.5 - 05.08.2024 =
     2* Enhancement: Mozart: Implemented to avoid plugin namespace conflicts.
     3* Enhancement: Replaced default IP lookup service with a new provider offering fewer limitations and integrated map functionality.
     4* Fix: Resolved an issue occurring during the uninstallation process in certain cases.
     5
    16= 5.2.4 - 17.07.2024 =
    27* Fix: Resolved issues with capabilities in the sub-menu.
  • wp-slimstat/tags/5.2.5/readme.txt

    r3119942 r3131121  
    66Requires PHP: 7.4
    77Tested up to: 6.6
    8 Stable tag: 5.2.4
     8Stable tag: 5.2.5
    99License: GPL-2.0+
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6666
    6767== Changelog ==
    68 = 5.2.4 - 17.07.2024 =
    69 * Fix: Resolved issues with capabilities in the sub-menu.
    70 * Enhancement: Added a missing title for Screen Options.
     68= 5.2.5 - 05.08.2024 =
     69* Enhancement: Mozart: Implemented to avoid plugin namespace conflicts.
     70* Enhancement: Replaced default IP lookup service with a new provider offering fewer limitations and integrated map functionality.
     71* Fix: Resolved an issue occurring during the uninstallation process in certain cases.
    7172
    7273[See changelog for all versions](https://raw.githubusercontent.com/wp-slimstat/wp-slimstat/master/CHANGELOG.md).
  • wp-slimstat/tags/5.2.5/src/Services/Browscap.php

    r3103187 r3131121  
    33namespace SlimStat\Services;
    44
    5 use Psr\Log\NullLogger;
     5use Exception;
     6use SlimStat\Dependencies\League\Flysystem\Filesystem;
     7use SlimStat\Dependencies\League\Flysystem\Local\LocalFilesystemAdapter;
     8use SlimStat\Dependencies\MatthiasMullie\Scrapbook\Adapters\Flysystem;
     9use SlimStat\Dependencies\MatthiasMullie\Scrapbook\Psr16\SimpleCache;
     10use SlimStat\Dependencies\Psr\Log\NullLogger;
    611use SlimStat\Utils\UADetector;
    712use wp_slimstat;
     
    7075    {
    7176        try {
    72             $file_cache    = new \League\Flysystem\Local\LocalFilesystemAdapter($_cache_path);
    73             $filesystem    = new \League\Flysystem\Filesystem($file_cache);
    74             $cache         = new \MatthiasMullie\Scrapbook\Psr16\SimpleCache(
    75                 new \MatthiasMullie\Scrapbook\Adapters\Flysystem($filesystem)
     77            $file_cache    = new LocalFilesystemAdapter($_cache_path);
     78            $filesystem    = new Filesystem($file_cache);
     79            $cache         = new SimpleCache(
     80                new Flysystem($filesystem)
    7681            );
    7782            $logger        = new NullLogger();
    78             $browscap      = new \BrowscapPHP\Browscap($cache, $logger);
     83            $browscap      = new \SlimStat\Dependencies\BrowscapPHP\Browscap($cache, $logger);
    7984            $search_object = $browscap->getBrowser();
    80         } catch (\Exception $e) {
     85        } catch (Exception $e) {
    8186            $search_object = '';
    8287        }
  • wp-slimstat/tags/5.2.5/uninstall.php

    r3108230 r3131121  
    6262    // Remove scheduled autopurge events
    6363    wp_clear_scheduled_hook('wp_slimstat_purge');
     64    wp_clear_scheduled_hook('wp_slimstat_update_geoip_database');
    6465
    65     // Uninstall Geographic
    66     $geographicProvider = new \SlimStat\Services\GeoService();
    67     $geographicProvider->clearScheduledEvent();
    68     $geographicProvider->deleteDatabaseFile();
     66    // Remove the uploads folder
     67    if (defined('UPLOADS')) {
     68        $upload_dir = ABSPATH . UPLOADS . '/wp-slimstat';
     69    } else {
     70        $upload_dir_info = wp_upload_dir();
     71        $upload_dir = $upload_dir_info['basedir'];
     72
     73        // Handle multisite environment
     74        if (is_multisite()) {
     75            if (!(is_main_network() && is_main_site() && defined('MULTISITE'))) {
     76                $upload_dir = str_replace('/sites/' . get_current_blog_id(), '', $upload_dir);
     77            }
     78        }
     79        $upload_dir .= '/wp-slimstat';
     80    }
     81
     82    WP_Filesystem();
     83    global $wp_filesystem;
     84    $wp_filesystem->delete($upload_dir, true, 'd');
    6985}
  • wp-slimstat/tags/5.2.5/vendor/composer/autoload_classmap.php

    r3108230 r3131121  
    77
    88return array(
    9     'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
    10     'BrowscapPHP\\Browscap' => $vendorDir . '/veronalabs/browscap-php/src/Browscap.php',
    11     'BrowscapPHP\\BrowscapInterface' => $vendorDir . '/veronalabs/browscap-php/src/BrowscapInterface.php',
    12     'BrowscapPHP\\BrowscapUpdater' => $vendorDir . '/veronalabs/browscap-php/src/BrowscapUpdater.php',
    13     'BrowscapPHP\\BrowscapUpdaterInterface' => $vendorDir . '/veronalabs/browscap-php/src/BrowscapUpdaterInterface.php',
    14     'BrowscapPHP\\Cache\\BrowscapCache' => $vendorDir . '/veronalabs/browscap-php/src/Cache/BrowscapCache.php',
    15     'BrowscapPHP\\Cache\\BrowscapCacheInterface' => $vendorDir . '/veronalabs/browscap-php/src/Cache/BrowscapCacheInterface.php',
    16     'BrowscapPHP\\Command\\CheckUpdateCommand' => $vendorDir . '/veronalabs/browscap-php/src/Command/CheckUpdateCommand.php',
    17     'BrowscapPHP\\Command\\ConvertCommand' => $vendorDir . '/veronalabs/browscap-php/src/Command/ConvertCommand.php',
    18     'BrowscapPHP\\Command\\FetchCommand' => $vendorDir . '/veronalabs/browscap-php/src/Command/FetchCommand.php',
    19     'BrowscapPHP\\Command\\ParserCommand' => $vendorDir . '/veronalabs/browscap-php/src/Command/ParserCommand.php',
    20     'BrowscapPHP\\Command\\UpdateCommand' => $vendorDir . '/veronalabs/browscap-php/src/Command/UpdateCommand.php',
    21     'BrowscapPHP\\Data\\PropertyFormatter' => $vendorDir . '/veronalabs/browscap-php/src/Data/PropertyFormatter.php',
    22     'BrowscapPHP\\Data\\PropertyHolder' => $vendorDir . '/veronalabs/browscap-php/src/Data/PropertyHolder.php',
    23     'BrowscapPHP\\Exception' => $vendorDir . '/veronalabs/browscap-php/src/Exception.php',
    24     'BrowscapPHP\\Exception\\DomainException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/DomainException.php',
    25     'BrowscapPHP\\Exception\\ErrorCachedVersionException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/ErrorCachedVersionException.php',
    26     'BrowscapPHP\\Exception\\ErrorReadingFileException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/ErrorReadingFileException.php',
    27     'BrowscapPHP\\Exception\\FetcherException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/FetcherException.php',
    28     'BrowscapPHP\\Exception\\FileNameMissingException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/FileNameMissingException.php',
    29     'BrowscapPHP\\Exception\\FileNotFoundException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/FileNotFoundException.php',
    30     'BrowscapPHP\\Exception\\InvalidArgumentException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/InvalidArgumentException.php',
    31     'BrowscapPHP\\Exception\\NoCachedVersionException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/NoCachedVersionException.php',
    32     'BrowscapPHP\\Exception\\NoNewVersionException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/NoNewVersionException.php',
    33     'BrowscapPHP\\Formatter\\FormatterInterface' => $vendorDir . '/veronalabs/browscap-php/src/Formatter/FormatterInterface.php',
    34     'BrowscapPHP\\Formatter\\LegacyFormatter' => $vendorDir . '/veronalabs/browscap-php/src/Formatter/LegacyFormatter.php',
    35     'BrowscapPHP\\Formatter\\PhpGetBrowser' => $vendorDir . '/veronalabs/browscap-php/src/Formatter/PhpGetBrowser.php',
    36     'BrowscapPHP\\Helper\\Converter' => $vendorDir . '/veronalabs/browscap-php/src/Helper/Converter.php',
    37     'BrowscapPHP\\Helper\\ConverterInterface' => $vendorDir . '/veronalabs/browscap-php/src/Helper/ConverterInterface.php',
    38     'BrowscapPHP\\Helper\\Exception' => $vendorDir . '/veronalabs/browscap-php/src/Helper/Exception.php',
    39     'BrowscapPHP\\Helper\\Filesystem' => $vendorDir . '/veronalabs/browscap-php/src/Helper/Filesystem.php',
    40     'BrowscapPHP\\Helper\\IniLoader' => $vendorDir . '/veronalabs/browscap-php/src/Helper/IniLoader.php',
    41     'BrowscapPHP\\Helper\\IniLoaderInterface' => $vendorDir . '/veronalabs/browscap-php/src/Helper/IniLoaderInterface.php',
    42     'BrowscapPHP\\Helper\\LoggerHelper' => $vendorDir . '/veronalabs/browscap-php/src/Helper/LoggerHelper.php',
    43     'BrowscapPHP\\Helper\\Quoter' => $vendorDir . '/veronalabs/browscap-php/src/Helper/Quoter.php',
    44     'BrowscapPHP\\Helper\\QuoterInterface' => $vendorDir . '/veronalabs/browscap-php/src/Helper/QuoterInterface.php',
    45     'BrowscapPHP\\Helper\\Support' => $vendorDir . '/veronalabs/browscap-php/src/Helper/Support.php',
    46     'BrowscapPHP\\Helper\\SupportInterface' => $vendorDir . '/veronalabs/browscap-php/src/Helper/SupportInterface.php',
    47     'BrowscapPHP\\IniParser\\IniParser' => $vendorDir . '/veronalabs/browscap-php/src/IniParser/IniParser.php',
    48     'BrowscapPHP\\IniParser\\ParserInterface' => $vendorDir . '/veronalabs/browscap-php/src/IniParser/ParserInterface.php',
    49     'BrowscapPHP\\Parser\\Helper\\GetData' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Helper/GetData.php',
    50     'BrowscapPHP\\Parser\\Helper\\GetDataInterface' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Helper/GetDataInterface.php',
    51     'BrowscapPHP\\Parser\\Helper\\GetPattern' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Helper/GetPattern.php',
    52     'BrowscapPHP\\Parser\\Helper\\GetPatternInterface' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Helper/GetPatternInterface.php',
    53     'BrowscapPHP\\Parser\\Helper\\Pattern' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Helper/Pattern.php',
    54     'BrowscapPHP\\Parser\\Helper\\SubKey' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Helper/SubKey.php',
    55     'BrowscapPHP\\Parser\\Ini' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Ini.php',
    56     'BrowscapPHP\\Parser\\ParserInterface' => $vendorDir . '/veronalabs/browscap-php/src/Parser/ParserInterface.php',
    579    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    58     'GuzzleHttp\\BodySummarizer' => $vendorDir . '/guzzlehttp/guzzle/src/BodySummarizer.php',
    59     'GuzzleHttp\\BodySummarizerInterface' => $vendorDir . '/guzzlehttp/guzzle/src/BodySummarizerInterface.php',
    60     'GuzzleHttp\\Client' => $vendorDir . '/guzzlehttp/guzzle/src/Client.php',
    61     'GuzzleHttp\\ClientInterface' => $vendorDir . '/guzzlehttp/guzzle/src/ClientInterface.php',
    62     'GuzzleHttp\\ClientTrait' => $vendorDir . '/guzzlehttp/guzzle/src/ClientTrait.php',
    63     'GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
    64     'GuzzleHttp\\Cookie\\CookieJarInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',
    65     'GuzzleHttp\\Cookie\\FileCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',
    66     'GuzzleHttp\\Cookie\\SessionCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',
    67     'GuzzleHttp\\Cookie\\SetCookie' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php',
    68     'GuzzleHttp\\Exception\\BadResponseException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php',
    69     'GuzzleHttp\\Exception\\ClientException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ClientException.php',
    70     'GuzzleHttp\\Exception\\ConnectException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ConnectException.php',
    71     'GuzzleHttp\\Exception\\GuzzleException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php',
    72     'GuzzleHttp\\Exception\\InvalidArgumentException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',
    73     'GuzzleHttp\\Exception\\RequestException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/RequestException.php',
    74     'GuzzleHttp\\Exception\\ServerException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ServerException.php',
    75     'GuzzleHttp\\Exception\\TooManyRedirectsException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',
    76     'GuzzleHttp\\Exception\\TransferException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TransferException.php',
    77     'GuzzleHttp\\HandlerStack' => $vendorDir . '/guzzlehttp/guzzle/src/HandlerStack.php',
    78     'GuzzleHttp\\Handler\\CurlFactory' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php',
    79     'GuzzleHttp\\Handler\\CurlFactoryInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',
    80     'GuzzleHttp\\Handler\\CurlHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php',
    81     'GuzzleHttp\\Handler\\CurlMultiHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',
    82     'GuzzleHttp\\Handler\\EasyHandle' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php',
    83     'GuzzleHttp\\Handler\\HeaderProcessor' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php',
    84     'GuzzleHttp\\Handler\\MockHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/MockHandler.php',
    85     'GuzzleHttp\\Handler\\Proxy' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/Proxy.php',
    86     'GuzzleHttp\\Handler\\StreamHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php',
    87     'GuzzleHttp\\MessageFormatter' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatter.php',
    88     'GuzzleHttp\\MessageFormatterInterface' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatterInterface.php',
    89     'GuzzleHttp\\Middleware' => $vendorDir . '/guzzlehttp/guzzle/src/Middleware.php',
    90     'GuzzleHttp\\Pool' => $vendorDir . '/guzzlehttp/guzzle/src/Pool.php',
    91     'GuzzleHttp\\PrepareBodyMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',
    92     'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php',
    93     'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php',
    94     'GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/guzzlehttp/promises/src/Coroutine.php',
    95     'GuzzleHttp\\Promise\\Create' => $vendorDir . '/guzzlehttp/promises/src/Create.php',
    96     'GuzzleHttp\\Promise\\Each' => $vendorDir . '/guzzlehttp/promises/src/Each.php',
    97     'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php',
    98     'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php',
    99     'GuzzleHttp\\Promise\\Is' => $vendorDir . '/guzzlehttp/promises/src/Is.php',
    100     'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php',
    101     'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php',
    102     'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php',
    103     'GuzzleHttp\\Promise\\RejectedPromise' => $vendorDir . '/guzzlehttp/promises/src/RejectedPromise.php',
    104     'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php',
    105     'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php',
    106     'GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/guzzlehttp/promises/src/TaskQueueInterface.php',
    107     'GuzzleHttp\\Promise\\Utils' => $vendorDir . '/guzzlehttp/promises/src/Utils.php',
    108     'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php',
    109     'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php',
    110     'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php',
    111     'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php',
    112     'GuzzleHttp\\Psr7\\Exception\\MalformedUriException' => $vendorDir . '/guzzlehttp/psr7/src/Exception/MalformedUriException.php',
    113     'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php',
    114     'GuzzleHttp\\Psr7\\Header' => $vendorDir . '/guzzlehttp/psr7/src/Header.php',
    115     'GuzzleHttp\\Psr7\\HttpFactory' => $vendorDir . '/guzzlehttp/psr7/src/HttpFactory.php',
    116     'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php',
    117     'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php',
    118     'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php',
    119     'GuzzleHttp\\Psr7\\Message' => $vendorDir . '/guzzlehttp/psr7/src/Message.php',
    120     'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php',
    121     'GuzzleHttp\\Psr7\\MimeType' => $vendorDir . '/guzzlehttp/psr7/src/MimeType.php',
    122     'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php',
    123     'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php',
    124     'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php',
    125     'GuzzleHttp\\Psr7\\Query' => $vendorDir . '/guzzlehttp/psr7/src/Query.php',
    126     'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php',
    127     'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php',
    128     'GuzzleHttp\\Psr7\\Rfc7230' => $vendorDir . '/guzzlehttp/psr7/src/Rfc7230.php',
    129     'GuzzleHttp\\Psr7\\ServerRequest' => $vendorDir . '/guzzlehttp/psr7/src/ServerRequest.php',
    130     'GuzzleHttp\\Psr7\\Stream' => $vendorDir . '/guzzlehttp/psr7/src/Stream.php',
    131     'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => $vendorDir . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
    132     'GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php',
    133     'GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php',
    134     'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php',
    135     'GuzzleHttp\\Psr7\\UriComparator' => $vendorDir . '/guzzlehttp/psr7/src/UriComparator.php',
    136     'GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php',
    137     'GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php',
    138     'GuzzleHttp\\Psr7\\Utils' => $vendorDir . '/guzzlehttp/psr7/src/Utils.php',
    139     'GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
    140     'GuzzleHttp\\RequestOptions' => $vendorDir . '/guzzlehttp/guzzle/src/RequestOptions.php',
    141     'GuzzleHttp\\RetryMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
    142     'GuzzleHttp\\TransferStats' => $vendorDir . '/guzzlehttp/guzzle/src/TransferStats.php',
    143     'GuzzleHttp\\Utils' => $vendorDir . '/guzzlehttp/guzzle/src/Utils.php',
    144     'JsonException' => $vendorDir . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
    145     'League\\Flysystem\\Config' => $vendorDir . '/league/flysystem/src/Config.php',
    146     'League\\Flysystem\\CorruptedPathDetected' => $vendorDir . '/league/flysystem/src/CorruptedPathDetected.php',
    147     'League\\Flysystem\\DirectoryAttributes' => $vendorDir . '/league/flysystem/src/DirectoryAttributes.php',
    148     'League\\Flysystem\\DirectoryListing' => $vendorDir . '/league/flysystem/src/DirectoryListing.php',
    149     'League\\Flysystem\\FileAttributes' => $vendorDir . '/league/flysystem/src/FileAttributes.php',
    150     'League\\Flysystem\\Filesystem' => $vendorDir . '/league/flysystem/src/Filesystem.php',
    151     'League\\Flysystem\\FilesystemAdapter' => $vendorDir . '/league/flysystem/src/FilesystemAdapter.php',
    152     'League\\Flysystem\\FilesystemException' => $vendorDir . '/league/flysystem/src/FilesystemException.php',
    153     'League\\Flysystem\\FilesystemOperationFailed' => $vendorDir . '/league/flysystem/src/FilesystemOperationFailed.php',
    154     'League\\Flysystem\\FilesystemOperator' => $vendorDir . '/league/flysystem/src/FilesystemOperator.php',
    155     'League\\Flysystem\\FilesystemReader' => $vendorDir . '/league/flysystem/src/FilesystemReader.php',
    156     'League\\Flysystem\\FilesystemWriter' => $vendorDir . '/league/flysystem/src/FilesystemWriter.php',
    157     'League\\Flysystem\\InvalidStreamProvided' => $vendorDir . '/league/flysystem/src/InvalidStreamProvided.php',
    158     'League\\Flysystem\\InvalidVisibilityProvided' => $vendorDir . '/league/flysystem/src/InvalidVisibilityProvided.php',
    159     'League\\Flysystem\\Local\\LocalFilesystemAdapter' => $vendorDir . '/league/flysystem/src/Local/LocalFilesystemAdapter.php',
    160     'League\\Flysystem\\MountManager' => $vendorDir . '/league/flysystem/src/MountManager.php',
    161     'League\\Flysystem\\PathNormalizer' => $vendorDir . '/league/flysystem/src/PathNormalizer.php',
    162     'League\\Flysystem\\PathPrefixer' => $vendorDir . '/league/flysystem/src/PathPrefixer.php',
    163     'League\\Flysystem\\PathTraversalDetected' => $vendorDir . '/league/flysystem/src/PathTraversalDetected.php',
    164     'League\\Flysystem\\PortableVisibilityGuard' => $vendorDir . '/league/flysystem/src/PortableVisibilityGuard.php',
    165     'League\\Flysystem\\ProxyArrayAccessToProperties' => $vendorDir . '/league/flysystem/src/ProxyArrayAccessToProperties.php',
    166     'League\\Flysystem\\StorageAttributes' => $vendorDir . '/league/flysystem/src/StorageAttributes.php',
    167     'League\\Flysystem\\SymbolicLinkEncountered' => $vendorDir . '/league/flysystem/src/SymbolicLinkEncountered.php',
    168     'League\\Flysystem\\UnableToCheckFileExistence' => $vendorDir . '/league/flysystem/src/UnableToCheckFileExistence.php',
    169     'League\\Flysystem\\UnableToCopyFile' => $vendorDir . '/league/flysystem/src/UnableToCopyFile.php',
    170     'League\\Flysystem\\UnableToCreateDirectory' => $vendorDir . '/league/flysystem/src/UnableToCreateDirectory.php',
    171     'League\\Flysystem\\UnableToDeleteDirectory' => $vendorDir . '/league/flysystem/src/UnableToDeleteDirectory.php',
    172     'League\\Flysystem\\UnableToDeleteFile' => $vendorDir . '/league/flysystem/src/UnableToDeleteFile.php',
    173     'League\\Flysystem\\UnableToMountFilesystem' => $vendorDir . '/league/flysystem/src/UnableToMountFilesystem.php',
    174     'League\\Flysystem\\UnableToMoveFile' => $vendorDir . '/league/flysystem/src/UnableToMoveFile.php',
    175     'League\\Flysystem\\UnableToReadFile' => $vendorDir . '/league/flysystem/src/UnableToReadFile.php',
    176     'League\\Flysystem\\UnableToResolveFilesystemMount' => $vendorDir . '/league/flysystem/src/UnableToResolveFilesystemMount.php',
    177     'League\\Flysystem\\UnableToRetrieveMetadata' => $vendorDir . '/league/flysystem/src/UnableToRetrieveMetadata.php',
    178     'League\\Flysystem\\UnableToSetVisibility' => $vendorDir . '/league/flysystem/src/UnableToSetVisibility.php',
    179     'League\\Flysystem\\UnableToWriteFile' => $vendorDir . '/league/flysystem/src/UnableToWriteFile.php',
    180     'League\\Flysystem\\UnixVisibility\\PortableVisibilityConverter' => $vendorDir . '/league/flysystem/src/UnixVisibility/PortableVisibilityConverter.php',
    181     'League\\Flysystem\\UnixVisibility\\VisibilityConverter' => $vendorDir . '/league/flysystem/src/UnixVisibility/VisibilityConverter.php',
    182     'League\\Flysystem\\UnreadableFileEncountered' => $vendorDir . '/league/flysystem/src/UnreadableFileEncountered.php',
    183     'League\\Flysystem\\Visibility' => $vendorDir . '/league/flysystem/src/Visibility.php',
    184     'League\\Flysystem\\WhitespacePathNormalizer' => $vendorDir . '/league/flysystem/src/WhitespacePathNormalizer.php',
    185     'League\\MimeTypeDetection\\EmptyExtensionToMimeTypeMap' => $vendorDir . '/league/mime-type-detection/src/EmptyExtensionToMimeTypeMap.php',
    186     'League\\MimeTypeDetection\\ExtensionLookup' => $vendorDir . '/league/mime-type-detection/src/ExtensionLookup.php',
    187     'League\\MimeTypeDetection\\ExtensionMimeTypeDetector' => $vendorDir . '/league/mime-type-detection/src/ExtensionMimeTypeDetector.php',
    188     'League\\MimeTypeDetection\\ExtensionToMimeTypeMap' => $vendorDir . '/league/mime-type-detection/src/ExtensionToMimeTypeMap.php',
    189     'League\\MimeTypeDetection\\FinfoMimeTypeDetector' => $vendorDir . '/league/mime-type-detection/src/FinfoMimeTypeDetector.php',
    190     'League\\MimeTypeDetection\\GeneratedExtensionToMimeTypeMap' => $vendorDir . '/league/mime-type-detection/src/GeneratedExtensionToMimeTypeMap.php',
    191     'League\\MimeTypeDetection\\MimeTypeDetector' => $vendorDir . '/league/mime-type-detection/src/MimeTypeDetector.php',
    192     'League\\MimeTypeDetection\\OverridingExtensionToMimeTypeMap' => $vendorDir . '/league/mime-type-detection/src/OverridingExtensionToMimeTypeMap.php',
    193     'MatthiasMullie\\Scrapbook\\Adapters\\Apc' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Apc.php',
    194     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Apc' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Apc.php',
    195     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Couchbase' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Couchbase.php',
    196     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Flysystem' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Flysystem.php',
    197     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Memcached' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Memcached.php',
    198     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\MemoryStore' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/MemoryStore.php',
    199     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Redis' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Redis.php',
    200     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\SQL' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/SQL.php',
    201     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Utils\\PrefixKeys' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Utils/PrefixKeys.php',
    202     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Utils\\PrefixReset' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Utils/PrefixReset.php',
    203     'MatthiasMullie\\Scrapbook\\Adapters\\Couchbase' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Couchbase.php',
    204     'MatthiasMullie\\Scrapbook\\Adapters\\Flysystem' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Flysystem.php',
    205     'MatthiasMullie\\Scrapbook\\Adapters\\Memcached' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Memcached.php',
    206     'MatthiasMullie\\Scrapbook\\Adapters\\MemoryStore' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/MemoryStore.php',
    207     'MatthiasMullie\\Scrapbook\\Adapters\\MySQL' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/MySQL.php',
    208     'MatthiasMullie\\Scrapbook\\Adapters\\PostgreSQL' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/PostgreSQL.php',
    209     'MatthiasMullie\\Scrapbook\\Adapters\\Redis' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Redis.php',
    210     'MatthiasMullie\\Scrapbook\\Adapters\\SQL' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/SQL.php',
    211     'MatthiasMullie\\Scrapbook\\Adapters\\SQLite' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/SQLite.php',
    212     'MatthiasMullie\\Scrapbook\\Buffered\\BufferedStore' => $vendorDir . '/matthiasmullie/scrapbook/src/Buffered/BufferedStore.php',
    213     'MatthiasMullie\\Scrapbook\\Buffered\\TransactionalStore' => $vendorDir . '/matthiasmullie/scrapbook/src/Buffered/TransactionalStore.php',
    214     'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\Buffer' => $vendorDir . '/matthiasmullie/scrapbook/src/Buffered/Utils/Buffer.php',
    215     'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\BufferCollection' => $vendorDir . '/matthiasmullie/scrapbook/src/Buffered/Utils/BufferCollection.php',
    216     'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\Defer' => $vendorDir . '/matthiasmullie/scrapbook/src/Buffered/Utils/Defer.php',
    217     'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\Transaction' => $vendorDir . '/matthiasmullie/scrapbook/src/Buffered/Utils/Transaction.php',
    218     'MatthiasMullie\\Scrapbook\\Exception\\Exception' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/Exception.php',
    219     'MatthiasMullie\\Scrapbook\\Exception\\InvalidCollection' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/InvalidCollection.php',
    220     'MatthiasMullie\\Scrapbook\\Exception\\InvalidKey' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/InvalidKey.php',
    221     'MatthiasMullie\\Scrapbook\\Exception\\OperationFailed' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/OperationFailed.php',
    222     'MatthiasMullie\\Scrapbook\\Exception\\ServerUnhealthy' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/ServerUnhealthy.php',
    223     'MatthiasMullie\\Scrapbook\\Exception\\UnbegunTransaction' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/UnbegunTransaction.php',
    224     'MatthiasMullie\\Scrapbook\\Exception\\UncommittedTransaction' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/UncommittedTransaction.php',
    225     'MatthiasMullie\\Scrapbook\\KeyValueStore' => $vendorDir . '/matthiasmullie/scrapbook/src/KeyValueStore.php',
    226     'MatthiasMullie\\Scrapbook\\Psr16\\InvalidArgumentException' => $vendorDir . '/matthiasmullie/scrapbook/src/Psr16/InvalidArgumentException.php',
    227     'MatthiasMullie\\Scrapbook\\Psr16\\SimpleCache' => $vendorDir . '/matthiasmullie/scrapbook/src/Psr16/SimpleCache.php',
    228     'MatthiasMullie\\Scrapbook\\Psr6\\InvalidArgumentException' => $vendorDir . '/matthiasmullie/scrapbook/src/Psr6/InvalidArgumentException.php',
    229     'MatthiasMullie\\Scrapbook\\Psr6\\Item' => $vendorDir . '/matthiasmullie/scrapbook/src/Psr6/Item.php',
    230     'MatthiasMullie\\Scrapbook\\Psr6\\Pool' => $vendorDir . '/matthiasmullie/scrapbook/src/Psr6/Pool.php',
    231     'MatthiasMullie\\Scrapbook\\Psr6\\Repository' => $vendorDir . '/matthiasmullie/scrapbook/src/Psr6/Repository.php',
    232     'MatthiasMullie\\Scrapbook\\Scale\\Shard' => $vendorDir . '/matthiasmullie/scrapbook/src/Scale/Shard.php',
    233     'MatthiasMullie\\Scrapbook\\Scale\\StampedeProtector' => $vendorDir . '/matthiasmullie/scrapbook/src/Scale/StampedeProtector.php',
    234     'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
    235     'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
    236     'Psr\\Cache\\CacheException' => $vendorDir . '/psr/cache/src/CacheException.php',
    237     'Psr\\Cache\\CacheItemInterface' => $vendorDir . '/psr/cache/src/CacheItemInterface.php',
    238     'Psr\\Cache\\CacheItemPoolInterface' => $vendorDir . '/psr/cache/src/CacheItemPoolInterface.php',
    239     'Psr\\Cache\\InvalidArgumentException' => $vendorDir . '/psr/cache/src/InvalidArgumentException.php',
    240     'Psr\\Container\\ContainerExceptionInterface' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php',
    241     'Psr\\Container\\ContainerInterface' => $vendorDir . '/psr/container/src/ContainerInterface.php',
    242     'Psr\\Container\\NotFoundExceptionInterface' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php',
    243     'Psr\\Http\\Client\\ClientExceptionInterface' => $vendorDir . '/psr/http-client/src/ClientExceptionInterface.php',
    244     'Psr\\Http\\Client\\ClientInterface' => $vendorDir . '/psr/http-client/src/ClientInterface.php',
    245     'Psr\\Http\\Client\\NetworkExceptionInterface' => $vendorDir . '/psr/http-client/src/NetworkExceptionInterface.php',
    246     'Psr\\Http\\Client\\RequestExceptionInterface' => $vendorDir . '/psr/http-client/src/RequestExceptionInterface.php',
    247     'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php',
    248     'Psr\\Http\\Message\\RequestFactoryInterface' => $vendorDir . '/psr/http-factory/src/RequestFactoryInterface.php',
    249     'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php',
    250     'Psr\\Http\\Message\\ResponseFactoryInterface' => $vendorDir . '/psr/http-factory/src/ResponseFactoryInterface.php',
    251     'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php',
    252     'Psr\\Http\\Message\\ServerRequestFactoryInterface' => $vendorDir . '/psr/http-factory/src/ServerRequestFactoryInterface.php',
    253     'Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php',
    254     'Psr\\Http\\Message\\StreamFactoryInterface' => $vendorDir . '/psr/http-factory/src/StreamFactoryInterface.php',
    255     'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php',
    256     'Psr\\Http\\Message\\UploadedFileFactoryInterface' => $vendorDir . '/psr/http-factory/src/UploadedFileFactoryInterface.php',
    257     'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php',
    258     'Psr\\Http\\Message\\UriFactoryInterface' => $vendorDir . '/psr/http-factory/src/UriFactoryInterface.php',
    259     'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php',
    260     'Psr\\Log\\AbstractLogger' => $vendorDir . '/psr/log/Psr/Log/AbstractLogger.php',
    261     'Psr\\Log\\InvalidArgumentException' => $vendorDir . '/psr/log/Psr/Log/InvalidArgumentException.php',
    262     'Psr\\Log\\LogLevel' => $vendorDir . '/psr/log/Psr/Log/LogLevel.php',
    263     'Psr\\Log\\LoggerAwareInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareInterface.php',
    264     'Psr\\Log\\LoggerAwareTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareTrait.php',
    265     'Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php',
    266     'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php',
    267     'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php',
    268     'Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/DummyTest.php',
    269     'Psr\\Log\\Test\\LoggerInterfaceTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
    270     'Psr\\Log\\Test\\TestLogger' => $vendorDir . '/psr/log/Psr/Log/Test/TestLogger.php',
    271     'Psr\\SimpleCache\\CacheException' => $vendorDir . '/psr/simple-cache/src/CacheException.php',
    272     'Psr\\SimpleCache\\CacheInterface' => $vendorDir . '/psr/simple-cache/src/CacheInterface.php',
    273     'Psr\\SimpleCache\\InvalidArgumentException' => $vendorDir . '/psr/simple-cache/src/InvalidArgumentException.php',
    274     'SlimStat\\Services\\Browscap' => $baseDir . '/src/Services/Browscap.php',
    275     'SlimStat\\Services\\GeoIP' => $baseDir . '/src/Services/GeoIP.php',
    276     'SlimStat\\Services\\GeoService' => $baseDir . '/src/Services/GeoService.php',
    277     'SlimStat\\Utils\\InvalidDatabaseException' => $baseDir . '/src/Utils/InvalidDatabaseException.php',
    278     'SlimStat\\Utils\\MaxMindDecoder' => $baseDir . '/src/Utils/MaxMindDecoder.php',
    279     'SlimStat\\Utils\\MaxMindMetadata' => $baseDir . '/src/Utils/MaxMindMetadata.php',
    280     'SlimStat\\Utils\\MaxMindReader' => $baseDir . '/src/Utils/MaxMindReader.php',
    281     'SlimStat\\Utils\\MaxMindUtil' => $baseDir . '/src/Utils/MaxMindUtil.php',
    282     'SlimStat\\Utils\\UADetector' => $baseDir . '/src/Utils/UADetector.php',
    283     'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
    284     'Symfony\\Component\\Console\\Application' => $vendorDir . '/symfony/console/Application.php',
    285     'Symfony\\Component\\Console\\Attribute\\AsCommand' => $vendorDir . '/symfony/console/Attribute/AsCommand.php',
    286     'Symfony\\Component\\Console\\CI\\GithubActionReporter' => $vendorDir . '/symfony/console/CI/GithubActionReporter.php',
    287     'Symfony\\Component\\Console\\Color' => $vendorDir . '/symfony/console/Color.php',
    288     'Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface' => $vendorDir . '/symfony/console/CommandLoader/CommandLoaderInterface.php',
    289     'Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader' => $vendorDir . '/symfony/console/CommandLoader/ContainerCommandLoader.php',
    290     'Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader' => $vendorDir . '/symfony/console/CommandLoader/FactoryCommandLoader.php',
    291     'Symfony\\Component\\Console\\Command\\Command' => $vendorDir . '/symfony/console/Command/Command.php',
    292     'Symfony\\Component\\Console\\Command\\CompleteCommand' => $vendorDir . '/symfony/console/Command/CompleteCommand.php',
    293     'Symfony\\Component\\Console\\Command\\DumpCompletionCommand' => $vendorDir . '/symfony/console/Command/DumpCompletionCommand.php',
    294     'Symfony\\Component\\Console\\Command\\HelpCommand' => $vendorDir . '/symfony/console/Command/HelpCommand.php',
    295     'Symfony\\Component\\Console\\Command\\LazyCommand' => $vendorDir . '/symfony/console/Command/LazyCommand.php',
    296     'Symfony\\Component\\Console\\Command\\ListCommand' => $vendorDir . '/symfony/console/Command/ListCommand.php',
    297     'Symfony\\Component\\Console\\Command\\LockableTrait' => $vendorDir . '/symfony/console/Command/LockableTrait.php',
    298     'Symfony\\Component\\Console\\Command\\SignalableCommandInterface' => $vendorDir . '/symfony/console/Command/SignalableCommandInterface.php',
    299     'Symfony\\Component\\Console\\Completion\\CompletionInput' => $vendorDir . '/symfony/console/Completion/CompletionInput.php',
    300     'Symfony\\Component\\Console\\Completion\\CompletionSuggestions' => $vendorDir . '/symfony/console/Completion/CompletionSuggestions.php',
    301     'Symfony\\Component\\Console\\Completion\\Output\\BashCompletionOutput' => $vendorDir . '/symfony/console/Completion/Output/BashCompletionOutput.php',
    302     'Symfony\\Component\\Console\\Completion\\Output\\CompletionOutputInterface' => $vendorDir . '/symfony/console/Completion/Output/CompletionOutputInterface.php',
    303     'Symfony\\Component\\Console\\Completion\\Suggestion' => $vendorDir . '/symfony/console/Completion/Suggestion.php',
    304     'Symfony\\Component\\Console\\ConsoleEvents' => $vendorDir . '/symfony/console/ConsoleEvents.php',
    305     'Symfony\\Component\\Console\\Cursor' => $vendorDir . '/symfony/console/Cursor.php',
    306     'Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass' => $vendorDir . '/symfony/console/DependencyInjection/AddConsoleCommandPass.php',
    307     'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => $vendorDir . '/symfony/console/Descriptor/ApplicationDescription.php',
    308     'Symfony\\Component\\Console\\Descriptor\\Descriptor' => $vendorDir . '/symfony/console/Descriptor/Descriptor.php',
    309     'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => $vendorDir . '/symfony/console/Descriptor/DescriptorInterface.php',
    310     'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => $vendorDir . '/symfony/console/Descriptor/JsonDescriptor.php',
    311     'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => $vendorDir . '/symfony/console/Descriptor/MarkdownDescriptor.php',
    312     'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => $vendorDir . '/symfony/console/Descriptor/TextDescriptor.php',
    313     'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => $vendorDir . '/symfony/console/Descriptor/XmlDescriptor.php',
    314     'Symfony\\Component\\Console\\EventListener\\ErrorListener' => $vendorDir . '/symfony/console/EventListener/ErrorListener.php',
    315     'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => $vendorDir . '/symfony/console/Event/ConsoleCommandEvent.php',
    316     'Symfony\\Component\\Console\\Event\\ConsoleErrorEvent' => $vendorDir . '/symfony/console/Event/ConsoleErrorEvent.php',
    317     'Symfony\\Component\\Console\\Event\\ConsoleEvent' => $vendorDir . '/symfony/console/Event/ConsoleEvent.php',
    318     'Symfony\\Component\\Console\\Event\\ConsoleSignalEvent' => $vendorDir . '/symfony/console/Event/ConsoleSignalEvent.php',
    319     'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => $vendorDir . '/symfony/console/Event/ConsoleTerminateEvent.php',
    320     'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => $vendorDir . '/symfony/console/Exception/CommandNotFoundException.php',
    321     'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/console/Exception/ExceptionInterface.php',
    322     'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/console/Exception/InvalidArgumentException.php',
    323     'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => $vendorDir . '/symfony/console/Exception/InvalidOptionException.php',
    324     'Symfony\\Component\\Console\\Exception\\LogicException' => $vendorDir . '/symfony/console/Exception/LogicException.php',
    325     'Symfony\\Component\\Console\\Exception\\MissingInputException' => $vendorDir . '/symfony/console/Exception/MissingInputException.php',
    326     'Symfony\\Component\\Console\\Exception\\NamespaceNotFoundException' => $vendorDir . '/symfony/console/Exception/NamespaceNotFoundException.php',
    327     'Symfony\\Component\\Console\\Exception\\RuntimeException' => $vendorDir . '/symfony/console/Exception/RuntimeException.php',
    328     'Symfony\\Component\\Console\\Formatter\\NullOutputFormatter' => $vendorDir . '/symfony/console/Formatter/NullOutputFormatter.php',
    329     'Symfony\\Component\\Console\\Formatter\\NullOutputFormatterStyle' => $vendorDir . '/symfony/console/Formatter/NullOutputFormatterStyle.php',
    330     'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => $vendorDir . '/symfony/console/Formatter/OutputFormatter.php',
    331     'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterInterface.php',
    332     'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyle.php',
    333     'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleInterface.php',
    334     'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleStack.php',
    335     'Symfony\\Component\\Console\\Formatter\\WrappableOutputFormatterInterface' => $vendorDir . '/symfony/console/Formatter/WrappableOutputFormatterInterface.php',
    336     'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => $vendorDir . '/symfony/console/Helper/DebugFormatterHelper.php',
    337     'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => $vendorDir . '/symfony/console/Helper/DescriptorHelper.php',
    338     'Symfony\\Component\\Console\\Helper\\Dumper' => $vendorDir . '/symfony/console/Helper/Dumper.php',
    339     'Symfony\\Component\\Console\\Helper\\FormatterHelper' => $vendorDir . '/symfony/console/Helper/FormatterHelper.php',
    340     'Symfony\\Component\\Console\\Helper\\Helper' => $vendorDir . '/symfony/console/Helper/Helper.php',
    341     'Symfony\\Component\\Console\\Helper\\HelperInterface' => $vendorDir . '/symfony/console/Helper/HelperInterface.php',
    342     'Symfony\\Component\\Console\\Helper\\HelperSet' => $vendorDir . '/symfony/console/Helper/HelperSet.php',
    343     'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => $vendorDir . '/symfony/console/Helper/InputAwareHelper.php',
    344     'Symfony\\Component\\Console\\Helper\\ProcessHelper' => $vendorDir . '/symfony/console/Helper/ProcessHelper.php',
    345     'Symfony\\Component\\Console\\Helper\\ProgressBar' => $vendorDir . '/symfony/console/Helper/ProgressBar.php',
    346     'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => $vendorDir . '/symfony/console/Helper/ProgressIndicator.php',
    347     'Symfony\\Component\\Console\\Helper\\QuestionHelper' => $vendorDir . '/symfony/console/Helper/QuestionHelper.php',
    348     'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => $vendorDir . '/symfony/console/Helper/SymfonyQuestionHelper.php',
    349     'Symfony\\Component\\Console\\Helper\\Table' => $vendorDir . '/symfony/console/Helper/Table.php',
    350     'Symfony\\Component\\Console\\Helper\\TableCell' => $vendorDir . '/symfony/console/Helper/TableCell.php',
    351     'Symfony\\Component\\Console\\Helper\\TableCellStyle' => $vendorDir . '/symfony/console/Helper/TableCellStyle.php',
    352     'Symfony\\Component\\Console\\Helper\\TableRows' => $vendorDir . '/symfony/console/Helper/TableRows.php',
    353     'Symfony\\Component\\Console\\Helper\\TableSeparator' => $vendorDir . '/symfony/console/Helper/TableSeparator.php',
    354     'Symfony\\Component\\Console\\Helper\\TableStyle' => $vendorDir . '/symfony/console/Helper/TableStyle.php',
    355     'Symfony\\Component\\Console\\Input\\ArgvInput' => $vendorDir . '/symfony/console/Input/ArgvInput.php',
    356     'Symfony\\Component\\Console\\Input\\ArrayInput' => $vendorDir . '/symfony/console/Input/ArrayInput.php',
    357     'Symfony\\Component\\Console\\Input\\Input' => $vendorDir . '/symfony/console/Input/Input.php',
    358     'Symfony\\Component\\Console\\Input\\InputArgument' => $vendorDir . '/symfony/console/Input/InputArgument.php',
    359     'Symfony\\Component\\Console\\Input\\InputAwareInterface' => $vendorDir . '/symfony/console/Input/InputAwareInterface.php',
    360     'Symfony\\Component\\Console\\Input\\InputDefinition' => $vendorDir . '/symfony/console/Input/InputDefinition.php',
    361     'Symfony\\Component\\Console\\Input\\InputInterface' => $vendorDir . '/symfony/console/Input/InputInterface.php',
    362     'Symfony\\Component\\Console\\Input\\InputOption' => $vendorDir . '/symfony/console/Input/InputOption.php',
    363     'Symfony\\Component\\Console\\Input\\StreamableInputInterface' => $vendorDir . '/symfony/console/Input/StreamableInputInterface.php',
    364     'Symfony\\Component\\Console\\Input\\StringInput' => $vendorDir . '/symfony/console/Input/StringInput.php',
    365     'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => $vendorDir . '/symfony/console/Logger/ConsoleLogger.php',
    366     'Symfony\\Component\\Console\\Output\\BufferedOutput' => $vendorDir . '/symfony/console/Output/BufferedOutput.php',
    367     'Symfony\\Component\\Console\\Output\\ConsoleOutput' => $vendorDir . '/symfony/console/Output/ConsoleOutput.php',
    368     'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => $vendorDir . '/symfony/console/Output/ConsoleOutputInterface.php',
    369     'Symfony\\Component\\Console\\Output\\ConsoleSectionOutput' => $vendorDir . '/symfony/console/Output/ConsoleSectionOutput.php',
    370     'Symfony\\Component\\Console\\Output\\NullOutput' => $vendorDir . '/symfony/console/Output/NullOutput.php',
    371     'Symfony\\Component\\Console\\Output\\Output' => $vendorDir . '/symfony/console/Output/Output.php',
    372     'Symfony\\Component\\Console\\Output\\OutputInterface' => $vendorDir . '/symfony/console/Output/OutputInterface.php',
    373     'Symfony\\Component\\Console\\Output\\StreamOutput' => $vendorDir . '/symfony/console/Output/StreamOutput.php',
    374     'Symfony\\Component\\Console\\Output\\TrimmedBufferOutput' => $vendorDir . '/symfony/console/Output/TrimmedBufferOutput.php',
    375     'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => $vendorDir . '/symfony/console/Question/ChoiceQuestion.php',
    376     'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => $vendorDir . '/symfony/console/Question/ConfirmationQuestion.php',
    377     'Symfony\\Component\\Console\\Question\\Question' => $vendorDir . '/symfony/console/Question/Question.php',
    378     'Symfony\\Component\\Console\\SignalRegistry\\SignalRegistry' => $vendorDir . '/symfony/console/SignalRegistry/SignalRegistry.php',
    379     'Symfony\\Component\\Console\\SingleCommandApplication' => $vendorDir . '/symfony/console/SingleCommandApplication.php',
    380     'Symfony\\Component\\Console\\Style\\OutputStyle' => $vendorDir . '/symfony/console/Style/OutputStyle.php',
    381     'Symfony\\Component\\Console\\Style\\StyleInterface' => $vendorDir . '/symfony/console/Style/StyleInterface.php',
    382     'Symfony\\Component\\Console\\Style\\SymfonyStyle' => $vendorDir . '/symfony/console/Style/SymfonyStyle.php',
    383     'Symfony\\Component\\Console\\Terminal' => $vendorDir . '/symfony/console/Terminal.php',
    384     'Symfony\\Component\\Console\\Tester\\ApplicationTester' => $vendorDir . '/symfony/console/Tester/ApplicationTester.php',
    385     'Symfony\\Component\\Console\\Tester\\CommandCompletionTester' => $vendorDir . '/symfony/console/Tester/CommandCompletionTester.php',
    386     'Symfony\\Component\\Console\\Tester\\CommandTester' => $vendorDir . '/symfony/console/Tester/CommandTester.php',
    387     'Symfony\\Component\\Console\\Tester\\Constraint\\CommandIsSuccessful' => $vendorDir . '/symfony/console/Tester/Constraint/CommandIsSuccessful.php',
    388     'Symfony\\Component\\Console\\Tester\\TesterTrait' => $vendorDir . '/symfony/console/Tester/TesterTrait.php',
    389     'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/ExceptionInterface.php',
    390     'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => $vendorDir . '/symfony/filesystem/Exception/FileNotFoundException.php',
    391     'Symfony\\Component\\Filesystem\\Exception\\IOException' => $vendorDir . '/symfony/filesystem/Exception/IOException.php',
    392     'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/IOExceptionInterface.php',
    393     'Symfony\\Component\\Filesystem\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/filesystem/Exception/InvalidArgumentException.php',
    394     'Symfony\\Component\\Filesystem\\Exception\\RuntimeException' => $vendorDir . '/symfony/filesystem/Exception/RuntimeException.php',
    395     'Symfony\\Component\\Filesystem\\Filesystem' => $vendorDir . '/symfony/filesystem/Filesystem.php',
    396     'Symfony\\Component\\Filesystem\\Path' => $vendorDir . '/symfony/filesystem/Path.php',
    397     'Symfony\\Component\\String\\AbstractString' => $vendorDir . '/symfony/string/AbstractString.php',
    398     'Symfony\\Component\\String\\AbstractUnicodeString' => $vendorDir . '/symfony/string/AbstractUnicodeString.php',
    399     'Symfony\\Component\\String\\ByteString' => $vendorDir . '/symfony/string/ByteString.php',
    400     'Symfony\\Component\\String\\CodePointString' => $vendorDir . '/symfony/string/CodePointString.php',
    401     'Symfony\\Component\\String\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/string/Exception/ExceptionInterface.php',
    402     'Symfony\\Component\\String\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/string/Exception/InvalidArgumentException.php',
    403     'Symfony\\Component\\String\\Exception\\RuntimeException' => $vendorDir . '/symfony/string/Exception/RuntimeException.php',
    404     'Symfony\\Component\\String\\Inflector\\EnglishInflector' => $vendorDir . '/symfony/string/Inflector/EnglishInflector.php',
    405     'Symfony\\Component\\String\\Inflector\\FrenchInflector' => $vendorDir . '/symfony/string/Inflector/FrenchInflector.php',
    406     'Symfony\\Component\\String\\Inflector\\InflectorInterface' => $vendorDir . '/symfony/string/Inflector/InflectorInterface.php',
    407     'Symfony\\Component\\String\\LazyString' => $vendorDir . '/symfony/string/LazyString.php',
    408     'Symfony\\Component\\String\\Slugger\\AsciiSlugger' => $vendorDir . '/symfony/string/Slugger/AsciiSlugger.php',
    409     'Symfony\\Component\\String\\Slugger\\SluggerInterface' => $vendorDir . '/symfony/string/Slugger/SluggerInterface.php',
    410     'Symfony\\Component\\String\\UnicodeString' => $vendorDir . '/symfony/string/UnicodeString.php',
    411     'Symfony\\Contracts\\Service\\Attribute\\Required' => $vendorDir . '/symfony/service-contracts/Attribute/Required.php',
    412     'Symfony\\Contracts\\Service\\Attribute\\SubscribedService' => $vendorDir . '/symfony/service-contracts/Attribute/SubscribedService.php',
    413     'Symfony\\Contracts\\Service\\ResetInterface' => $vendorDir . '/symfony/service-contracts/ResetInterface.php',
    414     'Symfony\\Contracts\\Service\\ServiceCollectionInterface' => $vendorDir . '/symfony/service-contracts/ServiceCollectionInterface.php',
    415     'Symfony\\Contracts\\Service\\ServiceLocatorTrait' => $vendorDir . '/symfony/service-contracts/ServiceLocatorTrait.php',
    416     'Symfony\\Contracts\\Service\\ServiceMethodsSubscriberTrait' => $vendorDir . '/symfony/service-contracts/ServiceMethodsSubscriberTrait.php',
    417     'Symfony\\Contracts\\Service\\ServiceProviderInterface' => $vendorDir . '/symfony/service-contracts/ServiceProviderInterface.php',
    418     'Symfony\\Contracts\\Service\\ServiceSubscriberInterface' => $vendorDir . '/symfony/service-contracts/ServiceSubscriberInterface.php',
    419     'Symfony\\Contracts\\Service\\ServiceSubscriberTrait' => $vendorDir . '/symfony/service-contracts/ServiceSubscriberTrait.php',
    420     'Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php',
    421     'Symfony\\Polyfill\\Intl\\Grapheme\\Grapheme' => $vendorDir . '/symfony/polyfill-intl-grapheme/Grapheme.php',
    422     'Symfony\\Polyfill\\Intl\\Normalizer\\Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Normalizer.php',
    423     'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php',
    424     'Symfony\\Polyfill\\Php73\\Php73' => $vendorDir . '/symfony/polyfill-php73/Php73.php',
    425     'Symfony\\Polyfill\\Php80\\Php80' => $vendorDir . '/symfony/polyfill-php80/Php80.php',
    426     'Symfony\\Polyfill\\Php80\\PhpToken' => $vendorDir . '/symfony/polyfill-php80/PhpToken.php',
    427     'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
    428     'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
    42910);
  • wp-slimstat/tags/5.2.5/vendor/composer/autoload_files.php

    r3099788 r3131121  
    77
    88return array(
     9    '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
    910    '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
    10     '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
    11     '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
    12     'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
    13     '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
    14     '8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
    15     'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
    16     '0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
    17     'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php',
    18     '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
    1911);
  • wp-slimstat/tags/5.2.5/vendor/composer/autoload_psr4.php

    r3108230 r3131121  
    77
    88return array(
    9     'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'),
    10     'Symfony\\Polyfill\\Php73\\' => array($vendorDir . '/symfony/polyfill-php73'),
    11     'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
    12     'Symfony\\Polyfill\\Intl\\Normalizer\\' => array($vendorDir . '/symfony/polyfill-intl-normalizer'),
    13     'Symfony\\Polyfill\\Intl\\Grapheme\\' => array($vendorDir . '/symfony/polyfill-intl-grapheme'),
    14     'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
    15     'Symfony\\Contracts\\Service\\' => array($vendorDir . '/symfony/service-contracts'),
    16     'Symfony\\Component\\String\\' => array($vendorDir . '/symfony/string'),
    17     'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'),
    18     'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
    199    'SlimStat\\' => array($baseDir . '/src'),
    20     'Psr\\SimpleCache\\' => array($vendorDir . '/psr/simple-cache/src'),
    21     'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
    22     'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-factory/src', $vendorDir . '/psr/http-message/src'),
    23     'Psr\\Http\\Client\\' => array($vendorDir . '/psr/http-client/src'),
    24     'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
    25     'Psr\\Cache\\' => array($vendorDir . '/psr/cache/src'),
    26     'MatthiasMullie\\Scrapbook\\' => array($vendorDir . '/matthiasmullie/scrapbook/src'),
    27     'League\\MimeTypeDetection\\' => array($vendorDir . '/league/mime-type-detection/src'),
    28     'League\\Flysystem\\' => array($vendorDir . '/league/flysystem/src'),
    29     'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
    30     'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'),
    31     'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'),
    32     'BrowscapPHP\\' => array($vendorDir . '/veronalabs/browscap-php/src'),
    3310);
  • wp-slimstat/tags/5.2.5/vendor/composer/autoload_real.php

    r3108230 r3131121  
    3030        call_user_func(\Composer\Autoload\ComposerStaticInit09c8e0e0cfea3b2fb368cb99a2eeaaec::getInitializer($loader));
    3131
    32         $loader->setClassMapAuthoritative(true);
    3332        $loader->register(true);
    3433
  • wp-slimstat/tags/5.2.5/vendor/composer/autoload_static.php

    r3108230 r3131121  
    88{
    99    public static $files = array (
     10        '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
    1011        '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
    11         '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
    12         '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
    13         'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
    14         '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
    15         '8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
    16         'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
    17         '0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
    18         'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
    19         '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
    2012    );
    2113
     
    2315        'S' =>
    2416        array (
    25             'Symfony\\Polyfill\\Php80\\' => 23,
    26             'Symfony\\Polyfill\\Php73\\' => 23,
    27             'Symfony\\Polyfill\\Mbstring\\' => 26,
    28             'Symfony\\Polyfill\\Intl\\Normalizer\\' => 33,
    29             'Symfony\\Polyfill\\Intl\\Grapheme\\' => 31,
    30             'Symfony\\Polyfill\\Ctype\\' => 23,
    31             'Symfony\\Contracts\\Service\\' => 26,
    32             'Symfony\\Component\\String\\' => 25,
    33             'Symfony\\Component\\Filesystem\\' => 29,
    34             'Symfony\\Component\\Console\\' => 26,
    3517            'SlimStat\\' => 9,
    36         ),
    37         'P' =>
    38         array (
    39             'Psr\\SimpleCache\\' => 16,
    40             'Psr\\Log\\' => 8,
    41             'Psr\\Http\\Message\\' => 17,
    42             'Psr\\Http\\Client\\' => 16,
    43             'Psr\\Container\\' => 14,
    44             'Psr\\Cache\\' => 10,
    45         ),
    46         'M' =>
    47         array (
    48             'MatthiasMullie\\Scrapbook\\' => 25,
    49         ),
    50         'L' =>
    51         array (
    52             'League\\MimeTypeDetection\\' => 25,
    53             'League\\Flysystem\\' => 17,
    54         ),
    55         'G' =>
    56         array (
    57             'GuzzleHttp\\Psr7\\' => 16,
    58             'GuzzleHttp\\Promise\\' => 19,
    59             'GuzzleHttp\\' => 11,
    60         ),
    61         'B' =>
    62         array (
    63             'BrowscapPHP\\' => 12,
    6418        ),
    6519    );
    6620
    6721    public static $prefixDirsPsr4 = array (
    68         'Symfony\\Polyfill\\Php80\\' =>
    69         array (
    70             0 => __DIR__ . '/..' . '/symfony/polyfill-php80',
    71         ),
    72         'Symfony\\Polyfill\\Php73\\' =>
    73         array (
    74             0 => __DIR__ . '/..' . '/symfony/polyfill-php73',
    75         ),
    76         'Symfony\\Polyfill\\Mbstring\\' =>
    77         array (
    78             0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
    79         ),
    80         'Symfony\\Polyfill\\Intl\\Normalizer\\' =>
    81         array (
    82             0 => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer',
    83         ),
    84         'Symfony\\Polyfill\\Intl\\Grapheme\\' =>
    85         array (
    86             0 => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme',
    87         ),
    88         'Symfony\\Polyfill\\Ctype\\' =>
    89         array (
    90             0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
    91         ),
    92         'Symfony\\Contracts\\Service\\' =>
    93         array (
    94             0 => __DIR__ . '/..' . '/symfony/service-contracts',
    95         ),
    96         'Symfony\\Component\\String\\' =>
    97         array (
    98             0 => __DIR__ . '/..' . '/symfony/string',
    99         ),
    100         'Symfony\\Component\\Filesystem\\' =>
    101         array (
    102             0 => __DIR__ . '/..' . '/symfony/filesystem',
    103         ),
    104         'Symfony\\Component\\Console\\' =>
    105         array (
    106             0 => __DIR__ . '/..' . '/symfony/console',
    107         ),
    10822        'SlimStat\\' =>
    10923        array (
    11024            0 => __DIR__ . '/../..' . '/src',
    11125        ),
    112         'Psr\\SimpleCache\\' =>
    113         array (
    114             0 => __DIR__ . '/..' . '/psr/simple-cache/src',
    115         ),
    116         'Psr\\Log\\' =>
    117         array (
    118             0 => __DIR__ . '/..' . '/psr/log/Psr/Log',
    119         ),
    120         'Psr\\Http\\Message\\' =>
    121         array (
    122             0 => __DIR__ . '/..' . '/psr/http-factory/src',
    123             1 => __DIR__ . '/..' . '/psr/http-message/src',
    124         ),
    125         'Psr\\Http\\Client\\' =>
    126         array (
    127             0 => __DIR__ . '/..' . '/psr/http-client/src',
    128         ),
    129         'Psr\\Container\\' =>
    130         array (
    131             0 => __DIR__ . '/..' . '/psr/container/src',
    132         ),
    133         'Psr\\Cache\\' =>
    134         array (
    135             0 => __DIR__ . '/..' . '/psr/cache/src',
    136         ),
    137         'MatthiasMullie\\Scrapbook\\' =>
    138         array (
    139             0 => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src',
    140         ),
    141         'League\\MimeTypeDetection\\' =>
    142         array (
    143             0 => __DIR__ . '/..' . '/league/mime-type-detection/src',
    144         ),
    145         'League\\Flysystem\\' =>
    146         array (
    147             0 => __DIR__ . '/..' . '/league/flysystem/src',
    148         ),
    149         'GuzzleHttp\\Psr7\\' =>
    150         array (
    151             0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src',
    152         ),
    153         'GuzzleHttp\\Promise\\' =>
    154         array (
    155             0 => __DIR__ . '/..' . '/guzzlehttp/promises/src',
    156         ),
    157         'GuzzleHttp\\' =>
    158         array (
    159             0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src',
    160         ),
    161         'BrowscapPHP\\' =>
    162         array (
    163             0 => __DIR__ . '/..' . '/veronalabs/browscap-php/src',
    164         ),
    16526    );
    16627
    16728    public static $classMap = array (
    168         'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
    169         'BrowscapPHP\\Browscap' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Browscap.php',
    170         'BrowscapPHP\\BrowscapInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/BrowscapInterface.php',
    171         'BrowscapPHP\\BrowscapUpdater' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/BrowscapUpdater.php',
    172         'BrowscapPHP\\BrowscapUpdaterInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/BrowscapUpdaterInterface.php',
    173         'BrowscapPHP\\Cache\\BrowscapCache' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Cache/BrowscapCache.php',
    174         'BrowscapPHP\\Cache\\BrowscapCacheInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Cache/BrowscapCacheInterface.php',
    175         'BrowscapPHP\\Command\\CheckUpdateCommand' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Command/CheckUpdateCommand.php',
    176         'BrowscapPHP\\Command\\ConvertCommand' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Command/ConvertCommand.php',
    177         'BrowscapPHP\\Command\\FetchCommand' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Command/FetchCommand.php',
    178         'BrowscapPHP\\Command\\ParserCommand' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Command/ParserCommand.php',
    179         'BrowscapPHP\\Command\\UpdateCommand' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Command/UpdateCommand.php',
    180         'BrowscapPHP\\Data\\PropertyFormatter' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Data/PropertyFormatter.php',
    181         'BrowscapPHP\\Data\\PropertyHolder' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Data/PropertyHolder.php',
    182         'BrowscapPHP\\Exception' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception.php',
    183         'BrowscapPHP\\Exception\\DomainException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/DomainException.php',
    184         'BrowscapPHP\\Exception\\ErrorCachedVersionException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/ErrorCachedVersionException.php',
    185         'BrowscapPHP\\Exception\\ErrorReadingFileException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/ErrorReadingFileException.php',
    186         'BrowscapPHP\\Exception\\FetcherException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/FetcherException.php',
    187         'BrowscapPHP\\Exception\\FileNameMissingException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/FileNameMissingException.php',
    188         'BrowscapPHP\\Exception\\FileNotFoundException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/FileNotFoundException.php',
    189         'BrowscapPHP\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/InvalidArgumentException.php',
    190         'BrowscapPHP\\Exception\\NoCachedVersionException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/NoCachedVersionException.php',
    191         'BrowscapPHP\\Exception\\NoNewVersionException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/NoNewVersionException.php',
    192         'BrowscapPHP\\Formatter\\FormatterInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Formatter/FormatterInterface.php',
    193         'BrowscapPHP\\Formatter\\LegacyFormatter' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Formatter/LegacyFormatter.php',
    194         'BrowscapPHP\\Formatter\\PhpGetBrowser' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Formatter/PhpGetBrowser.php',
    195         'BrowscapPHP\\Helper\\Converter' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/Converter.php',
    196         'BrowscapPHP\\Helper\\ConverterInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/ConverterInterface.php',
    197         'BrowscapPHP\\Helper\\Exception' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/Exception.php',
    198         'BrowscapPHP\\Helper\\Filesystem' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/Filesystem.php',
    199         'BrowscapPHP\\Helper\\IniLoader' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/IniLoader.php',
    200         'BrowscapPHP\\Helper\\IniLoaderInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/IniLoaderInterface.php',
    201         'BrowscapPHP\\Helper\\LoggerHelper' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/LoggerHelper.php',
    202         'BrowscapPHP\\Helper\\Quoter' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/Quoter.php',
    203         'BrowscapPHP\\Helper\\QuoterInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/QuoterInterface.php',
    204         'BrowscapPHP\\Helper\\Support' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/Support.php',
    205         'BrowscapPHP\\Helper\\SupportInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/SupportInterface.php',
    206         'BrowscapPHP\\IniParser\\IniParser' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/IniParser/IniParser.php',
    207         'BrowscapPHP\\IniParser\\ParserInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/IniParser/ParserInterface.php',
    208         'BrowscapPHP\\Parser\\Helper\\GetData' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Helper/GetData.php',
    209         'BrowscapPHP\\Parser\\Helper\\GetDataInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Helper/GetDataInterface.php',
    210         'BrowscapPHP\\Parser\\Helper\\GetPattern' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Helper/GetPattern.php',
    211         'BrowscapPHP\\Parser\\Helper\\GetPatternInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Helper/GetPatternInterface.php',
    212         'BrowscapPHP\\Parser\\Helper\\Pattern' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Helper/Pattern.php',
    213         'BrowscapPHP\\Parser\\Helper\\SubKey' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Helper/SubKey.php',
    214         'BrowscapPHP\\Parser\\Ini' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Ini.php',
    215         'BrowscapPHP\\Parser\\ParserInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/ParserInterface.php',
    21629        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    217         'GuzzleHttp\\BodySummarizer' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/BodySummarizer.php',
    218         'GuzzleHttp\\BodySummarizerInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/BodySummarizerInterface.php',
    219         'GuzzleHttp\\Client' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Client.php',
    220         'GuzzleHttp\\ClientInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientInterface.php',
    221         'GuzzleHttp\\ClientTrait' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientTrait.php',
    222         'GuzzleHttp\\Cookie\\CookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
    223         'GuzzleHttp\\Cookie\\CookieJarInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',
    224         'GuzzleHttp\\Cookie\\FileCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',
    225         'GuzzleHttp\\Cookie\\SessionCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',
    226         'GuzzleHttp\\Cookie\\SetCookie' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php',
    227         'GuzzleHttp\\Exception\\BadResponseException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php',
    228         'GuzzleHttp\\Exception\\ClientException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ClientException.php',
    229         'GuzzleHttp\\Exception\\ConnectException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ConnectException.php',
    230         'GuzzleHttp\\Exception\\GuzzleException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php',
    231         'GuzzleHttp\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',
    232         'GuzzleHttp\\Exception\\RequestException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/RequestException.php',
    233         'GuzzleHttp\\Exception\\ServerException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ServerException.php',
    234         'GuzzleHttp\\Exception\\TooManyRedirectsException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',
    235         'GuzzleHttp\\Exception\\TransferException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TransferException.php',
    236         'GuzzleHttp\\HandlerStack' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/HandlerStack.php',
    237         'GuzzleHttp\\Handler\\CurlFactory' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php',
    238         'GuzzleHttp\\Handler\\CurlFactoryInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',
    239         'GuzzleHttp\\Handler\\CurlHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php',
    240         'GuzzleHttp\\Handler\\CurlMultiHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',
    241         'GuzzleHttp\\Handler\\EasyHandle' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php',
    242         'GuzzleHttp\\Handler\\HeaderProcessor' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php',
    243         'GuzzleHttp\\Handler\\MockHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/MockHandler.php',
    244         'GuzzleHttp\\Handler\\Proxy' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/Proxy.php',
    245         'GuzzleHttp\\Handler\\StreamHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php',
    246         'GuzzleHttp\\MessageFormatter' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/MessageFormatter.php',
    247         'GuzzleHttp\\MessageFormatterInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/MessageFormatterInterface.php',
    248         'GuzzleHttp\\Middleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Middleware.php',
    249         'GuzzleHttp\\Pool' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Pool.php',
    250         'GuzzleHttp\\PrepareBodyMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',
    251         'GuzzleHttp\\Promise\\AggregateException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/AggregateException.php',
    252         'GuzzleHttp\\Promise\\CancellationException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/CancellationException.php',
    253         'GuzzleHttp\\Promise\\Coroutine' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Coroutine.php',
    254         'GuzzleHttp\\Promise\\Create' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Create.php',
    255         'GuzzleHttp\\Promise\\Each' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Each.php',
    256         'GuzzleHttp\\Promise\\EachPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/EachPromise.php',
    257         'GuzzleHttp\\Promise\\FulfilledPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/FulfilledPromise.php',
    258         'GuzzleHttp\\Promise\\Is' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Is.php',
    259         'GuzzleHttp\\Promise\\Promise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Promise.php',
    260         'GuzzleHttp\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromiseInterface.php',
    261         'GuzzleHttp\\Promise\\PromisorInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromisorInterface.php',
    262         'GuzzleHttp\\Promise\\RejectedPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectedPromise.php',
    263         'GuzzleHttp\\Promise\\RejectionException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectionException.php',
    264         'GuzzleHttp\\Promise\\TaskQueue' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueue.php',
    265         'GuzzleHttp\\Promise\\TaskQueueInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueueInterface.php',
    266         'GuzzleHttp\\Promise\\Utils' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Utils.php',
    267         'GuzzleHttp\\Psr7\\AppendStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/AppendStream.php',
    268         'GuzzleHttp\\Psr7\\BufferStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/BufferStream.php',
    269         'GuzzleHttp\\Psr7\\CachingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/CachingStream.php',
    270         'GuzzleHttp\\Psr7\\DroppingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/DroppingStream.php',
    271         'GuzzleHttp\\Psr7\\Exception\\MalformedUriException' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Exception/MalformedUriException.php',
    272         'GuzzleHttp\\Psr7\\FnStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/FnStream.php',
    273         'GuzzleHttp\\Psr7\\Header' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Header.php',
    274         'GuzzleHttp\\Psr7\\HttpFactory' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/HttpFactory.php',
    275         'GuzzleHttp\\Psr7\\InflateStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/InflateStream.php',
    276         'GuzzleHttp\\Psr7\\LazyOpenStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LazyOpenStream.php',
    277         'GuzzleHttp\\Psr7\\LimitStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LimitStream.php',
    278         'GuzzleHttp\\Psr7\\Message' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Message.php',
    279         'GuzzleHttp\\Psr7\\MessageTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MessageTrait.php',
    280         'GuzzleHttp\\Psr7\\MimeType' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MimeType.php',
    281         'GuzzleHttp\\Psr7\\MultipartStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MultipartStream.php',
    282         'GuzzleHttp\\Psr7\\NoSeekStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/NoSeekStream.php',
    283         'GuzzleHttp\\Psr7\\PumpStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/PumpStream.php',
    284         'GuzzleHttp\\Psr7\\Query' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Query.php',
    285         'GuzzleHttp\\Psr7\\Request' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Request.php',
    286         'GuzzleHttp\\Psr7\\Response' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Response.php',
    287         'GuzzleHttp\\Psr7\\Rfc7230' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Rfc7230.php',
    288         'GuzzleHttp\\Psr7\\ServerRequest' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/ServerRequest.php',
    289         'GuzzleHttp\\Psr7\\Stream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Stream.php',
    290         'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
    291         'GuzzleHttp\\Psr7\\StreamWrapper' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamWrapper.php',
    292         'GuzzleHttp\\Psr7\\UploadedFile' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UploadedFile.php',
    293         'GuzzleHttp\\Psr7\\Uri' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Uri.php',
    294         'GuzzleHttp\\Psr7\\UriComparator' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriComparator.php',
    295         'GuzzleHttp\\Psr7\\UriNormalizer' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriNormalizer.php',
    296         'GuzzleHttp\\Psr7\\UriResolver' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriResolver.php',
    297         'GuzzleHttp\\Psr7\\Utils' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Utils.php',
    298         'GuzzleHttp\\RedirectMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
    299         'GuzzleHttp\\RequestOptions' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RequestOptions.php',
    300         'GuzzleHttp\\RetryMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
    301         'GuzzleHttp\\TransferStats' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/TransferStats.php',
    302         'GuzzleHttp\\Utils' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Utils.php',
    303         'JsonException' => __DIR__ . '/..' . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
    304         'League\\Flysystem\\Config' => __DIR__ . '/..' . '/league/flysystem/src/Config.php',
    305         'League\\Flysystem\\CorruptedPathDetected' => __DIR__ . '/..' . '/league/flysystem/src/CorruptedPathDetected.php',
    306         'League\\Flysystem\\DirectoryAttributes' => __DIR__ . '/..' . '/league/flysystem/src/DirectoryAttributes.php',
    307         'League\\Flysystem\\DirectoryListing' => __DIR__ . '/..' . '/league/flysystem/src/DirectoryListing.php',
    308         'League\\Flysystem\\FileAttributes' => __DIR__ . '/..' . '/league/flysystem/src/FileAttributes.php',
    309         'League\\Flysystem\\Filesystem' => __DIR__ . '/..' . '/league/flysystem/src/Filesystem.php',
    310         'League\\Flysystem\\FilesystemAdapter' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemAdapter.php',
    311         'League\\Flysystem\\FilesystemException' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemException.php',
    312         'League\\Flysystem\\FilesystemOperationFailed' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemOperationFailed.php',
    313         'League\\Flysystem\\FilesystemOperator' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemOperator.php',
    314         'League\\Flysystem\\FilesystemReader' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemReader.php',
    315         'League\\Flysystem\\FilesystemWriter' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemWriter.php',
    316         'League\\Flysystem\\InvalidStreamProvided' => __DIR__ . '/..' . '/league/flysystem/src/InvalidStreamProvided.php',
    317         'League\\Flysystem\\InvalidVisibilityProvided' => __DIR__ . '/..' . '/league/flysystem/src/InvalidVisibilityProvided.php',
    318         'League\\Flysystem\\Local\\LocalFilesystemAdapter' => __DIR__ . '/..' . '/league/flysystem/src/Local/LocalFilesystemAdapter.php',
    319         'League\\Flysystem\\MountManager' => __DIR__ . '/..' . '/league/flysystem/src/MountManager.php',
    320         'League\\Flysystem\\PathNormalizer' => __DIR__ . '/..' . '/league/flysystem/src/PathNormalizer.php',
    321         'League\\Flysystem\\PathPrefixer' => __DIR__ . '/..' . '/league/flysystem/src/PathPrefixer.php',
    322         'League\\Flysystem\\PathTraversalDetected' => __DIR__ . '/..' . '/league/flysystem/src/PathTraversalDetected.php',
    323         'League\\Flysystem\\PortableVisibilityGuard' => __DIR__ . '/..' . '/league/flysystem/src/PortableVisibilityGuard.php',
    324         'League\\Flysystem\\ProxyArrayAccessToProperties' => __DIR__ . '/..' . '/league/flysystem/src/ProxyArrayAccessToProperties.php',
    325         'League\\Flysystem\\StorageAttributes' => __DIR__ . '/..' . '/league/flysystem/src/StorageAttributes.php',
    326         'League\\Flysystem\\SymbolicLinkEncountered' => __DIR__ . '/..' . '/league/flysystem/src/SymbolicLinkEncountered.php',
    327         'League\\Flysystem\\UnableToCheckFileExistence' => __DIR__ . '/..' . '/league/flysystem/src/UnableToCheckFileExistence.php',
    328         'League\\Flysystem\\UnableToCopyFile' => __DIR__ . '/..' . '/league/flysystem/src/UnableToCopyFile.php',
    329         'League\\Flysystem\\UnableToCreateDirectory' => __DIR__ . '/..' . '/league/flysystem/src/UnableToCreateDirectory.php',
    330         'League\\Flysystem\\UnableToDeleteDirectory' => __DIR__ . '/..' . '/league/flysystem/src/UnableToDeleteDirectory.php',
    331         'League\\Flysystem\\UnableToDeleteFile' => __DIR__ . '/..' . '/league/flysystem/src/UnableToDeleteFile.php',
    332         'League\\Flysystem\\UnableToMountFilesystem' => __DIR__ . '/..' . '/league/flysystem/src/UnableToMountFilesystem.php',
    333         'League\\Flysystem\\UnableToMoveFile' => __DIR__ . '/..' . '/league/flysystem/src/UnableToMoveFile.php',
    334         'League\\Flysystem\\UnableToReadFile' => __DIR__ . '/..' . '/league/flysystem/src/UnableToReadFile.php',
    335         'League\\Flysystem\\UnableToResolveFilesystemMount' => __DIR__ . '/..' . '/league/flysystem/src/UnableToResolveFilesystemMount.php',
    336         'League\\Flysystem\\UnableToRetrieveMetadata' => __DIR__ . '/..' . '/league/flysystem/src/UnableToRetrieveMetadata.php',
    337         'League\\Flysystem\\UnableToSetVisibility' => __DIR__ . '/..' . '/league/flysystem/src/UnableToSetVisibility.php',
    338         'League\\Flysystem\\UnableToWriteFile' => __DIR__ . '/..' . '/league/flysystem/src/UnableToWriteFile.php',
    339         'League\\Flysystem\\UnixVisibility\\PortableVisibilityConverter' => __DIR__ . '/..' . '/league/flysystem/src/UnixVisibility/PortableVisibilityConverter.php',
    340         'League\\Flysystem\\UnixVisibility\\VisibilityConverter' => __DIR__ . '/..' . '/league/flysystem/src/UnixVisibility/VisibilityConverter.php',
    341         'League\\Flysystem\\UnreadableFileEncountered' => __DIR__ . '/..' . '/league/flysystem/src/UnreadableFileEncountered.php',
    342         'League\\Flysystem\\Visibility' => __DIR__ . '/..' . '/league/flysystem/src/Visibility.php',
    343         'League\\Flysystem\\WhitespacePathNormalizer' => __DIR__ . '/..' . '/league/flysystem/src/WhitespacePathNormalizer.php',
    344         'League\\MimeTypeDetection\\EmptyExtensionToMimeTypeMap' => __DIR__ . '/..' . '/league/mime-type-detection/src/EmptyExtensionToMimeTypeMap.php',
    345         'League\\MimeTypeDetection\\ExtensionLookup' => __DIR__ . '/..' . '/league/mime-type-detection/src/ExtensionLookup.php',
    346         'League\\MimeTypeDetection\\ExtensionMimeTypeDetector' => __DIR__ . '/..' . '/league/mime-type-detection/src/ExtensionMimeTypeDetector.php',
    347         'League\\MimeTypeDetection\\ExtensionToMimeTypeMap' => __DIR__ . '/..' . '/league/mime-type-detection/src/ExtensionToMimeTypeMap.php',
    348         'League\\MimeTypeDetection\\FinfoMimeTypeDetector' => __DIR__ . '/..' . '/league/mime-type-detection/src/FinfoMimeTypeDetector.php',
    349         'League\\MimeTypeDetection\\GeneratedExtensionToMimeTypeMap' => __DIR__ . '/..' . '/league/mime-type-detection/src/GeneratedExtensionToMimeTypeMap.php',
    350         'League\\MimeTypeDetection\\MimeTypeDetector' => __DIR__ . '/..' . '/league/mime-type-detection/src/MimeTypeDetector.php',
    351         'League\\MimeTypeDetection\\OverridingExtensionToMimeTypeMap' => __DIR__ . '/..' . '/league/mime-type-detection/src/OverridingExtensionToMimeTypeMap.php',
    352         'MatthiasMullie\\Scrapbook\\Adapters\\Apc' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Apc.php',
    353         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Apc' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Apc.php',
    354         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Couchbase' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Couchbase.php',
    355         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Flysystem' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Flysystem.php',
    356         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Memcached' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Memcached.php',
    357         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\MemoryStore' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/MemoryStore.php',
    358         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Redis' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Redis.php',
    359         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\SQL' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/SQL.php',
    360         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Utils\\PrefixKeys' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Utils/PrefixKeys.php',
    361         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Utils\\PrefixReset' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Utils/PrefixReset.php',
    362         'MatthiasMullie\\Scrapbook\\Adapters\\Couchbase' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Couchbase.php',
    363         'MatthiasMullie\\Scrapbook\\Adapters\\Flysystem' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Flysystem.php',
    364         'MatthiasMullie\\Scrapbook\\Adapters\\Memcached' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Memcached.php',
    365         'MatthiasMullie\\Scrapbook\\Adapters\\MemoryStore' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/MemoryStore.php',
    366         'MatthiasMullie\\Scrapbook\\Adapters\\MySQL' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/MySQL.php',
    367         'MatthiasMullie\\Scrapbook\\Adapters\\PostgreSQL' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/PostgreSQL.php',
    368         'MatthiasMullie\\Scrapbook\\Adapters\\Redis' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Redis.php',
    369         'MatthiasMullie\\Scrapbook\\Adapters\\SQL' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/SQL.php',
    370         'MatthiasMullie\\Scrapbook\\Adapters\\SQLite' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/SQLite.php',
    371         'MatthiasMullie\\Scrapbook\\Buffered\\BufferedStore' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Buffered/BufferedStore.php',
    372         'MatthiasMullie\\Scrapbook\\Buffered\\TransactionalStore' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Buffered/TransactionalStore.php',
    373         'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\Buffer' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Buffered/Utils/Buffer.php',
    374         'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\BufferCollection' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Buffered/Utils/BufferCollection.php',
    375         'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\Defer' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Buffered/Utils/Defer.php',
    376         'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\Transaction' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Buffered/Utils/Transaction.php',
    377         'MatthiasMullie\\Scrapbook\\Exception\\Exception' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/Exception.php',
    378         'MatthiasMullie\\Scrapbook\\Exception\\InvalidCollection' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/InvalidCollection.php',
    379         'MatthiasMullie\\Scrapbook\\Exception\\InvalidKey' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/InvalidKey.php',
    380         'MatthiasMullie\\Scrapbook\\Exception\\OperationFailed' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/OperationFailed.php',
    381         'MatthiasMullie\\Scrapbook\\Exception\\ServerUnhealthy' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/ServerUnhealthy.php',
    382         'MatthiasMullie\\Scrapbook\\Exception\\UnbegunTransaction' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/UnbegunTransaction.php',
    383         'MatthiasMullie\\Scrapbook\\Exception\\UncommittedTransaction' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/UncommittedTransaction.php',
    384         'MatthiasMullie\\Scrapbook\\KeyValueStore' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/KeyValueStore.php',
    385         'MatthiasMullie\\Scrapbook\\Psr16\\InvalidArgumentException' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Psr16/InvalidArgumentException.php',
    386         'MatthiasMullie\\Scrapbook\\Psr16\\SimpleCache' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Psr16/SimpleCache.php',
    387         'MatthiasMullie\\Scrapbook\\Psr6\\InvalidArgumentException' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Psr6/InvalidArgumentException.php',
    388         'MatthiasMullie\\Scrapbook\\Psr6\\Item' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Psr6/Item.php',
    389         'MatthiasMullie\\Scrapbook\\Psr6\\Pool' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Psr6/Pool.php',
    390         'MatthiasMullie\\Scrapbook\\Psr6\\Repository' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Psr6/Repository.php',
    391         'MatthiasMullie\\Scrapbook\\Scale\\Shard' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Scale/Shard.php',
    392         'MatthiasMullie\\Scrapbook\\Scale\\StampedeProtector' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Scale/StampedeProtector.php',
    393         'Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
    394         'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
    395         'Psr\\Cache\\CacheException' => __DIR__ . '/..' . '/psr/cache/src/CacheException.php',
    396         'Psr\\Cache\\CacheItemInterface' => __DIR__ . '/..' . '/psr/cache/src/CacheItemInterface.php',
    397         'Psr\\Cache\\CacheItemPoolInterface' => __DIR__ . '/..' . '/psr/cache/src/CacheItemPoolInterface.php',
    398         'Psr\\Cache\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/cache/src/InvalidArgumentException.php',
    399         'Psr\\Container\\ContainerExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerExceptionInterface.php',
    400         'Psr\\Container\\ContainerInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerInterface.php',
    401         'Psr\\Container\\NotFoundExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/NotFoundExceptionInterface.php',
    402         'Psr\\Http\\Client\\ClientExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/ClientExceptionInterface.php',
    403         'Psr\\Http\\Client\\ClientInterface' => __DIR__ . '/..' . '/psr/http-client/src/ClientInterface.php',
    404         'Psr\\Http\\Client\\NetworkExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/NetworkExceptionInterface.php',
    405         'Psr\\Http\\Client\\RequestExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/RequestExceptionInterface.php',
    406         'Psr\\Http\\Message\\MessageInterface' => __DIR__ . '/..' . '/psr/http-message/src/MessageInterface.php',
    407         'Psr\\Http\\Message\\RequestFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/RequestFactoryInterface.php',
    408         'Psr\\Http\\Message\\RequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/RequestInterface.php',
    409         'Psr\\Http\\Message\\ResponseFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/ResponseFactoryInterface.php',
    410         'Psr\\Http\\Message\\ResponseInterface' => __DIR__ . '/..' . '/psr/http-message/src/ResponseInterface.php',
    411         'Psr\\Http\\Message\\ServerRequestFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/ServerRequestFactoryInterface.php',
    412         'Psr\\Http\\Message\\ServerRequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/ServerRequestInterface.php',
    413         'Psr\\Http\\Message\\StreamFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/StreamFactoryInterface.php',
    414         'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php',
    415         'Psr\\Http\\Message\\UploadedFileFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/UploadedFileFactoryInterface.php',
    416         'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php',
    417         'Psr\\Http\\Message\\UriFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/UriFactoryInterface.php',
    418         'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php',
    419         'Psr\\Log\\AbstractLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/AbstractLogger.php',
    420         'Psr\\Log\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/log/Psr/Log/InvalidArgumentException.php',
    421         'Psr\\Log\\LogLevel' => __DIR__ . '/..' . '/psr/log/Psr/Log/LogLevel.php',
    422         'Psr\\Log\\LoggerAwareInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareInterface.php',
    423         'Psr\\Log\\LoggerAwareTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareTrait.php',
    424         'Psr\\Log\\LoggerInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerInterface.php',
    425         'Psr\\Log\\LoggerTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerTrait.php',
    426         'Psr\\Log\\NullLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/NullLogger.php',
    427         'Psr\\Log\\Test\\DummyTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/DummyTest.php',
    428         'Psr\\Log\\Test\\LoggerInterfaceTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
    429         'Psr\\Log\\Test\\TestLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/TestLogger.php',
    430         'Psr\\SimpleCache\\CacheException' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheException.php',
    431         'Psr\\SimpleCache\\CacheInterface' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheInterface.php',
    432         'Psr\\SimpleCache\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/simple-cache/src/InvalidArgumentException.php',
    433         'SlimStat\\Services\\Browscap' => __DIR__ . '/../..' . '/src/Services/Browscap.php',
    434         'SlimStat\\Services\\GeoIP' => __DIR__ . '/../..' . '/src/Services/GeoIP.php',
    435         'SlimStat\\Services\\GeoService' => __DIR__ . '/../..' . '/src/Services/GeoService.php',
    436         'SlimStat\\Utils\\InvalidDatabaseException' => __DIR__ . '/../..' . '/src/Utils/InvalidDatabaseException.php',
    437         'SlimStat\\Utils\\MaxMindDecoder' => __DIR__ . '/../..' . '/src/Utils/MaxMindDecoder.php',
    438         'SlimStat\\Utils\\MaxMindMetadata' => __DIR__ . '/../..' . '/src/Utils/MaxMindMetadata.php',
    439         'SlimStat\\Utils\\MaxMindReader' => __DIR__ . '/../..' . '/src/Utils/MaxMindReader.php',
    440         'SlimStat\\Utils\\MaxMindUtil' => __DIR__ . '/../..' . '/src/Utils/MaxMindUtil.php',
    441         'SlimStat\\Utils\\UADetector' => __DIR__ . '/../..' . '/src/Utils/UADetector.php',
    442         'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
    443         'Symfony\\Component\\Console\\Application' => __DIR__ . '/..' . '/symfony/console/Application.php',
    444         'Symfony\\Component\\Console\\Attribute\\AsCommand' => __DIR__ . '/..' . '/symfony/console/Attribute/AsCommand.php',
    445         'Symfony\\Component\\Console\\CI\\GithubActionReporter' => __DIR__ . '/..' . '/symfony/console/CI/GithubActionReporter.php',
    446         'Symfony\\Component\\Console\\Color' => __DIR__ . '/..' . '/symfony/console/Color.php',
    447         'Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface' => __DIR__ . '/..' . '/symfony/console/CommandLoader/CommandLoaderInterface.php',
    448         'Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader' => __DIR__ . '/..' . '/symfony/console/CommandLoader/ContainerCommandLoader.php',
    449         'Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader' => __DIR__ . '/..' . '/symfony/console/CommandLoader/FactoryCommandLoader.php',
    450         'Symfony\\Component\\Console\\Command\\Command' => __DIR__ . '/..' . '/symfony/console/Command/Command.php',
    451         'Symfony\\Component\\Console\\Command\\CompleteCommand' => __DIR__ . '/..' . '/symfony/console/Command/CompleteCommand.php',
    452         'Symfony\\Component\\Console\\Command\\DumpCompletionCommand' => __DIR__ . '/..' . '/symfony/console/Command/DumpCompletionCommand.php',
    453         'Symfony\\Component\\Console\\Command\\HelpCommand' => __DIR__ . '/..' . '/symfony/console/Command/HelpCommand.php',
    454         'Symfony\\Component\\Console\\Command\\LazyCommand' => __DIR__ . '/..' . '/symfony/console/Command/LazyCommand.php',
    455         'Symfony\\Component\\Console\\Command\\ListCommand' => __DIR__ . '/..' . '/symfony/console/Command/ListCommand.php',
    456         'Symfony\\Component\\Console\\Command\\LockableTrait' => __DIR__ . '/..' . '/symfony/console/Command/LockableTrait.php',
    457         'Symfony\\Component\\Console\\Command\\SignalableCommandInterface' => __DIR__ . '/..' . '/symfony/console/Command/SignalableCommandInterface.php',
    458         'Symfony\\Component\\Console\\Completion\\CompletionInput' => __DIR__ . '/..' . '/symfony/console/Completion/CompletionInput.php',
    459         'Symfony\\Component\\Console\\Completion\\CompletionSuggestions' => __DIR__ . '/..' . '/symfony/console/Completion/CompletionSuggestions.php',
    460         'Symfony\\Component\\Console\\Completion\\Output\\BashCompletionOutput' => __DIR__ . '/..' . '/symfony/console/Completion/Output/BashCompletionOutput.php',
    461         'Symfony\\Component\\Console\\Completion\\Output\\CompletionOutputInterface' => __DIR__ . '/..' . '/symfony/console/Completion/Output/CompletionOutputInterface.php',
    462         'Symfony\\Component\\Console\\Completion\\Suggestion' => __DIR__ . '/..' . '/symfony/console/Completion/Suggestion.php',
    463         'Symfony\\Component\\Console\\ConsoleEvents' => __DIR__ . '/..' . '/symfony/console/ConsoleEvents.php',
    464         'Symfony\\Component\\Console\\Cursor' => __DIR__ . '/..' . '/symfony/console/Cursor.php',
    465         'Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass' => __DIR__ . '/..' . '/symfony/console/DependencyInjection/AddConsoleCommandPass.php',
    466         'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => __DIR__ . '/..' . '/symfony/console/Descriptor/ApplicationDescription.php',
    467         'Symfony\\Component\\Console\\Descriptor\\Descriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/Descriptor.php',
    468         'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => __DIR__ . '/..' . '/symfony/console/Descriptor/DescriptorInterface.php',
    469         'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/JsonDescriptor.php',
    470         'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/MarkdownDescriptor.php',
    471         'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/TextDescriptor.php',
    472         'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/XmlDescriptor.php',
    473         'Symfony\\Component\\Console\\EventListener\\ErrorListener' => __DIR__ . '/..' . '/symfony/console/EventListener/ErrorListener.php',
    474         'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleCommandEvent.php',
    475         'Symfony\\Component\\Console\\Event\\ConsoleErrorEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleErrorEvent.php',
    476         'Symfony\\Component\\Console\\Event\\ConsoleEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleEvent.php',
    477         'Symfony\\Component\\Console\\Event\\ConsoleSignalEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleSignalEvent.php',
    478         'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleTerminateEvent.php',
    479         'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => __DIR__ . '/..' . '/symfony/console/Exception/CommandNotFoundException.php',
    480         'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/console/Exception/ExceptionInterface.php',
    481         'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/console/Exception/InvalidArgumentException.php',
    482         'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => __DIR__ . '/..' . '/symfony/console/Exception/InvalidOptionException.php',
    483         'Symfony\\Component\\Console\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/console/Exception/LogicException.php',
    484         'Symfony\\Component\\Console\\Exception\\MissingInputException' => __DIR__ . '/..' . '/symfony/console/Exception/MissingInputException.php',
    485         'Symfony\\Component\\Console\\Exception\\NamespaceNotFoundException' => __DIR__ . '/..' . '/symfony/console/Exception/NamespaceNotFoundException.php',
    486         'Symfony\\Component\\Console\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/console/Exception/RuntimeException.php',
    487         'Symfony\\Component\\Console\\Formatter\\NullOutputFormatter' => __DIR__ . '/..' . '/symfony/console/Formatter/NullOutputFormatter.php',
    488         'Symfony\\Component\\Console\\Formatter\\NullOutputFormatterStyle' => __DIR__ . '/..' . '/symfony/console/Formatter/NullOutputFormatterStyle.php',
    489         'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatter.php',
    490         'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterInterface.php',
    491         'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyle.php',
    492         'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyleInterface.php',
    493         'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyleStack.php',
    494         'Symfony\\Component\\Console\\Formatter\\WrappableOutputFormatterInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/WrappableOutputFormatterInterface.php',
    495         'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => __DIR__ . '/..' . '/symfony/console/Helper/DebugFormatterHelper.php',
    496         'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => __DIR__ . '/..' . '/symfony/console/Helper/DescriptorHelper.php',
    497         'Symfony\\Component\\Console\\Helper\\Dumper' => __DIR__ . '/..' . '/symfony/console/Helper/Dumper.php',
    498         'Symfony\\Component\\Console\\Helper\\FormatterHelper' => __DIR__ . '/..' . '/symfony/console/Helper/FormatterHelper.php',
    499         'Symfony\\Component\\Console\\Helper\\Helper' => __DIR__ . '/..' . '/symfony/console/Helper/Helper.php',
    500         'Symfony\\Component\\Console\\Helper\\HelperInterface' => __DIR__ . '/..' . '/symfony/console/Helper/HelperInterface.php',
    501         'Symfony\\Component\\Console\\Helper\\HelperSet' => __DIR__ . '/..' . '/symfony/console/Helper/HelperSet.php',
    502         'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => __DIR__ . '/..' . '/symfony/console/Helper/InputAwareHelper.php',
    503         'Symfony\\Component\\Console\\Helper\\ProcessHelper' => __DIR__ . '/..' . '/symfony/console/Helper/ProcessHelper.php',
    504         'Symfony\\Component\\Console\\Helper\\ProgressBar' => __DIR__ . '/..' . '/symfony/console/Helper/ProgressBar.php',
    505         'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => __DIR__ . '/..' . '/symfony/console/Helper/ProgressIndicator.php',
    506         'Symfony\\Component\\Console\\Helper\\QuestionHelper' => __DIR__ . '/..' . '/symfony/console/Helper/QuestionHelper.php',
    507         'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => __DIR__ . '/..' . '/symfony/console/Helper/SymfonyQuestionHelper.php',
    508         'Symfony\\Component\\Console\\Helper\\Table' => __DIR__ . '/..' . '/symfony/console/Helper/Table.php',
    509         'Symfony\\Component\\Console\\Helper\\TableCell' => __DIR__ . '/..' . '/symfony/console/Helper/TableCell.php',
    510         'Symfony\\Component\\Console\\Helper\\TableCellStyle' => __DIR__ . '/..' . '/symfony/console/Helper/TableCellStyle.php',
    511         'Symfony\\Component\\Console\\Helper\\TableRows' => __DIR__ . '/..' . '/symfony/console/Helper/TableRows.php',
    512         'Symfony\\Component\\Console\\Helper\\TableSeparator' => __DIR__ . '/..' . '/symfony/console/Helper/TableSeparator.php',
    513         'Symfony\\Component\\Console\\Helper\\TableStyle' => __DIR__ . '/..' . '/symfony/console/Helper/TableStyle.php',
    514         'Symfony\\Component\\Console\\Input\\ArgvInput' => __DIR__ . '/..' . '/symfony/console/Input/ArgvInput.php',
    515         'Symfony\\Component\\Console\\Input\\ArrayInput' => __DIR__ . '/..' . '/symfony/console/Input/ArrayInput.php',
    516         'Symfony\\Component\\Console\\Input\\Input' => __DIR__ . '/..' . '/symfony/console/Input/Input.php',
    517         'Symfony\\Component\\Console\\Input\\InputArgument' => __DIR__ . '/..' . '/symfony/console/Input/InputArgument.php',
    518         'Symfony\\Component\\Console\\Input\\InputAwareInterface' => __DIR__ . '/..' . '/symfony/console/Input/InputAwareInterface.php',
    519         'Symfony\\Component\\Console\\Input\\InputDefinition' => __DIR__ . '/..' . '/symfony/console/Input/InputDefinition.php',
    520         'Symfony\\Component\\Console\\Input\\InputInterface' => __DIR__ . '/..' . '/symfony/console/Input/InputInterface.php',
    521         'Symfony\\Component\\Console\\Input\\InputOption' => __DIR__ . '/..' . '/symfony/console/Input/InputOption.php',
    522         'Symfony\\Component\\Console\\Input\\StreamableInputInterface' => __DIR__ . '/..' . '/symfony/console/Input/StreamableInputInterface.php',
    523         'Symfony\\Component\\Console\\Input\\StringInput' => __DIR__ . '/..' . '/symfony/console/Input/StringInput.php',
    524         'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => __DIR__ . '/..' . '/symfony/console/Logger/ConsoleLogger.php',
    525         'Symfony\\Component\\Console\\Output\\BufferedOutput' => __DIR__ . '/..' . '/symfony/console/Output/BufferedOutput.php',
    526         'Symfony\\Component\\Console\\Output\\ConsoleOutput' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleOutput.php',
    527         'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleOutputInterface.php',
    528         'Symfony\\Component\\Console\\Output\\ConsoleSectionOutput' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleSectionOutput.php',
    529         'Symfony\\Component\\Console\\Output\\NullOutput' => __DIR__ . '/..' . '/symfony/console/Output/NullOutput.php',
    530         'Symfony\\Component\\Console\\Output\\Output' => __DIR__ . '/..' . '/symfony/console/Output/Output.php',
    531         'Symfony\\Component\\Console\\Output\\OutputInterface' => __DIR__ . '/..' . '/symfony/console/Output/OutputInterface.php',
    532         'Symfony\\Component\\Console\\Output\\StreamOutput' => __DIR__ . '/..' . '/symfony/console/Output/StreamOutput.php',
    533         'Symfony\\Component\\Console\\Output\\TrimmedBufferOutput' => __DIR__ . '/..' . '/symfony/console/Output/TrimmedBufferOutput.php',
    534         'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => __DIR__ . '/..' . '/symfony/console/Question/ChoiceQuestion.php',
    535         'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => __DIR__ . '/..' . '/symfony/console/Question/ConfirmationQuestion.php',
    536         'Symfony\\Component\\Console\\Question\\Question' => __DIR__ . '/..' . '/symfony/console/Question/Question.php',
    537         'Symfony\\Component\\Console\\SignalRegistry\\SignalRegistry' => __DIR__ . '/..' . '/symfony/console/SignalRegistry/SignalRegistry.php',
    538         'Symfony\\Component\\Console\\SingleCommandApplication' => __DIR__ . '/..' . '/symfony/console/SingleCommandApplication.php',
    539         'Symfony\\Component\\Console\\Style\\OutputStyle' => __DIR__ . '/..' . '/symfony/console/Style/OutputStyle.php',
    540         'Symfony\\Component\\Console\\Style\\StyleInterface' => __DIR__ . '/..' . '/symfony/console/Style/StyleInterface.php',
    541         'Symfony\\Component\\Console\\Style\\SymfonyStyle' => __DIR__ . '/..' . '/symfony/console/Style/SymfonyStyle.php',
    542         'Symfony\\Component\\Console\\Terminal' => __DIR__ . '/..' . '/symfony/console/Terminal.php',
    543         'Symfony\\Component\\Console\\Tester\\ApplicationTester' => __DIR__ . '/..' . '/symfony/console/Tester/ApplicationTester.php',
    544         'Symfony\\Component\\Console\\Tester\\CommandCompletionTester' => __DIR__ . '/..' . '/symfony/console/Tester/CommandCompletionTester.php',
    545         'Symfony\\Component\\Console\\Tester\\CommandTester' => __DIR__ . '/..' . '/symfony/console/Tester/CommandTester.php',
    546         'Symfony\\Component\\Console\\Tester\\Constraint\\CommandIsSuccessful' => __DIR__ . '/..' . '/symfony/console/Tester/Constraint/CommandIsSuccessful.php',
    547         'Symfony\\Component\\Console\\Tester\\TesterTrait' => __DIR__ . '/..' . '/symfony/console/Tester/TesterTrait.php',
    548         'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/ExceptionInterface.php',
    549         'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/FileNotFoundException.php',
    550         'Symfony\\Component\\Filesystem\\Exception\\IOException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOException.php',
    551         'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOExceptionInterface.php',
    552         'Symfony\\Component\\Filesystem\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/InvalidArgumentException.php',
    553         'Symfony\\Component\\Filesystem\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/RuntimeException.php',
    554         'Symfony\\Component\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/symfony/filesystem/Filesystem.php',
    555         'Symfony\\Component\\Filesystem\\Path' => __DIR__ . '/..' . '/symfony/filesystem/Path.php',
    556         'Symfony\\Component\\String\\AbstractString' => __DIR__ . '/..' . '/symfony/string/AbstractString.php',
    557         'Symfony\\Component\\String\\AbstractUnicodeString' => __DIR__ . '/..' . '/symfony/string/AbstractUnicodeString.php',
    558         'Symfony\\Component\\String\\ByteString' => __DIR__ . '/..' . '/symfony/string/ByteString.php',
    559         'Symfony\\Component\\String\\CodePointString' => __DIR__ . '/..' . '/symfony/string/CodePointString.php',
    560         'Symfony\\Component\\String\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/string/Exception/ExceptionInterface.php',
    561         'Symfony\\Component\\String\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/string/Exception/InvalidArgumentException.php',
    562         'Symfony\\Component\\String\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/string/Exception/RuntimeException.php',
    563         'Symfony\\Component\\String\\Inflector\\EnglishInflector' => __DIR__ . '/..' . '/symfony/string/Inflector/EnglishInflector.php',
    564         'Symfony\\Component\\String\\Inflector\\FrenchInflector' => __DIR__ . '/..' . '/symfony/string/Inflector/FrenchInflector.php',
    565         'Symfony\\Component\\String\\Inflector\\InflectorInterface' => __DIR__ . '/..' . '/symfony/string/Inflector/InflectorInterface.php',
    566         'Symfony\\Component\\String\\LazyString' => __DIR__ . '/..' . '/symfony/string/LazyString.php',
    567         'Symfony\\Component\\String\\Slugger\\AsciiSlugger' => __DIR__ . '/..' . '/symfony/string/Slugger/AsciiSlugger.php',
    568         'Symfony\\Component\\String\\Slugger\\SluggerInterface' => __DIR__ . '/..' . '/symfony/string/Slugger/SluggerInterface.php',
    569         'Symfony\\Component\\String\\UnicodeString' => __DIR__ . '/..' . '/symfony/string/UnicodeString.php',
    570         'Symfony\\Contracts\\Service\\Attribute\\Required' => __DIR__ . '/..' . '/symfony/service-contracts/Attribute/Required.php',
    571         'Symfony\\Contracts\\Service\\Attribute\\SubscribedService' => __DIR__ . '/..' . '/symfony/service-contracts/Attribute/SubscribedService.php',
    572         'Symfony\\Contracts\\Service\\ResetInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ResetInterface.php',
    573         'Symfony\\Contracts\\Service\\ServiceCollectionInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceCollectionInterface.php',
    574         'Symfony\\Contracts\\Service\\ServiceLocatorTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceLocatorTrait.php',
    575         'Symfony\\Contracts\\Service\\ServiceMethodsSubscriberTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceMethodsSubscriberTrait.php',
    576         'Symfony\\Contracts\\Service\\ServiceProviderInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceProviderInterface.php',
    577         'Symfony\\Contracts\\Service\\ServiceSubscriberInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceSubscriberInterface.php',
    578         'Symfony\\Contracts\\Service\\ServiceSubscriberTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceSubscriberTrait.php',
    579         'Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__ . '/..' . '/symfony/polyfill-ctype/Ctype.php',
    580         'Symfony\\Polyfill\\Intl\\Grapheme\\Grapheme' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/Grapheme.php',
    581         'Symfony\\Polyfill\\Intl\\Normalizer\\Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Normalizer.php',
    582         'Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/Mbstring.php',
    583         'Symfony\\Polyfill\\Php73\\Php73' => __DIR__ . '/..' . '/symfony/polyfill-php73/Php73.php',
    584         'Symfony\\Polyfill\\Php80\\Php80' => __DIR__ . '/..' . '/symfony/polyfill-php80/Php80.php',
    585         'Symfony\\Polyfill\\Php80\\PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/PhpToken.php',
    586         'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
    587         'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
    58830    );
    58931
  • wp-slimstat/tags/5.2.5/vendor/composer/installed.php

    r3099788 r3131121  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '22a88346cc2c02698a4f953ca01a0e13436bdc5a',
     6        'reference' => '2b0f0c238f368de43db364d3b2070a07a2fcba52',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    286286            'pretty_version' => 'dev-master',
    287287            'version' => 'dev-master',
    288             'reference' => '22a88346cc2c02698a4f953ca01a0e13436bdc5a',
     288            'reference' => '2b0f0c238f368de43db364d3b2070a07a2fcba52',
    289289            'type' => 'library',
    290290            'install_path' => __DIR__ . '/../../',
  • wp-slimstat/tags/5.2.5/wp-slimstat.php

    r3119942 r3131121  
    44 * Plugin URI: https://wp-slimstat.com/
    55 * Description: The leading web analytics plugin for WordPress
    6  * Version: 5.2.4
     6 * Version: 5.2.5
    77 * Author: Jason Crouse, VeronaLabs
    88 * Text Domain: wp-slimstat
     
    11571157            'rows_to_show'                           => '20',
    11581158            'show_hits'                              => 'no',
    1159             'ip_lookup_service'                      => 'https://www.infosniper.net/?ip_address=',
     1159            'ip_lookup_service'                      => 'https://ip-api.com/#',
    11601160            'comparison_chart'                       => 'on',
    11611161            'show_display_name'                      => 'no',
  • wp-slimstat/trunk/CHANGELOG.md

    r3119942 r3131121  
     1= 5.2.5 - 05.08.2024 =
     2* Enhancement: Mozart: Implemented to avoid plugin namespace conflicts.
     3* Enhancement: Replaced default IP lookup service with a new provider offering fewer limitations and integrated map functionality.
     4* Fix: Resolved an issue occurring during the uninstallation process in certain cases.
     5
    16= 5.2.4 - 17.07.2024 =
    27* Fix: Resolved issues with capabilities in the sub-menu.
  • wp-slimstat/trunk/readme.txt

    r3119942 r3131121  
    66Requires PHP: 7.4
    77Tested up to: 6.6
    8 Stable tag: 5.2.4
     8Stable tag: 5.2.5
    99License: GPL-2.0+
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6666
    6767== Changelog ==
    68 = 5.2.4 - 17.07.2024 =
    69 * Fix: Resolved issues with capabilities in the sub-menu.
    70 * Enhancement: Added a missing title for Screen Options.
     68= 5.2.5 - 05.08.2024 =
     69* Enhancement: Mozart: Implemented to avoid plugin namespace conflicts.
     70* Enhancement: Replaced default IP lookup service with a new provider offering fewer limitations and integrated map functionality.
     71* Fix: Resolved an issue occurring during the uninstallation process in certain cases.
    7172
    7273[See changelog for all versions](https://raw.githubusercontent.com/wp-slimstat/wp-slimstat/master/CHANGELOG.md).
  • wp-slimstat/trunk/src/Services/Browscap.php

    r3103187 r3131121  
    33namespace SlimStat\Services;
    44
    5 use Psr\Log\NullLogger;
     5use Exception;
     6use SlimStat\Dependencies\League\Flysystem\Filesystem;
     7use SlimStat\Dependencies\League\Flysystem\Local\LocalFilesystemAdapter;
     8use SlimStat\Dependencies\MatthiasMullie\Scrapbook\Adapters\Flysystem;
     9use SlimStat\Dependencies\MatthiasMullie\Scrapbook\Psr16\SimpleCache;
     10use SlimStat\Dependencies\Psr\Log\NullLogger;
    611use SlimStat\Utils\UADetector;
    712use wp_slimstat;
     
    7075    {
    7176        try {
    72             $file_cache    = new \League\Flysystem\Local\LocalFilesystemAdapter($_cache_path);
    73             $filesystem    = new \League\Flysystem\Filesystem($file_cache);
    74             $cache         = new \MatthiasMullie\Scrapbook\Psr16\SimpleCache(
    75                 new \MatthiasMullie\Scrapbook\Adapters\Flysystem($filesystem)
     77            $file_cache    = new LocalFilesystemAdapter($_cache_path);
     78            $filesystem    = new Filesystem($file_cache);
     79            $cache         = new SimpleCache(
     80                new Flysystem($filesystem)
    7681            );
    7782            $logger        = new NullLogger();
    78             $browscap      = new \BrowscapPHP\Browscap($cache, $logger);
     83            $browscap      = new \SlimStat\Dependencies\BrowscapPHP\Browscap($cache, $logger);
    7984            $search_object = $browscap->getBrowser();
    80         } catch (\Exception $e) {
     85        } catch (Exception $e) {
    8186            $search_object = '';
    8287        }
  • wp-slimstat/trunk/uninstall.php

    r3108230 r3131121  
    6262    // Remove scheduled autopurge events
    6363    wp_clear_scheduled_hook('wp_slimstat_purge');
     64    wp_clear_scheduled_hook('wp_slimstat_update_geoip_database');
    6465
    65     // Uninstall Geographic
    66     $geographicProvider = new \SlimStat\Services\GeoService();
    67     $geographicProvider->clearScheduledEvent();
    68     $geographicProvider->deleteDatabaseFile();
     66    // Remove the uploads folder
     67    if (defined('UPLOADS')) {
     68        $upload_dir = ABSPATH . UPLOADS . '/wp-slimstat';
     69    } else {
     70        $upload_dir_info = wp_upload_dir();
     71        $upload_dir = $upload_dir_info['basedir'];
     72
     73        // Handle multisite environment
     74        if (is_multisite()) {
     75            if (!(is_main_network() && is_main_site() && defined('MULTISITE'))) {
     76                $upload_dir = str_replace('/sites/' . get_current_blog_id(), '', $upload_dir);
     77            }
     78        }
     79        $upload_dir .= '/wp-slimstat';
     80    }
     81
     82    WP_Filesystem();
     83    global $wp_filesystem;
     84    $wp_filesystem->delete($upload_dir, true, 'd');
    6985}
  • wp-slimstat/trunk/vendor/composer/autoload_classmap.php

    r3108230 r3131121  
    77
    88return array(
    9     'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
    10     'BrowscapPHP\\Browscap' => $vendorDir . '/veronalabs/browscap-php/src/Browscap.php',
    11     'BrowscapPHP\\BrowscapInterface' => $vendorDir . '/veronalabs/browscap-php/src/BrowscapInterface.php',
    12     'BrowscapPHP\\BrowscapUpdater' => $vendorDir . '/veronalabs/browscap-php/src/BrowscapUpdater.php',
    13     'BrowscapPHP\\BrowscapUpdaterInterface' => $vendorDir . '/veronalabs/browscap-php/src/BrowscapUpdaterInterface.php',
    14     'BrowscapPHP\\Cache\\BrowscapCache' => $vendorDir . '/veronalabs/browscap-php/src/Cache/BrowscapCache.php',
    15     'BrowscapPHP\\Cache\\BrowscapCacheInterface' => $vendorDir . '/veronalabs/browscap-php/src/Cache/BrowscapCacheInterface.php',
    16     'BrowscapPHP\\Command\\CheckUpdateCommand' => $vendorDir . '/veronalabs/browscap-php/src/Command/CheckUpdateCommand.php',
    17     'BrowscapPHP\\Command\\ConvertCommand' => $vendorDir . '/veronalabs/browscap-php/src/Command/ConvertCommand.php',
    18     'BrowscapPHP\\Command\\FetchCommand' => $vendorDir . '/veronalabs/browscap-php/src/Command/FetchCommand.php',
    19     'BrowscapPHP\\Command\\ParserCommand' => $vendorDir . '/veronalabs/browscap-php/src/Command/ParserCommand.php',
    20     'BrowscapPHP\\Command\\UpdateCommand' => $vendorDir . '/veronalabs/browscap-php/src/Command/UpdateCommand.php',
    21     'BrowscapPHP\\Data\\PropertyFormatter' => $vendorDir . '/veronalabs/browscap-php/src/Data/PropertyFormatter.php',
    22     'BrowscapPHP\\Data\\PropertyHolder' => $vendorDir . '/veronalabs/browscap-php/src/Data/PropertyHolder.php',
    23     'BrowscapPHP\\Exception' => $vendorDir . '/veronalabs/browscap-php/src/Exception.php',
    24     'BrowscapPHP\\Exception\\DomainException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/DomainException.php',
    25     'BrowscapPHP\\Exception\\ErrorCachedVersionException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/ErrorCachedVersionException.php',
    26     'BrowscapPHP\\Exception\\ErrorReadingFileException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/ErrorReadingFileException.php',
    27     'BrowscapPHP\\Exception\\FetcherException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/FetcherException.php',
    28     'BrowscapPHP\\Exception\\FileNameMissingException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/FileNameMissingException.php',
    29     'BrowscapPHP\\Exception\\FileNotFoundException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/FileNotFoundException.php',
    30     'BrowscapPHP\\Exception\\InvalidArgumentException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/InvalidArgumentException.php',
    31     'BrowscapPHP\\Exception\\NoCachedVersionException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/NoCachedVersionException.php',
    32     'BrowscapPHP\\Exception\\NoNewVersionException' => $vendorDir . '/veronalabs/browscap-php/src/Exception/NoNewVersionException.php',
    33     'BrowscapPHP\\Formatter\\FormatterInterface' => $vendorDir . '/veronalabs/browscap-php/src/Formatter/FormatterInterface.php',
    34     'BrowscapPHP\\Formatter\\LegacyFormatter' => $vendorDir . '/veronalabs/browscap-php/src/Formatter/LegacyFormatter.php',
    35     'BrowscapPHP\\Formatter\\PhpGetBrowser' => $vendorDir . '/veronalabs/browscap-php/src/Formatter/PhpGetBrowser.php',
    36     'BrowscapPHP\\Helper\\Converter' => $vendorDir . '/veronalabs/browscap-php/src/Helper/Converter.php',
    37     'BrowscapPHP\\Helper\\ConverterInterface' => $vendorDir . '/veronalabs/browscap-php/src/Helper/ConverterInterface.php',
    38     'BrowscapPHP\\Helper\\Exception' => $vendorDir . '/veronalabs/browscap-php/src/Helper/Exception.php',
    39     'BrowscapPHP\\Helper\\Filesystem' => $vendorDir . '/veronalabs/browscap-php/src/Helper/Filesystem.php',
    40     'BrowscapPHP\\Helper\\IniLoader' => $vendorDir . '/veronalabs/browscap-php/src/Helper/IniLoader.php',
    41     'BrowscapPHP\\Helper\\IniLoaderInterface' => $vendorDir . '/veronalabs/browscap-php/src/Helper/IniLoaderInterface.php',
    42     'BrowscapPHP\\Helper\\LoggerHelper' => $vendorDir . '/veronalabs/browscap-php/src/Helper/LoggerHelper.php',
    43     'BrowscapPHP\\Helper\\Quoter' => $vendorDir . '/veronalabs/browscap-php/src/Helper/Quoter.php',
    44     'BrowscapPHP\\Helper\\QuoterInterface' => $vendorDir . '/veronalabs/browscap-php/src/Helper/QuoterInterface.php',
    45     'BrowscapPHP\\Helper\\Support' => $vendorDir . '/veronalabs/browscap-php/src/Helper/Support.php',
    46     'BrowscapPHP\\Helper\\SupportInterface' => $vendorDir . '/veronalabs/browscap-php/src/Helper/SupportInterface.php',
    47     'BrowscapPHP\\IniParser\\IniParser' => $vendorDir . '/veronalabs/browscap-php/src/IniParser/IniParser.php',
    48     'BrowscapPHP\\IniParser\\ParserInterface' => $vendorDir . '/veronalabs/browscap-php/src/IniParser/ParserInterface.php',
    49     'BrowscapPHP\\Parser\\Helper\\GetData' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Helper/GetData.php',
    50     'BrowscapPHP\\Parser\\Helper\\GetDataInterface' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Helper/GetDataInterface.php',
    51     'BrowscapPHP\\Parser\\Helper\\GetPattern' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Helper/GetPattern.php',
    52     'BrowscapPHP\\Parser\\Helper\\GetPatternInterface' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Helper/GetPatternInterface.php',
    53     'BrowscapPHP\\Parser\\Helper\\Pattern' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Helper/Pattern.php',
    54     'BrowscapPHP\\Parser\\Helper\\SubKey' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Helper/SubKey.php',
    55     'BrowscapPHP\\Parser\\Ini' => $vendorDir . '/veronalabs/browscap-php/src/Parser/Ini.php',
    56     'BrowscapPHP\\Parser\\ParserInterface' => $vendorDir . '/veronalabs/browscap-php/src/Parser/ParserInterface.php',
    579    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    58     'GuzzleHttp\\BodySummarizer' => $vendorDir . '/guzzlehttp/guzzle/src/BodySummarizer.php',
    59     'GuzzleHttp\\BodySummarizerInterface' => $vendorDir . '/guzzlehttp/guzzle/src/BodySummarizerInterface.php',
    60     'GuzzleHttp\\Client' => $vendorDir . '/guzzlehttp/guzzle/src/Client.php',
    61     'GuzzleHttp\\ClientInterface' => $vendorDir . '/guzzlehttp/guzzle/src/ClientInterface.php',
    62     'GuzzleHttp\\ClientTrait' => $vendorDir . '/guzzlehttp/guzzle/src/ClientTrait.php',
    63     'GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
    64     'GuzzleHttp\\Cookie\\CookieJarInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',
    65     'GuzzleHttp\\Cookie\\FileCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',
    66     'GuzzleHttp\\Cookie\\SessionCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',
    67     'GuzzleHttp\\Cookie\\SetCookie' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php',
    68     'GuzzleHttp\\Exception\\BadResponseException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php',
    69     'GuzzleHttp\\Exception\\ClientException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ClientException.php',
    70     'GuzzleHttp\\Exception\\ConnectException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ConnectException.php',
    71     'GuzzleHttp\\Exception\\GuzzleException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php',
    72     'GuzzleHttp\\Exception\\InvalidArgumentException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',
    73     'GuzzleHttp\\Exception\\RequestException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/RequestException.php',
    74     'GuzzleHttp\\Exception\\ServerException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ServerException.php',
    75     'GuzzleHttp\\Exception\\TooManyRedirectsException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',
    76     'GuzzleHttp\\Exception\\TransferException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TransferException.php',
    77     'GuzzleHttp\\HandlerStack' => $vendorDir . '/guzzlehttp/guzzle/src/HandlerStack.php',
    78     'GuzzleHttp\\Handler\\CurlFactory' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php',
    79     'GuzzleHttp\\Handler\\CurlFactoryInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',
    80     'GuzzleHttp\\Handler\\CurlHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php',
    81     'GuzzleHttp\\Handler\\CurlMultiHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',
    82     'GuzzleHttp\\Handler\\EasyHandle' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php',
    83     'GuzzleHttp\\Handler\\HeaderProcessor' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php',
    84     'GuzzleHttp\\Handler\\MockHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/MockHandler.php',
    85     'GuzzleHttp\\Handler\\Proxy' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/Proxy.php',
    86     'GuzzleHttp\\Handler\\StreamHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php',
    87     'GuzzleHttp\\MessageFormatter' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatter.php',
    88     'GuzzleHttp\\MessageFormatterInterface' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatterInterface.php',
    89     'GuzzleHttp\\Middleware' => $vendorDir . '/guzzlehttp/guzzle/src/Middleware.php',
    90     'GuzzleHttp\\Pool' => $vendorDir . '/guzzlehttp/guzzle/src/Pool.php',
    91     'GuzzleHttp\\PrepareBodyMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',
    92     'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php',
    93     'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php',
    94     'GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/guzzlehttp/promises/src/Coroutine.php',
    95     'GuzzleHttp\\Promise\\Create' => $vendorDir . '/guzzlehttp/promises/src/Create.php',
    96     'GuzzleHttp\\Promise\\Each' => $vendorDir . '/guzzlehttp/promises/src/Each.php',
    97     'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php',
    98     'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php',
    99     'GuzzleHttp\\Promise\\Is' => $vendorDir . '/guzzlehttp/promises/src/Is.php',
    100     'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php',
    101     'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php',
    102     'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php',
    103     'GuzzleHttp\\Promise\\RejectedPromise' => $vendorDir . '/guzzlehttp/promises/src/RejectedPromise.php',
    104     'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php',
    105     'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php',
    106     'GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/guzzlehttp/promises/src/TaskQueueInterface.php',
    107     'GuzzleHttp\\Promise\\Utils' => $vendorDir . '/guzzlehttp/promises/src/Utils.php',
    108     'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php',
    109     'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php',
    110     'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php',
    111     'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php',
    112     'GuzzleHttp\\Psr7\\Exception\\MalformedUriException' => $vendorDir . '/guzzlehttp/psr7/src/Exception/MalformedUriException.php',
    113     'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php',
    114     'GuzzleHttp\\Psr7\\Header' => $vendorDir . '/guzzlehttp/psr7/src/Header.php',
    115     'GuzzleHttp\\Psr7\\HttpFactory' => $vendorDir . '/guzzlehttp/psr7/src/HttpFactory.php',
    116     'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php',
    117     'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php',
    118     'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php',
    119     'GuzzleHttp\\Psr7\\Message' => $vendorDir . '/guzzlehttp/psr7/src/Message.php',
    120     'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php',
    121     'GuzzleHttp\\Psr7\\MimeType' => $vendorDir . '/guzzlehttp/psr7/src/MimeType.php',
    122     'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php',
    123     'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php',
    124     'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php',
    125     'GuzzleHttp\\Psr7\\Query' => $vendorDir . '/guzzlehttp/psr7/src/Query.php',
    126     'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php',
    127     'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php',
    128     'GuzzleHttp\\Psr7\\Rfc7230' => $vendorDir . '/guzzlehttp/psr7/src/Rfc7230.php',
    129     'GuzzleHttp\\Psr7\\ServerRequest' => $vendorDir . '/guzzlehttp/psr7/src/ServerRequest.php',
    130     'GuzzleHttp\\Psr7\\Stream' => $vendorDir . '/guzzlehttp/psr7/src/Stream.php',
    131     'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => $vendorDir . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
    132     'GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php',
    133     'GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php',
    134     'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php',
    135     'GuzzleHttp\\Psr7\\UriComparator' => $vendorDir . '/guzzlehttp/psr7/src/UriComparator.php',
    136     'GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php',
    137     'GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php',
    138     'GuzzleHttp\\Psr7\\Utils' => $vendorDir . '/guzzlehttp/psr7/src/Utils.php',
    139     'GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
    140     'GuzzleHttp\\RequestOptions' => $vendorDir . '/guzzlehttp/guzzle/src/RequestOptions.php',
    141     'GuzzleHttp\\RetryMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
    142     'GuzzleHttp\\TransferStats' => $vendorDir . '/guzzlehttp/guzzle/src/TransferStats.php',
    143     'GuzzleHttp\\Utils' => $vendorDir . '/guzzlehttp/guzzle/src/Utils.php',
    144     'JsonException' => $vendorDir . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
    145     'League\\Flysystem\\Config' => $vendorDir . '/league/flysystem/src/Config.php',
    146     'League\\Flysystem\\CorruptedPathDetected' => $vendorDir . '/league/flysystem/src/CorruptedPathDetected.php',
    147     'League\\Flysystem\\DirectoryAttributes' => $vendorDir . '/league/flysystem/src/DirectoryAttributes.php',
    148     'League\\Flysystem\\DirectoryListing' => $vendorDir . '/league/flysystem/src/DirectoryListing.php',
    149     'League\\Flysystem\\FileAttributes' => $vendorDir . '/league/flysystem/src/FileAttributes.php',
    150     'League\\Flysystem\\Filesystem' => $vendorDir . '/league/flysystem/src/Filesystem.php',
    151     'League\\Flysystem\\FilesystemAdapter' => $vendorDir . '/league/flysystem/src/FilesystemAdapter.php',
    152     'League\\Flysystem\\FilesystemException' => $vendorDir . '/league/flysystem/src/FilesystemException.php',
    153     'League\\Flysystem\\FilesystemOperationFailed' => $vendorDir . '/league/flysystem/src/FilesystemOperationFailed.php',
    154     'League\\Flysystem\\FilesystemOperator' => $vendorDir . '/league/flysystem/src/FilesystemOperator.php',
    155     'League\\Flysystem\\FilesystemReader' => $vendorDir . '/league/flysystem/src/FilesystemReader.php',
    156     'League\\Flysystem\\FilesystemWriter' => $vendorDir . '/league/flysystem/src/FilesystemWriter.php',
    157     'League\\Flysystem\\InvalidStreamProvided' => $vendorDir . '/league/flysystem/src/InvalidStreamProvided.php',
    158     'League\\Flysystem\\InvalidVisibilityProvided' => $vendorDir . '/league/flysystem/src/InvalidVisibilityProvided.php',
    159     'League\\Flysystem\\Local\\LocalFilesystemAdapter' => $vendorDir . '/league/flysystem/src/Local/LocalFilesystemAdapter.php',
    160     'League\\Flysystem\\MountManager' => $vendorDir . '/league/flysystem/src/MountManager.php',
    161     'League\\Flysystem\\PathNormalizer' => $vendorDir . '/league/flysystem/src/PathNormalizer.php',
    162     'League\\Flysystem\\PathPrefixer' => $vendorDir . '/league/flysystem/src/PathPrefixer.php',
    163     'League\\Flysystem\\PathTraversalDetected' => $vendorDir . '/league/flysystem/src/PathTraversalDetected.php',
    164     'League\\Flysystem\\PortableVisibilityGuard' => $vendorDir . '/league/flysystem/src/PortableVisibilityGuard.php',
    165     'League\\Flysystem\\ProxyArrayAccessToProperties' => $vendorDir . '/league/flysystem/src/ProxyArrayAccessToProperties.php',
    166     'League\\Flysystem\\StorageAttributes' => $vendorDir . '/league/flysystem/src/StorageAttributes.php',
    167     'League\\Flysystem\\SymbolicLinkEncountered' => $vendorDir . '/league/flysystem/src/SymbolicLinkEncountered.php',
    168     'League\\Flysystem\\UnableToCheckFileExistence' => $vendorDir . '/league/flysystem/src/UnableToCheckFileExistence.php',
    169     'League\\Flysystem\\UnableToCopyFile' => $vendorDir . '/league/flysystem/src/UnableToCopyFile.php',
    170     'League\\Flysystem\\UnableToCreateDirectory' => $vendorDir . '/league/flysystem/src/UnableToCreateDirectory.php',
    171     'League\\Flysystem\\UnableToDeleteDirectory' => $vendorDir . '/league/flysystem/src/UnableToDeleteDirectory.php',
    172     'League\\Flysystem\\UnableToDeleteFile' => $vendorDir . '/league/flysystem/src/UnableToDeleteFile.php',
    173     'League\\Flysystem\\UnableToMountFilesystem' => $vendorDir . '/league/flysystem/src/UnableToMountFilesystem.php',
    174     'League\\Flysystem\\UnableToMoveFile' => $vendorDir . '/league/flysystem/src/UnableToMoveFile.php',
    175     'League\\Flysystem\\UnableToReadFile' => $vendorDir . '/league/flysystem/src/UnableToReadFile.php',
    176     'League\\Flysystem\\UnableToResolveFilesystemMount' => $vendorDir . '/league/flysystem/src/UnableToResolveFilesystemMount.php',
    177     'League\\Flysystem\\UnableToRetrieveMetadata' => $vendorDir . '/league/flysystem/src/UnableToRetrieveMetadata.php',
    178     'League\\Flysystem\\UnableToSetVisibility' => $vendorDir . '/league/flysystem/src/UnableToSetVisibility.php',
    179     'League\\Flysystem\\UnableToWriteFile' => $vendorDir . '/league/flysystem/src/UnableToWriteFile.php',
    180     'League\\Flysystem\\UnixVisibility\\PortableVisibilityConverter' => $vendorDir . '/league/flysystem/src/UnixVisibility/PortableVisibilityConverter.php',
    181     'League\\Flysystem\\UnixVisibility\\VisibilityConverter' => $vendorDir . '/league/flysystem/src/UnixVisibility/VisibilityConverter.php',
    182     'League\\Flysystem\\UnreadableFileEncountered' => $vendorDir . '/league/flysystem/src/UnreadableFileEncountered.php',
    183     'League\\Flysystem\\Visibility' => $vendorDir . '/league/flysystem/src/Visibility.php',
    184     'League\\Flysystem\\WhitespacePathNormalizer' => $vendorDir . '/league/flysystem/src/WhitespacePathNormalizer.php',
    185     'League\\MimeTypeDetection\\EmptyExtensionToMimeTypeMap' => $vendorDir . '/league/mime-type-detection/src/EmptyExtensionToMimeTypeMap.php',
    186     'League\\MimeTypeDetection\\ExtensionLookup' => $vendorDir . '/league/mime-type-detection/src/ExtensionLookup.php',
    187     'League\\MimeTypeDetection\\ExtensionMimeTypeDetector' => $vendorDir . '/league/mime-type-detection/src/ExtensionMimeTypeDetector.php',
    188     'League\\MimeTypeDetection\\ExtensionToMimeTypeMap' => $vendorDir . '/league/mime-type-detection/src/ExtensionToMimeTypeMap.php',
    189     'League\\MimeTypeDetection\\FinfoMimeTypeDetector' => $vendorDir . '/league/mime-type-detection/src/FinfoMimeTypeDetector.php',
    190     'League\\MimeTypeDetection\\GeneratedExtensionToMimeTypeMap' => $vendorDir . '/league/mime-type-detection/src/GeneratedExtensionToMimeTypeMap.php',
    191     'League\\MimeTypeDetection\\MimeTypeDetector' => $vendorDir . '/league/mime-type-detection/src/MimeTypeDetector.php',
    192     'League\\MimeTypeDetection\\OverridingExtensionToMimeTypeMap' => $vendorDir . '/league/mime-type-detection/src/OverridingExtensionToMimeTypeMap.php',
    193     'MatthiasMullie\\Scrapbook\\Adapters\\Apc' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Apc.php',
    194     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Apc' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Apc.php',
    195     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Couchbase' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Couchbase.php',
    196     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Flysystem' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Flysystem.php',
    197     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Memcached' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Memcached.php',
    198     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\MemoryStore' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/MemoryStore.php',
    199     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Redis' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Redis.php',
    200     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\SQL' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/SQL.php',
    201     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Utils\\PrefixKeys' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Utils/PrefixKeys.php',
    202     'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Utils\\PrefixReset' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Collections/Utils/PrefixReset.php',
    203     'MatthiasMullie\\Scrapbook\\Adapters\\Couchbase' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Couchbase.php',
    204     'MatthiasMullie\\Scrapbook\\Adapters\\Flysystem' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Flysystem.php',
    205     'MatthiasMullie\\Scrapbook\\Adapters\\Memcached' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Memcached.php',
    206     'MatthiasMullie\\Scrapbook\\Adapters\\MemoryStore' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/MemoryStore.php',
    207     'MatthiasMullie\\Scrapbook\\Adapters\\MySQL' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/MySQL.php',
    208     'MatthiasMullie\\Scrapbook\\Adapters\\PostgreSQL' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/PostgreSQL.php',
    209     'MatthiasMullie\\Scrapbook\\Adapters\\Redis' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/Redis.php',
    210     'MatthiasMullie\\Scrapbook\\Adapters\\SQL' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/SQL.php',
    211     'MatthiasMullie\\Scrapbook\\Adapters\\SQLite' => $vendorDir . '/matthiasmullie/scrapbook/src/Adapters/SQLite.php',
    212     'MatthiasMullie\\Scrapbook\\Buffered\\BufferedStore' => $vendorDir . '/matthiasmullie/scrapbook/src/Buffered/BufferedStore.php',
    213     'MatthiasMullie\\Scrapbook\\Buffered\\TransactionalStore' => $vendorDir . '/matthiasmullie/scrapbook/src/Buffered/TransactionalStore.php',
    214     'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\Buffer' => $vendorDir . '/matthiasmullie/scrapbook/src/Buffered/Utils/Buffer.php',
    215     'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\BufferCollection' => $vendorDir . '/matthiasmullie/scrapbook/src/Buffered/Utils/BufferCollection.php',
    216     'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\Defer' => $vendorDir . '/matthiasmullie/scrapbook/src/Buffered/Utils/Defer.php',
    217     'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\Transaction' => $vendorDir . '/matthiasmullie/scrapbook/src/Buffered/Utils/Transaction.php',
    218     'MatthiasMullie\\Scrapbook\\Exception\\Exception' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/Exception.php',
    219     'MatthiasMullie\\Scrapbook\\Exception\\InvalidCollection' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/InvalidCollection.php',
    220     'MatthiasMullie\\Scrapbook\\Exception\\InvalidKey' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/InvalidKey.php',
    221     'MatthiasMullie\\Scrapbook\\Exception\\OperationFailed' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/OperationFailed.php',
    222     'MatthiasMullie\\Scrapbook\\Exception\\ServerUnhealthy' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/ServerUnhealthy.php',
    223     'MatthiasMullie\\Scrapbook\\Exception\\UnbegunTransaction' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/UnbegunTransaction.php',
    224     'MatthiasMullie\\Scrapbook\\Exception\\UncommittedTransaction' => $vendorDir . '/matthiasmullie/scrapbook/src/Exception/UncommittedTransaction.php',
    225     'MatthiasMullie\\Scrapbook\\KeyValueStore' => $vendorDir . '/matthiasmullie/scrapbook/src/KeyValueStore.php',
    226     'MatthiasMullie\\Scrapbook\\Psr16\\InvalidArgumentException' => $vendorDir . '/matthiasmullie/scrapbook/src/Psr16/InvalidArgumentException.php',
    227     'MatthiasMullie\\Scrapbook\\Psr16\\SimpleCache' => $vendorDir . '/matthiasmullie/scrapbook/src/Psr16/SimpleCache.php',
    228     'MatthiasMullie\\Scrapbook\\Psr6\\InvalidArgumentException' => $vendorDir . '/matthiasmullie/scrapbook/src/Psr6/InvalidArgumentException.php',
    229     'MatthiasMullie\\Scrapbook\\Psr6\\Item' => $vendorDir . '/matthiasmullie/scrapbook/src/Psr6/Item.php',
    230     'MatthiasMullie\\Scrapbook\\Psr6\\Pool' => $vendorDir . '/matthiasmullie/scrapbook/src/Psr6/Pool.php',
    231     'MatthiasMullie\\Scrapbook\\Psr6\\Repository' => $vendorDir . '/matthiasmullie/scrapbook/src/Psr6/Repository.php',
    232     'MatthiasMullie\\Scrapbook\\Scale\\Shard' => $vendorDir . '/matthiasmullie/scrapbook/src/Scale/Shard.php',
    233     'MatthiasMullie\\Scrapbook\\Scale\\StampedeProtector' => $vendorDir . '/matthiasmullie/scrapbook/src/Scale/StampedeProtector.php',
    234     'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
    235     'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
    236     'Psr\\Cache\\CacheException' => $vendorDir . '/psr/cache/src/CacheException.php',
    237     'Psr\\Cache\\CacheItemInterface' => $vendorDir . '/psr/cache/src/CacheItemInterface.php',
    238     'Psr\\Cache\\CacheItemPoolInterface' => $vendorDir . '/psr/cache/src/CacheItemPoolInterface.php',
    239     'Psr\\Cache\\InvalidArgumentException' => $vendorDir . '/psr/cache/src/InvalidArgumentException.php',
    240     'Psr\\Container\\ContainerExceptionInterface' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php',
    241     'Psr\\Container\\ContainerInterface' => $vendorDir . '/psr/container/src/ContainerInterface.php',
    242     'Psr\\Container\\NotFoundExceptionInterface' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php',
    243     'Psr\\Http\\Client\\ClientExceptionInterface' => $vendorDir . '/psr/http-client/src/ClientExceptionInterface.php',
    244     'Psr\\Http\\Client\\ClientInterface' => $vendorDir . '/psr/http-client/src/ClientInterface.php',
    245     'Psr\\Http\\Client\\NetworkExceptionInterface' => $vendorDir . '/psr/http-client/src/NetworkExceptionInterface.php',
    246     'Psr\\Http\\Client\\RequestExceptionInterface' => $vendorDir . '/psr/http-client/src/RequestExceptionInterface.php',
    247     'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php',
    248     'Psr\\Http\\Message\\RequestFactoryInterface' => $vendorDir . '/psr/http-factory/src/RequestFactoryInterface.php',
    249     'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php',
    250     'Psr\\Http\\Message\\ResponseFactoryInterface' => $vendorDir . '/psr/http-factory/src/ResponseFactoryInterface.php',
    251     'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php',
    252     'Psr\\Http\\Message\\ServerRequestFactoryInterface' => $vendorDir . '/psr/http-factory/src/ServerRequestFactoryInterface.php',
    253     'Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php',
    254     'Psr\\Http\\Message\\StreamFactoryInterface' => $vendorDir . '/psr/http-factory/src/StreamFactoryInterface.php',
    255     'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php',
    256     'Psr\\Http\\Message\\UploadedFileFactoryInterface' => $vendorDir . '/psr/http-factory/src/UploadedFileFactoryInterface.php',
    257     'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php',
    258     'Psr\\Http\\Message\\UriFactoryInterface' => $vendorDir . '/psr/http-factory/src/UriFactoryInterface.php',
    259     'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php',
    260     'Psr\\Log\\AbstractLogger' => $vendorDir . '/psr/log/Psr/Log/AbstractLogger.php',
    261     'Psr\\Log\\InvalidArgumentException' => $vendorDir . '/psr/log/Psr/Log/InvalidArgumentException.php',
    262     'Psr\\Log\\LogLevel' => $vendorDir . '/psr/log/Psr/Log/LogLevel.php',
    263     'Psr\\Log\\LoggerAwareInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareInterface.php',
    264     'Psr\\Log\\LoggerAwareTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareTrait.php',
    265     'Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php',
    266     'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php',
    267     'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php',
    268     'Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/DummyTest.php',
    269     'Psr\\Log\\Test\\LoggerInterfaceTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
    270     'Psr\\Log\\Test\\TestLogger' => $vendorDir . '/psr/log/Psr/Log/Test/TestLogger.php',
    271     'Psr\\SimpleCache\\CacheException' => $vendorDir . '/psr/simple-cache/src/CacheException.php',
    272     'Psr\\SimpleCache\\CacheInterface' => $vendorDir . '/psr/simple-cache/src/CacheInterface.php',
    273     'Psr\\SimpleCache\\InvalidArgumentException' => $vendorDir . '/psr/simple-cache/src/InvalidArgumentException.php',
    274     'SlimStat\\Services\\Browscap' => $baseDir . '/src/Services/Browscap.php',
    275     'SlimStat\\Services\\GeoIP' => $baseDir . '/src/Services/GeoIP.php',
    276     'SlimStat\\Services\\GeoService' => $baseDir . '/src/Services/GeoService.php',
    277     'SlimStat\\Utils\\InvalidDatabaseException' => $baseDir . '/src/Utils/InvalidDatabaseException.php',
    278     'SlimStat\\Utils\\MaxMindDecoder' => $baseDir . '/src/Utils/MaxMindDecoder.php',
    279     'SlimStat\\Utils\\MaxMindMetadata' => $baseDir . '/src/Utils/MaxMindMetadata.php',
    280     'SlimStat\\Utils\\MaxMindReader' => $baseDir . '/src/Utils/MaxMindReader.php',
    281     'SlimStat\\Utils\\MaxMindUtil' => $baseDir . '/src/Utils/MaxMindUtil.php',
    282     'SlimStat\\Utils\\UADetector' => $baseDir . '/src/Utils/UADetector.php',
    283     'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
    284     'Symfony\\Component\\Console\\Application' => $vendorDir . '/symfony/console/Application.php',
    285     'Symfony\\Component\\Console\\Attribute\\AsCommand' => $vendorDir . '/symfony/console/Attribute/AsCommand.php',
    286     'Symfony\\Component\\Console\\CI\\GithubActionReporter' => $vendorDir . '/symfony/console/CI/GithubActionReporter.php',
    287     'Symfony\\Component\\Console\\Color' => $vendorDir . '/symfony/console/Color.php',
    288     'Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface' => $vendorDir . '/symfony/console/CommandLoader/CommandLoaderInterface.php',
    289     'Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader' => $vendorDir . '/symfony/console/CommandLoader/ContainerCommandLoader.php',
    290     'Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader' => $vendorDir . '/symfony/console/CommandLoader/FactoryCommandLoader.php',
    291     'Symfony\\Component\\Console\\Command\\Command' => $vendorDir . '/symfony/console/Command/Command.php',
    292     'Symfony\\Component\\Console\\Command\\CompleteCommand' => $vendorDir . '/symfony/console/Command/CompleteCommand.php',
    293     'Symfony\\Component\\Console\\Command\\DumpCompletionCommand' => $vendorDir . '/symfony/console/Command/DumpCompletionCommand.php',
    294     'Symfony\\Component\\Console\\Command\\HelpCommand' => $vendorDir . '/symfony/console/Command/HelpCommand.php',
    295     'Symfony\\Component\\Console\\Command\\LazyCommand' => $vendorDir . '/symfony/console/Command/LazyCommand.php',
    296     'Symfony\\Component\\Console\\Command\\ListCommand' => $vendorDir . '/symfony/console/Command/ListCommand.php',
    297     'Symfony\\Component\\Console\\Command\\LockableTrait' => $vendorDir . '/symfony/console/Command/LockableTrait.php',
    298     'Symfony\\Component\\Console\\Command\\SignalableCommandInterface' => $vendorDir . '/symfony/console/Command/SignalableCommandInterface.php',
    299     'Symfony\\Component\\Console\\Completion\\CompletionInput' => $vendorDir . '/symfony/console/Completion/CompletionInput.php',
    300     'Symfony\\Component\\Console\\Completion\\CompletionSuggestions' => $vendorDir . '/symfony/console/Completion/CompletionSuggestions.php',
    301     'Symfony\\Component\\Console\\Completion\\Output\\BashCompletionOutput' => $vendorDir . '/symfony/console/Completion/Output/BashCompletionOutput.php',
    302     'Symfony\\Component\\Console\\Completion\\Output\\CompletionOutputInterface' => $vendorDir . '/symfony/console/Completion/Output/CompletionOutputInterface.php',
    303     'Symfony\\Component\\Console\\Completion\\Suggestion' => $vendorDir . '/symfony/console/Completion/Suggestion.php',
    304     'Symfony\\Component\\Console\\ConsoleEvents' => $vendorDir . '/symfony/console/ConsoleEvents.php',
    305     'Symfony\\Component\\Console\\Cursor' => $vendorDir . '/symfony/console/Cursor.php',
    306     'Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass' => $vendorDir . '/symfony/console/DependencyInjection/AddConsoleCommandPass.php',
    307     'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => $vendorDir . '/symfony/console/Descriptor/ApplicationDescription.php',
    308     'Symfony\\Component\\Console\\Descriptor\\Descriptor' => $vendorDir . '/symfony/console/Descriptor/Descriptor.php',
    309     'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => $vendorDir . '/symfony/console/Descriptor/DescriptorInterface.php',
    310     'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => $vendorDir . '/symfony/console/Descriptor/JsonDescriptor.php',
    311     'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => $vendorDir . '/symfony/console/Descriptor/MarkdownDescriptor.php',
    312     'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => $vendorDir . '/symfony/console/Descriptor/TextDescriptor.php',
    313     'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => $vendorDir . '/symfony/console/Descriptor/XmlDescriptor.php',
    314     'Symfony\\Component\\Console\\EventListener\\ErrorListener' => $vendorDir . '/symfony/console/EventListener/ErrorListener.php',
    315     'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => $vendorDir . '/symfony/console/Event/ConsoleCommandEvent.php',
    316     'Symfony\\Component\\Console\\Event\\ConsoleErrorEvent' => $vendorDir . '/symfony/console/Event/ConsoleErrorEvent.php',
    317     'Symfony\\Component\\Console\\Event\\ConsoleEvent' => $vendorDir . '/symfony/console/Event/ConsoleEvent.php',
    318     'Symfony\\Component\\Console\\Event\\ConsoleSignalEvent' => $vendorDir . '/symfony/console/Event/ConsoleSignalEvent.php',
    319     'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => $vendorDir . '/symfony/console/Event/ConsoleTerminateEvent.php',
    320     'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => $vendorDir . '/symfony/console/Exception/CommandNotFoundException.php',
    321     'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/console/Exception/ExceptionInterface.php',
    322     'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/console/Exception/InvalidArgumentException.php',
    323     'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => $vendorDir . '/symfony/console/Exception/InvalidOptionException.php',
    324     'Symfony\\Component\\Console\\Exception\\LogicException' => $vendorDir . '/symfony/console/Exception/LogicException.php',
    325     'Symfony\\Component\\Console\\Exception\\MissingInputException' => $vendorDir . '/symfony/console/Exception/MissingInputException.php',
    326     'Symfony\\Component\\Console\\Exception\\NamespaceNotFoundException' => $vendorDir . '/symfony/console/Exception/NamespaceNotFoundException.php',
    327     'Symfony\\Component\\Console\\Exception\\RuntimeException' => $vendorDir . '/symfony/console/Exception/RuntimeException.php',
    328     'Symfony\\Component\\Console\\Formatter\\NullOutputFormatter' => $vendorDir . '/symfony/console/Formatter/NullOutputFormatter.php',
    329     'Symfony\\Component\\Console\\Formatter\\NullOutputFormatterStyle' => $vendorDir . '/symfony/console/Formatter/NullOutputFormatterStyle.php',
    330     'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => $vendorDir . '/symfony/console/Formatter/OutputFormatter.php',
    331     'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterInterface.php',
    332     'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyle.php',
    333     'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleInterface.php',
    334     'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleStack.php',
    335     'Symfony\\Component\\Console\\Formatter\\WrappableOutputFormatterInterface' => $vendorDir . '/symfony/console/Formatter/WrappableOutputFormatterInterface.php',
    336     'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => $vendorDir . '/symfony/console/Helper/DebugFormatterHelper.php',
    337     'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => $vendorDir . '/symfony/console/Helper/DescriptorHelper.php',
    338     'Symfony\\Component\\Console\\Helper\\Dumper' => $vendorDir . '/symfony/console/Helper/Dumper.php',
    339     'Symfony\\Component\\Console\\Helper\\FormatterHelper' => $vendorDir . '/symfony/console/Helper/FormatterHelper.php',
    340     'Symfony\\Component\\Console\\Helper\\Helper' => $vendorDir . '/symfony/console/Helper/Helper.php',
    341     'Symfony\\Component\\Console\\Helper\\HelperInterface' => $vendorDir . '/symfony/console/Helper/HelperInterface.php',
    342     'Symfony\\Component\\Console\\Helper\\HelperSet' => $vendorDir . '/symfony/console/Helper/HelperSet.php',
    343     'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => $vendorDir . '/symfony/console/Helper/InputAwareHelper.php',
    344     'Symfony\\Component\\Console\\Helper\\ProcessHelper' => $vendorDir . '/symfony/console/Helper/ProcessHelper.php',
    345     'Symfony\\Component\\Console\\Helper\\ProgressBar' => $vendorDir . '/symfony/console/Helper/ProgressBar.php',
    346     'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => $vendorDir . '/symfony/console/Helper/ProgressIndicator.php',
    347     'Symfony\\Component\\Console\\Helper\\QuestionHelper' => $vendorDir . '/symfony/console/Helper/QuestionHelper.php',
    348     'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => $vendorDir . '/symfony/console/Helper/SymfonyQuestionHelper.php',
    349     'Symfony\\Component\\Console\\Helper\\Table' => $vendorDir . '/symfony/console/Helper/Table.php',
    350     'Symfony\\Component\\Console\\Helper\\TableCell' => $vendorDir . '/symfony/console/Helper/TableCell.php',
    351     'Symfony\\Component\\Console\\Helper\\TableCellStyle' => $vendorDir . '/symfony/console/Helper/TableCellStyle.php',
    352     'Symfony\\Component\\Console\\Helper\\TableRows' => $vendorDir . '/symfony/console/Helper/TableRows.php',
    353     'Symfony\\Component\\Console\\Helper\\TableSeparator' => $vendorDir . '/symfony/console/Helper/TableSeparator.php',
    354     'Symfony\\Component\\Console\\Helper\\TableStyle' => $vendorDir . '/symfony/console/Helper/TableStyle.php',
    355     'Symfony\\Component\\Console\\Input\\ArgvInput' => $vendorDir . '/symfony/console/Input/ArgvInput.php',
    356     'Symfony\\Component\\Console\\Input\\ArrayInput' => $vendorDir . '/symfony/console/Input/ArrayInput.php',
    357     'Symfony\\Component\\Console\\Input\\Input' => $vendorDir . '/symfony/console/Input/Input.php',
    358     'Symfony\\Component\\Console\\Input\\InputArgument' => $vendorDir . '/symfony/console/Input/InputArgument.php',
    359     'Symfony\\Component\\Console\\Input\\InputAwareInterface' => $vendorDir . '/symfony/console/Input/InputAwareInterface.php',
    360     'Symfony\\Component\\Console\\Input\\InputDefinition' => $vendorDir . '/symfony/console/Input/InputDefinition.php',
    361     'Symfony\\Component\\Console\\Input\\InputInterface' => $vendorDir . '/symfony/console/Input/InputInterface.php',
    362     'Symfony\\Component\\Console\\Input\\InputOption' => $vendorDir . '/symfony/console/Input/InputOption.php',
    363     'Symfony\\Component\\Console\\Input\\StreamableInputInterface' => $vendorDir . '/symfony/console/Input/StreamableInputInterface.php',
    364     'Symfony\\Component\\Console\\Input\\StringInput' => $vendorDir . '/symfony/console/Input/StringInput.php',
    365     'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => $vendorDir . '/symfony/console/Logger/ConsoleLogger.php',
    366     'Symfony\\Component\\Console\\Output\\BufferedOutput' => $vendorDir . '/symfony/console/Output/BufferedOutput.php',
    367     'Symfony\\Component\\Console\\Output\\ConsoleOutput' => $vendorDir . '/symfony/console/Output/ConsoleOutput.php',
    368     'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => $vendorDir . '/symfony/console/Output/ConsoleOutputInterface.php',
    369     'Symfony\\Component\\Console\\Output\\ConsoleSectionOutput' => $vendorDir . '/symfony/console/Output/ConsoleSectionOutput.php',
    370     'Symfony\\Component\\Console\\Output\\NullOutput' => $vendorDir . '/symfony/console/Output/NullOutput.php',
    371     'Symfony\\Component\\Console\\Output\\Output' => $vendorDir . '/symfony/console/Output/Output.php',
    372     'Symfony\\Component\\Console\\Output\\OutputInterface' => $vendorDir . '/symfony/console/Output/OutputInterface.php',
    373     'Symfony\\Component\\Console\\Output\\StreamOutput' => $vendorDir . '/symfony/console/Output/StreamOutput.php',
    374     'Symfony\\Component\\Console\\Output\\TrimmedBufferOutput' => $vendorDir . '/symfony/console/Output/TrimmedBufferOutput.php',
    375     'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => $vendorDir . '/symfony/console/Question/ChoiceQuestion.php',
    376     'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => $vendorDir . '/symfony/console/Question/ConfirmationQuestion.php',
    377     'Symfony\\Component\\Console\\Question\\Question' => $vendorDir . '/symfony/console/Question/Question.php',
    378     'Symfony\\Component\\Console\\SignalRegistry\\SignalRegistry' => $vendorDir . '/symfony/console/SignalRegistry/SignalRegistry.php',
    379     'Symfony\\Component\\Console\\SingleCommandApplication' => $vendorDir . '/symfony/console/SingleCommandApplication.php',
    380     'Symfony\\Component\\Console\\Style\\OutputStyle' => $vendorDir . '/symfony/console/Style/OutputStyle.php',
    381     'Symfony\\Component\\Console\\Style\\StyleInterface' => $vendorDir . '/symfony/console/Style/StyleInterface.php',
    382     'Symfony\\Component\\Console\\Style\\SymfonyStyle' => $vendorDir . '/symfony/console/Style/SymfonyStyle.php',
    383     'Symfony\\Component\\Console\\Terminal' => $vendorDir . '/symfony/console/Terminal.php',
    384     'Symfony\\Component\\Console\\Tester\\ApplicationTester' => $vendorDir . '/symfony/console/Tester/ApplicationTester.php',
    385     'Symfony\\Component\\Console\\Tester\\CommandCompletionTester' => $vendorDir . '/symfony/console/Tester/CommandCompletionTester.php',
    386     'Symfony\\Component\\Console\\Tester\\CommandTester' => $vendorDir . '/symfony/console/Tester/CommandTester.php',
    387     'Symfony\\Component\\Console\\Tester\\Constraint\\CommandIsSuccessful' => $vendorDir . '/symfony/console/Tester/Constraint/CommandIsSuccessful.php',
    388     'Symfony\\Component\\Console\\Tester\\TesterTrait' => $vendorDir . '/symfony/console/Tester/TesterTrait.php',
    389     'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/ExceptionInterface.php',
    390     'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => $vendorDir . '/symfony/filesystem/Exception/FileNotFoundException.php',
    391     'Symfony\\Component\\Filesystem\\Exception\\IOException' => $vendorDir . '/symfony/filesystem/Exception/IOException.php',
    392     'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/IOExceptionInterface.php',
    393     'Symfony\\Component\\Filesystem\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/filesystem/Exception/InvalidArgumentException.php',
    394     'Symfony\\Component\\Filesystem\\Exception\\RuntimeException' => $vendorDir . '/symfony/filesystem/Exception/RuntimeException.php',
    395     'Symfony\\Component\\Filesystem\\Filesystem' => $vendorDir . '/symfony/filesystem/Filesystem.php',
    396     'Symfony\\Component\\Filesystem\\Path' => $vendorDir . '/symfony/filesystem/Path.php',
    397     'Symfony\\Component\\String\\AbstractString' => $vendorDir . '/symfony/string/AbstractString.php',
    398     'Symfony\\Component\\String\\AbstractUnicodeString' => $vendorDir . '/symfony/string/AbstractUnicodeString.php',
    399     'Symfony\\Component\\String\\ByteString' => $vendorDir . '/symfony/string/ByteString.php',
    400     'Symfony\\Component\\String\\CodePointString' => $vendorDir . '/symfony/string/CodePointString.php',
    401     'Symfony\\Component\\String\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/string/Exception/ExceptionInterface.php',
    402     'Symfony\\Component\\String\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/string/Exception/InvalidArgumentException.php',
    403     'Symfony\\Component\\String\\Exception\\RuntimeException' => $vendorDir . '/symfony/string/Exception/RuntimeException.php',
    404     'Symfony\\Component\\String\\Inflector\\EnglishInflector' => $vendorDir . '/symfony/string/Inflector/EnglishInflector.php',
    405     'Symfony\\Component\\String\\Inflector\\FrenchInflector' => $vendorDir . '/symfony/string/Inflector/FrenchInflector.php',
    406     'Symfony\\Component\\String\\Inflector\\InflectorInterface' => $vendorDir . '/symfony/string/Inflector/InflectorInterface.php',
    407     'Symfony\\Component\\String\\LazyString' => $vendorDir . '/symfony/string/LazyString.php',
    408     'Symfony\\Component\\String\\Slugger\\AsciiSlugger' => $vendorDir . '/symfony/string/Slugger/AsciiSlugger.php',
    409     'Symfony\\Component\\String\\Slugger\\SluggerInterface' => $vendorDir . '/symfony/string/Slugger/SluggerInterface.php',
    410     'Symfony\\Component\\String\\UnicodeString' => $vendorDir . '/symfony/string/UnicodeString.php',
    411     'Symfony\\Contracts\\Service\\Attribute\\Required' => $vendorDir . '/symfony/service-contracts/Attribute/Required.php',
    412     'Symfony\\Contracts\\Service\\Attribute\\SubscribedService' => $vendorDir . '/symfony/service-contracts/Attribute/SubscribedService.php',
    413     'Symfony\\Contracts\\Service\\ResetInterface' => $vendorDir . '/symfony/service-contracts/ResetInterface.php',
    414     'Symfony\\Contracts\\Service\\ServiceCollectionInterface' => $vendorDir . '/symfony/service-contracts/ServiceCollectionInterface.php',
    415     'Symfony\\Contracts\\Service\\ServiceLocatorTrait' => $vendorDir . '/symfony/service-contracts/ServiceLocatorTrait.php',
    416     'Symfony\\Contracts\\Service\\ServiceMethodsSubscriberTrait' => $vendorDir . '/symfony/service-contracts/ServiceMethodsSubscriberTrait.php',
    417     'Symfony\\Contracts\\Service\\ServiceProviderInterface' => $vendorDir . '/symfony/service-contracts/ServiceProviderInterface.php',
    418     'Symfony\\Contracts\\Service\\ServiceSubscriberInterface' => $vendorDir . '/symfony/service-contracts/ServiceSubscriberInterface.php',
    419     'Symfony\\Contracts\\Service\\ServiceSubscriberTrait' => $vendorDir . '/symfony/service-contracts/ServiceSubscriberTrait.php',
    420     'Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php',
    421     'Symfony\\Polyfill\\Intl\\Grapheme\\Grapheme' => $vendorDir . '/symfony/polyfill-intl-grapheme/Grapheme.php',
    422     'Symfony\\Polyfill\\Intl\\Normalizer\\Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Normalizer.php',
    423     'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php',
    424     'Symfony\\Polyfill\\Php73\\Php73' => $vendorDir . '/symfony/polyfill-php73/Php73.php',
    425     'Symfony\\Polyfill\\Php80\\Php80' => $vendorDir . '/symfony/polyfill-php80/Php80.php',
    426     'Symfony\\Polyfill\\Php80\\PhpToken' => $vendorDir . '/symfony/polyfill-php80/PhpToken.php',
    427     'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
    428     'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
    42910);
  • wp-slimstat/trunk/vendor/composer/autoload_files.php

    r3099788 r3131121  
    77
    88return array(
     9    '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
    910    '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
    10     '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
    11     '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
    12     'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
    13     '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
    14     '8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
    15     'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
    16     '0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
    17     'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php',
    18     '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
    1911);
  • wp-slimstat/trunk/vendor/composer/autoload_psr4.php

    r3108230 r3131121  
    77
    88return array(
    9     'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'),
    10     'Symfony\\Polyfill\\Php73\\' => array($vendorDir . '/symfony/polyfill-php73'),
    11     'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
    12     'Symfony\\Polyfill\\Intl\\Normalizer\\' => array($vendorDir . '/symfony/polyfill-intl-normalizer'),
    13     'Symfony\\Polyfill\\Intl\\Grapheme\\' => array($vendorDir . '/symfony/polyfill-intl-grapheme'),
    14     'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
    15     'Symfony\\Contracts\\Service\\' => array($vendorDir . '/symfony/service-contracts'),
    16     'Symfony\\Component\\String\\' => array($vendorDir . '/symfony/string'),
    17     'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'),
    18     'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
    199    'SlimStat\\' => array($baseDir . '/src'),
    20     'Psr\\SimpleCache\\' => array($vendorDir . '/psr/simple-cache/src'),
    21     'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
    22     'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-factory/src', $vendorDir . '/psr/http-message/src'),
    23     'Psr\\Http\\Client\\' => array($vendorDir . '/psr/http-client/src'),
    24     'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
    25     'Psr\\Cache\\' => array($vendorDir . '/psr/cache/src'),
    26     'MatthiasMullie\\Scrapbook\\' => array($vendorDir . '/matthiasmullie/scrapbook/src'),
    27     'League\\MimeTypeDetection\\' => array($vendorDir . '/league/mime-type-detection/src'),
    28     'League\\Flysystem\\' => array($vendorDir . '/league/flysystem/src'),
    29     'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
    30     'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'),
    31     'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'),
    32     'BrowscapPHP\\' => array($vendorDir . '/veronalabs/browscap-php/src'),
    3310);
  • wp-slimstat/trunk/vendor/composer/autoload_real.php

    r3108230 r3131121  
    3030        call_user_func(\Composer\Autoload\ComposerStaticInit09c8e0e0cfea3b2fb368cb99a2eeaaec::getInitializer($loader));
    3131
    32         $loader->setClassMapAuthoritative(true);
    3332        $loader->register(true);
    3433
  • wp-slimstat/trunk/vendor/composer/autoload_static.php

    r3108230 r3131121  
    88{
    99    public static $files = array (
     10        '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
    1011        '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
    11         '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
    12         '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
    13         'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
    14         '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
    15         '8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
    16         'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
    17         '0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
    18         'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
    19         '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
    2012    );
    2113
     
    2315        'S' =>
    2416        array (
    25             'Symfony\\Polyfill\\Php80\\' => 23,
    26             'Symfony\\Polyfill\\Php73\\' => 23,
    27             'Symfony\\Polyfill\\Mbstring\\' => 26,
    28             'Symfony\\Polyfill\\Intl\\Normalizer\\' => 33,
    29             'Symfony\\Polyfill\\Intl\\Grapheme\\' => 31,
    30             'Symfony\\Polyfill\\Ctype\\' => 23,
    31             'Symfony\\Contracts\\Service\\' => 26,
    32             'Symfony\\Component\\String\\' => 25,
    33             'Symfony\\Component\\Filesystem\\' => 29,
    34             'Symfony\\Component\\Console\\' => 26,
    3517            'SlimStat\\' => 9,
    36         ),
    37         'P' =>
    38         array (
    39             'Psr\\SimpleCache\\' => 16,
    40             'Psr\\Log\\' => 8,
    41             'Psr\\Http\\Message\\' => 17,
    42             'Psr\\Http\\Client\\' => 16,
    43             'Psr\\Container\\' => 14,
    44             'Psr\\Cache\\' => 10,
    45         ),
    46         'M' =>
    47         array (
    48             'MatthiasMullie\\Scrapbook\\' => 25,
    49         ),
    50         'L' =>
    51         array (
    52             'League\\MimeTypeDetection\\' => 25,
    53             'League\\Flysystem\\' => 17,
    54         ),
    55         'G' =>
    56         array (
    57             'GuzzleHttp\\Psr7\\' => 16,
    58             'GuzzleHttp\\Promise\\' => 19,
    59             'GuzzleHttp\\' => 11,
    60         ),
    61         'B' =>
    62         array (
    63             'BrowscapPHP\\' => 12,
    6418        ),
    6519    );
    6620
    6721    public static $prefixDirsPsr4 = array (
    68         'Symfony\\Polyfill\\Php80\\' =>
    69         array (
    70             0 => __DIR__ . '/..' . '/symfony/polyfill-php80',
    71         ),
    72         'Symfony\\Polyfill\\Php73\\' =>
    73         array (
    74             0 => __DIR__ . '/..' . '/symfony/polyfill-php73',
    75         ),
    76         'Symfony\\Polyfill\\Mbstring\\' =>
    77         array (
    78             0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
    79         ),
    80         'Symfony\\Polyfill\\Intl\\Normalizer\\' =>
    81         array (
    82             0 => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer',
    83         ),
    84         'Symfony\\Polyfill\\Intl\\Grapheme\\' =>
    85         array (
    86             0 => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme',
    87         ),
    88         'Symfony\\Polyfill\\Ctype\\' =>
    89         array (
    90             0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
    91         ),
    92         'Symfony\\Contracts\\Service\\' =>
    93         array (
    94             0 => __DIR__ . '/..' . '/symfony/service-contracts',
    95         ),
    96         'Symfony\\Component\\String\\' =>
    97         array (
    98             0 => __DIR__ . '/..' . '/symfony/string',
    99         ),
    100         'Symfony\\Component\\Filesystem\\' =>
    101         array (
    102             0 => __DIR__ . '/..' . '/symfony/filesystem',
    103         ),
    104         'Symfony\\Component\\Console\\' =>
    105         array (
    106             0 => __DIR__ . '/..' . '/symfony/console',
    107         ),
    10822        'SlimStat\\' =>
    10923        array (
    11024            0 => __DIR__ . '/../..' . '/src',
    11125        ),
    112         'Psr\\SimpleCache\\' =>
    113         array (
    114             0 => __DIR__ . '/..' . '/psr/simple-cache/src',
    115         ),
    116         'Psr\\Log\\' =>
    117         array (
    118             0 => __DIR__ . '/..' . '/psr/log/Psr/Log',
    119         ),
    120         'Psr\\Http\\Message\\' =>
    121         array (
    122             0 => __DIR__ . '/..' . '/psr/http-factory/src',
    123             1 => __DIR__ . '/..' . '/psr/http-message/src',
    124         ),
    125         'Psr\\Http\\Client\\' =>
    126         array (
    127             0 => __DIR__ . '/..' . '/psr/http-client/src',
    128         ),
    129         'Psr\\Container\\' =>
    130         array (
    131             0 => __DIR__ . '/..' . '/psr/container/src',
    132         ),
    133         'Psr\\Cache\\' =>
    134         array (
    135             0 => __DIR__ . '/..' . '/psr/cache/src',
    136         ),
    137         'MatthiasMullie\\Scrapbook\\' =>
    138         array (
    139             0 => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src',
    140         ),
    141         'League\\MimeTypeDetection\\' =>
    142         array (
    143             0 => __DIR__ . '/..' . '/league/mime-type-detection/src',
    144         ),
    145         'League\\Flysystem\\' =>
    146         array (
    147             0 => __DIR__ . '/..' . '/league/flysystem/src',
    148         ),
    149         'GuzzleHttp\\Psr7\\' =>
    150         array (
    151             0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src',
    152         ),
    153         'GuzzleHttp\\Promise\\' =>
    154         array (
    155             0 => __DIR__ . '/..' . '/guzzlehttp/promises/src',
    156         ),
    157         'GuzzleHttp\\' =>
    158         array (
    159             0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src',
    160         ),
    161         'BrowscapPHP\\' =>
    162         array (
    163             0 => __DIR__ . '/..' . '/veronalabs/browscap-php/src',
    164         ),
    16526    );
    16627
    16728    public static $classMap = array (
    168         'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
    169         'BrowscapPHP\\Browscap' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Browscap.php',
    170         'BrowscapPHP\\BrowscapInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/BrowscapInterface.php',
    171         'BrowscapPHP\\BrowscapUpdater' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/BrowscapUpdater.php',
    172         'BrowscapPHP\\BrowscapUpdaterInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/BrowscapUpdaterInterface.php',
    173         'BrowscapPHP\\Cache\\BrowscapCache' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Cache/BrowscapCache.php',
    174         'BrowscapPHP\\Cache\\BrowscapCacheInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Cache/BrowscapCacheInterface.php',
    175         'BrowscapPHP\\Command\\CheckUpdateCommand' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Command/CheckUpdateCommand.php',
    176         'BrowscapPHP\\Command\\ConvertCommand' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Command/ConvertCommand.php',
    177         'BrowscapPHP\\Command\\FetchCommand' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Command/FetchCommand.php',
    178         'BrowscapPHP\\Command\\ParserCommand' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Command/ParserCommand.php',
    179         'BrowscapPHP\\Command\\UpdateCommand' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Command/UpdateCommand.php',
    180         'BrowscapPHP\\Data\\PropertyFormatter' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Data/PropertyFormatter.php',
    181         'BrowscapPHP\\Data\\PropertyHolder' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Data/PropertyHolder.php',
    182         'BrowscapPHP\\Exception' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception.php',
    183         'BrowscapPHP\\Exception\\DomainException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/DomainException.php',
    184         'BrowscapPHP\\Exception\\ErrorCachedVersionException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/ErrorCachedVersionException.php',
    185         'BrowscapPHP\\Exception\\ErrorReadingFileException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/ErrorReadingFileException.php',
    186         'BrowscapPHP\\Exception\\FetcherException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/FetcherException.php',
    187         'BrowscapPHP\\Exception\\FileNameMissingException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/FileNameMissingException.php',
    188         'BrowscapPHP\\Exception\\FileNotFoundException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/FileNotFoundException.php',
    189         'BrowscapPHP\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/InvalidArgumentException.php',
    190         'BrowscapPHP\\Exception\\NoCachedVersionException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/NoCachedVersionException.php',
    191         'BrowscapPHP\\Exception\\NoNewVersionException' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Exception/NoNewVersionException.php',
    192         'BrowscapPHP\\Formatter\\FormatterInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Formatter/FormatterInterface.php',
    193         'BrowscapPHP\\Formatter\\LegacyFormatter' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Formatter/LegacyFormatter.php',
    194         'BrowscapPHP\\Formatter\\PhpGetBrowser' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Formatter/PhpGetBrowser.php',
    195         'BrowscapPHP\\Helper\\Converter' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/Converter.php',
    196         'BrowscapPHP\\Helper\\ConverterInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/ConverterInterface.php',
    197         'BrowscapPHP\\Helper\\Exception' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/Exception.php',
    198         'BrowscapPHP\\Helper\\Filesystem' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/Filesystem.php',
    199         'BrowscapPHP\\Helper\\IniLoader' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/IniLoader.php',
    200         'BrowscapPHP\\Helper\\IniLoaderInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/IniLoaderInterface.php',
    201         'BrowscapPHP\\Helper\\LoggerHelper' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/LoggerHelper.php',
    202         'BrowscapPHP\\Helper\\Quoter' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/Quoter.php',
    203         'BrowscapPHP\\Helper\\QuoterInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/QuoterInterface.php',
    204         'BrowscapPHP\\Helper\\Support' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/Support.php',
    205         'BrowscapPHP\\Helper\\SupportInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Helper/SupportInterface.php',
    206         'BrowscapPHP\\IniParser\\IniParser' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/IniParser/IniParser.php',
    207         'BrowscapPHP\\IniParser\\ParserInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/IniParser/ParserInterface.php',
    208         'BrowscapPHP\\Parser\\Helper\\GetData' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Helper/GetData.php',
    209         'BrowscapPHP\\Parser\\Helper\\GetDataInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Helper/GetDataInterface.php',
    210         'BrowscapPHP\\Parser\\Helper\\GetPattern' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Helper/GetPattern.php',
    211         'BrowscapPHP\\Parser\\Helper\\GetPatternInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Helper/GetPatternInterface.php',
    212         'BrowscapPHP\\Parser\\Helper\\Pattern' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Helper/Pattern.php',
    213         'BrowscapPHP\\Parser\\Helper\\SubKey' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Helper/SubKey.php',
    214         'BrowscapPHP\\Parser\\Ini' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/Ini.php',
    215         'BrowscapPHP\\Parser\\ParserInterface' => __DIR__ . '/..' . '/veronalabs/browscap-php/src/Parser/ParserInterface.php',
    21629        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    217         'GuzzleHttp\\BodySummarizer' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/BodySummarizer.php',
    218         'GuzzleHttp\\BodySummarizerInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/BodySummarizerInterface.php',
    219         'GuzzleHttp\\Client' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Client.php',
    220         'GuzzleHttp\\ClientInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientInterface.php',
    221         'GuzzleHttp\\ClientTrait' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientTrait.php',
    222         'GuzzleHttp\\Cookie\\CookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
    223         'GuzzleHttp\\Cookie\\CookieJarInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',
    224         'GuzzleHttp\\Cookie\\FileCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',
    225         'GuzzleHttp\\Cookie\\SessionCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',
    226         'GuzzleHttp\\Cookie\\SetCookie' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php',
    227         'GuzzleHttp\\Exception\\BadResponseException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php',
    228         'GuzzleHttp\\Exception\\ClientException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ClientException.php',
    229         'GuzzleHttp\\Exception\\ConnectException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ConnectException.php',
    230         'GuzzleHttp\\Exception\\GuzzleException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php',
    231         'GuzzleHttp\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',
    232         'GuzzleHttp\\Exception\\RequestException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/RequestException.php',
    233         'GuzzleHttp\\Exception\\ServerException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ServerException.php',
    234         'GuzzleHttp\\Exception\\TooManyRedirectsException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',
    235         'GuzzleHttp\\Exception\\TransferException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TransferException.php',
    236         'GuzzleHttp\\HandlerStack' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/HandlerStack.php',
    237         'GuzzleHttp\\Handler\\CurlFactory' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php',
    238         'GuzzleHttp\\Handler\\CurlFactoryInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',
    239         'GuzzleHttp\\Handler\\CurlHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php',
    240         'GuzzleHttp\\Handler\\CurlMultiHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',
    241         'GuzzleHttp\\Handler\\EasyHandle' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php',
    242         'GuzzleHttp\\Handler\\HeaderProcessor' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php',
    243         'GuzzleHttp\\Handler\\MockHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/MockHandler.php',
    244         'GuzzleHttp\\Handler\\Proxy' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/Proxy.php',
    245         'GuzzleHttp\\Handler\\StreamHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php',
    246         'GuzzleHttp\\MessageFormatter' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/MessageFormatter.php',
    247         'GuzzleHttp\\MessageFormatterInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/MessageFormatterInterface.php',
    248         'GuzzleHttp\\Middleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Middleware.php',
    249         'GuzzleHttp\\Pool' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Pool.php',
    250         'GuzzleHttp\\PrepareBodyMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',
    251         'GuzzleHttp\\Promise\\AggregateException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/AggregateException.php',
    252         'GuzzleHttp\\Promise\\CancellationException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/CancellationException.php',
    253         'GuzzleHttp\\Promise\\Coroutine' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Coroutine.php',
    254         'GuzzleHttp\\Promise\\Create' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Create.php',
    255         'GuzzleHttp\\Promise\\Each' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Each.php',
    256         'GuzzleHttp\\Promise\\EachPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/EachPromise.php',
    257         'GuzzleHttp\\Promise\\FulfilledPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/FulfilledPromise.php',
    258         'GuzzleHttp\\Promise\\Is' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Is.php',
    259         'GuzzleHttp\\Promise\\Promise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Promise.php',
    260         'GuzzleHttp\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromiseInterface.php',
    261         'GuzzleHttp\\Promise\\PromisorInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromisorInterface.php',
    262         'GuzzleHttp\\Promise\\RejectedPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectedPromise.php',
    263         'GuzzleHttp\\Promise\\RejectionException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectionException.php',
    264         'GuzzleHttp\\Promise\\TaskQueue' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueue.php',
    265         'GuzzleHttp\\Promise\\TaskQueueInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueueInterface.php',
    266         'GuzzleHttp\\Promise\\Utils' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Utils.php',
    267         'GuzzleHttp\\Psr7\\AppendStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/AppendStream.php',
    268         'GuzzleHttp\\Psr7\\BufferStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/BufferStream.php',
    269         'GuzzleHttp\\Psr7\\CachingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/CachingStream.php',
    270         'GuzzleHttp\\Psr7\\DroppingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/DroppingStream.php',
    271         'GuzzleHttp\\Psr7\\Exception\\MalformedUriException' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Exception/MalformedUriException.php',
    272         'GuzzleHttp\\Psr7\\FnStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/FnStream.php',
    273         'GuzzleHttp\\Psr7\\Header' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Header.php',
    274         'GuzzleHttp\\Psr7\\HttpFactory' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/HttpFactory.php',
    275         'GuzzleHttp\\Psr7\\InflateStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/InflateStream.php',
    276         'GuzzleHttp\\Psr7\\LazyOpenStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LazyOpenStream.php',
    277         'GuzzleHttp\\Psr7\\LimitStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LimitStream.php',
    278         'GuzzleHttp\\Psr7\\Message' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Message.php',
    279         'GuzzleHttp\\Psr7\\MessageTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MessageTrait.php',
    280         'GuzzleHttp\\Psr7\\MimeType' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MimeType.php',
    281         'GuzzleHttp\\Psr7\\MultipartStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MultipartStream.php',
    282         'GuzzleHttp\\Psr7\\NoSeekStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/NoSeekStream.php',
    283         'GuzzleHttp\\Psr7\\PumpStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/PumpStream.php',
    284         'GuzzleHttp\\Psr7\\Query' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Query.php',
    285         'GuzzleHttp\\Psr7\\Request' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Request.php',
    286         'GuzzleHttp\\Psr7\\Response' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Response.php',
    287         'GuzzleHttp\\Psr7\\Rfc7230' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Rfc7230.php',
    288         'GuzzleHttp\\Psr7\\ServerRequest' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/ServerRequest.php',
    289         'GuzzleHttp\\Psr7\\Stream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Stream.php',
    290         'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
    291         'GuzzleHttp\\Psr7\\StreamWrapper' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamWrapper.php',
    292         'GuzzleHttp\\Psr7\\UploadedFile' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UploadedFile.php',
    293         'GuzzleHttp\\Psr7\\Uri' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Uri.php',
    294         'GuzzleHttp\\Psr7\\UriComparator' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriComparator.php',
    295         'GuzzleHttp\\Psr7\\UriNormalizer' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriNormalizer.php',
    296         'GuzzleHttp\\Psr7\\UriResolver' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriResolver.php',
    297         'GuzzleHttp\\Psr7\\Utils' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Utils.php',
    298         'GuzzleHttp\\RedirectMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
    299         'GuzzleHttp\\RequestOptions' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RequestOptions.php',
    300         'GuzzleHttp\\RetryMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
    301         'GuzzleHttp\\TransferStats' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/TransferStats.php',
    302         'GuzzleHttp\\Utils' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Utils.php',
    303         'JsonException' => __DIR__ . '/..' . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
    304         'League\\Flysystem\\Config' => __DIR__ . '/..' . '/league/flysystem/src/Config.php',
    305         'League\\Flysystem\\CorruptedPathDetected' => __DIR__ . '/..' . '/league/flysystem/src/CorruptedPathDetected.php',
    306         'League\\Flysystem\\DirectoryAttributes' => __DIR__ . '/..' . '/league/flysystem/src/DirectoryAttributes.php',
    307         'League\\Flysystem\\DirectoryListing' => __DIR__ . '/..' . '/league/flysystem/src/DirectoryListing.php',
    308         'League\\Flysystem\\FileAttributes' => __DIR__ . '/..' . '/league/flysystem/src/FileAttributes.php',
    309         'League\\Flysystem\\Filesystem' => __DIR__ . '/..' . '/league/flysystem/src/Filesystem.php',
    310         'League\\Flysystem\\FilesystemAdapter' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemAdapter.php',
    311         'League\\Flysystem\\FilesystemException' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemException.php',
    312         'League\\Flysystem\\FilesystemOperationFailed' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemOperationFailed.php',
    313         'League\\Flysystem\\FilesystemOperator' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemOperator.php',
    314         'League\\Flysystem\\FilesystemReader' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemReader.php',
    315         'League\\Flysystem\\FilesystemWriter' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemWriter.php',
    316         'League\\Flysystem\\InvalidStreamProvided' => __DIR__ . '/..' . '/league/flysystem/src/InvalidStreamProvided.php',
    317         'League\\Flysystem\\InvalidVisibilityProvided' => __DIR__ . '/..' . '/league/flysystem/src/InvalidVisibilityProvided.php',
    318         'League\\Flysystem\\Local\\LocalFilesystemAdapter' => __DIR__ . '/..' . '/league/flysystem/src/Local/LocalFilesystemAdapter.php',
    319         'League\\Flysystem\\MountManager' => __DIR__ . '/..' . '/league/flysystem/src/MountManager.php',
    320         'League\\Flysystem\\PathNormalizer' => __DIR__ . '/..' . '/league/flysystem/src/PathNormalizer.php',
    321         'League\\Flysystem\\PathPrefixer' => __DIR__ . '/..' . '/league/flysystem/src/PathPrefixer.php',
    322         'League\\Flysystem\\PathTraversalDetected' => __DIR__ . '/..' . '/league/flysystem/src/PathTraversalDetected.php',
    323         'League\\Flysystem\\PortableVisibilityGuard' => __DIR__ . '/..' . '/league/flysystem/src/PortableVisibilityGuard.php',
    324         'League\\Flysystem\\ProxyArrayAccessToProperties' => __DIR__ . '/..' . '/league/flysystem/src/ProxyArrayAccessToProperties.php',
    325         'League\\Flysystem\\StorageAttributes' => __DIR__ . '/..' . '/league/flysystem/src/StorageAttributes.php',
    326         'League\\Flysystem\\SymbolicLinkEncountered' => __DIR__ . '/..' . '/league/flysystem/src/SymbolicLinkEncountered.php',
    327         'League\\Flysystem\\UnableToCheckFileExistence' => __DIR__ . '/..' . '/league/flysystem/src/UnableToCheckFileExistence.php',
    328         'League\\Flysystem\\UnableToCopyFile' => __DIR__ . '/..' . '/league/flysystem/src/UnableToCopyFile.php',
    329         'League\\Flysystem\\UnableToCreateDirectory' => __DIR__ . '/..' . '/league/flysystem/src/UnableToCreateDirectory.php',
    330         'League\\Flysystem\\UnableToDeleteDirectory' => __DIR__ . '/..' . '/league/flysystem/src/UnableToDeleteDirectory.php',
    331         'League\\Flysystem\\UnableToDeleteFile' => __DIR__ . '/..' . '/league/flysystem/src/UnableToDeleteFile.php',
    332         'League\\Flysystem\\UnableToMountFilesystem' => __DIR__ . '/..' . '/league/flysystem/src/UnableToMountFilesystem.php',
    333         'League\\Flysystem\\UnableToMoveFile' => __DIR__ . '/..' . '/league/flysystem/src/UnableToMoveFile.php',
    334         'League\\Flysystem\\UnableToReadFile' => __DIR__ . '/..' . '/league/flysystem/src/UnableToReadFile.php',
    335         'League\\Flysystem\\UnableToResolveFilesystemMount' => __DIR__ . '/..' . '/league/flysystem/src/UnableToResolveFilesystemMount.php',
    336         'League\\Flysystem\\UnableToRetrieveMetadata' => __DIR__ . '/..' . '/league/flysystem/src/UnableToRetrieveMetadata.php',
    337         'League\\Flysystem\\UnableToSetVisibility' => __DIR__ . '/..' . '/league/flysystem/src/UnableToSetVisibility.php',
    338         'League\\Flysystem\\UnableToWriteFile' => __DIR__ . '/..' . '/league/flysystem/src/UnableToWriteFile.php',
    339         'League\\Flysystem\\UnixVisibility\\PortableVisibilityConverter' => __DIR__ . '/..' . '/league/flysystem/src/UnixVisibility/PortableVisibilityConverter.php',
    340         'League\\Flysystem\\UnixVisibility\\VisibilityConverter' => __DIR__ . '/..' . '/league/flysystem/src/UnixVisibility/VisibilityConverter.php',
    341         'League\\Flysystem\\UnreadableFileEncountered' => __DIR__ . '/..' . '/league/flysystem/src/UnreadableFileEncountered.php',
    342         'League\\Flysystem\\Visibility' => __DIR__ . '/..' . '/league/flysystem/src/Visibility.php',
    343         'League\\Flysystem\\WhitespacePathNormalizer' => __DIR__ . '/..' . '/league/flysystem/src/WhitespacePathNormalizer.php',
    344         'League\\MimeTypeDetection\\EmptyExtensionToMimeTypeMap' => __DIR__ . '/..' . '/league/mime-type-detection/src/EmptyExtensionToMimeTypeMap.php',
    345         'League\\MimeTypeDetection\\ExtensionLookup' => __DIR__ . '/..' . '/league/mime-type-detection/src/ExtensionLookup.php',
    346         'League\\MimeTypeDetection\\ExtensionMimeTypeDetector' => __DIR__ . '/..' . '/league/mime-type-detection/src/ExtensionMimeTypeDetector.php',
    347         'League\\MimeTypeDetection\\ExtensionToMimeTypeMap' => __DIR__ . '/..' . '/league/mime-type-detection/src/ExtensionToMimeTypeMap.php',
    348         'League\\MimeTypeDetection\\FinfoMimeTypeDetector' => __DIR__ . '/..' . '/league/mime-type-detection/src/FinfoMimeTypeDetector.php',
    349         'League\\MimeTypeDetection\\GeneratedExtensionToMimeTypeMap' => __DIR__ . '/..' . '/league/mime-type-detection/src/GeneratedExtensionToMimeTypeMap.php',
    350         'League\\MimeTypeDetection\\MimeTypeDetector' => __DIR__ . '/..' . '/league/mime-type-detection/src/MimeTypeDetector.php',
    351         'League\\MimeTypeDetection\\OverridingExtensionToMimeTypeMap' => __DIR__ . '/..' . '/league/mime-type-detection/src/OverridingExtensionToMimeTypeMap.php',
    352         'MatthiasMullie\\Scrapbook\\Adapters\\Apc' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Apc.php',
    353         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Apc' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Apc.php',
    354         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Couchbase' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Couchbase.php',
    355         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Flysystem' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Flysystem.php',
    356         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Memcached' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Memcached.php',
    357         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\MemoryStore' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/MemoryStore.php',
    358         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Redis' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Redis.php',
    359         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\SQL' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/SQL.php',
    360         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Utils\\PrefixKeys' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Utils/PrefixKeys.php',
    361         'MatthiasMullie\\Scrapbook\\Adapters\\Collections\\Utils\\PrefixReset' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Collections/Utils/PrefixReset.php',
    362         'MatthiasMullie\\Scrapbook\\Adapters\\Couchbase' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Couchbase.php',
    363         'MatthiasMullie\\Scrapbook\\Adapters\\Flysystem' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Flysystem.php',
    364         'MatthiasMullie\\Scrapbook\\Adapters\\Memcached' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Memcached.php',
    365         'MatthiasMullie\\Scrapbook\\Adapters\\MemoryStore' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/MemoryStore.php',
    366         'MatthiasMullie\\Scrapbook\\Adapters\\MySQL' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/MySQL.php',
    367         'MatthiasMullie\\Scrapbook\\Adapters\\PostgreSQL' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/PostgreSQL.php',
    368         'MatthiasMullie\\Scrapbook\\Adapters\\Redis' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/Redis.php',
    369         'MatthiasMullie\\Scrapbook\\Adapters\\SQL' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/SQL.php',
    370         'MatthiasMullie\\Scrapbook\\Adapters\\SQLite' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Adapters/SQLite.php',
    371         'MatthiasMullie\\Scrapbook\\Buffered\\BufferedStore' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Buffered/BufferedStore.php',
    372         'MatthiasMullie\\Scrapbook\\Buffered\\TransactionalStore' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Buffered/TransactionalStore.php',
    373         'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\Buffer' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Buffered/Utils/Buffer.php',
    374         'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\BufferCollection' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Buffered/Utils/BufferCollection.php',
    375         'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\Defer' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Buffered/Utils/Defer.php',
    376         'MatthiasMullie\\Scrapbook\\Buffered\\Utils\\Transaction' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Buffered/Utils/Transaction.php',
    377         'MatthiasMullie\\Scrapbook\\Exception\\Exception' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/Exception.php',
    378         'MatthiasMullie\\Scrapbook\\Exception\\InvalidCollection' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/InvalidCollection.php',
    379         'MatthiasMullie\\Scrapbook\\Exception\\InvalidKey' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/InvalidKey.php',
    380         'MatthiasMullie\\Scrapbook\\Exception\\OperationFailed' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/OperationFailed.php',
    381         'MatthiasMullie\\Scrapbook\\Exception\\ServerUnhealthy' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/ServerUnhealthy.php',
    382         'MatthiasMullie\\Scrapbook\\Exception\\UnbegunTransaction' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/UnbegunTransaction.php',
    383         'MatthiasMullie\\Scrapbook\\Exception\\UncommittedTransaction' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Exception/UncommittedTransaction.php',
    384         'MatthiasMullie\\Scrapbook\\KeyValueStore' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/KeyValueStore.php',
    385         'MatthiasMullie\\Scrapbook\\Psr16\\InvalidArgumentException' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Psr16/InvalidArgumentException.php',
    386         'MatthiasMullie\\Scrapbook\\Psr16\\SimpleCache' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Psr16/SimpleCache.php',
    387         'MatthiasMullie\\Scrapbook\\Psr6\\InvalidArgumentException' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Psr6/InvalidArgumentException.php',
    388         'MatthiasMullie\\Scrapbook\\Psr6\\Item' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Psr6/Item.php',
    389         'MatthiasMullie\\Scrapbook\\Psr6\\Pool' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Psr6/Pool.php',
    390         'MatthiasMullie\\Scrapbook\\Psr6\\Repository' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Psr6/Repository.php',
    391         'MatthiasMullie\\Scrapbook\\Scale\\Shard' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Scale/Shard.php',
    392         'MatthiasMullie\\Scrapbook\\Scale\\StampedeProtector' => __DIR__ . '/..' . '/matthiasmullie/scrapbook/src/Scale/StampedeProtector.php',
    393         'Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
    394         'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
    395         'Psr\\Cache\\CacheException' => __DIR__ . '/..' . '/psr/cache/src/CacheException.php',
    396         'Psr\\Cache\\CacheItemInterface' => __DIR__ . '/..' . '/psr/cache/src/CacheItemInterface.php',
    397         'Psr\\Cache\\CacheItemPoolInterface' => __DIR__ . '/..' . '/psr/cache/src/CacheItemPoolInterface.php',
    398         'Psr\\Cache\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/cache/src/InvalidArgumentException.php',
    399         'Psr\\Container\\ContainerExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerExceptionInterface.php',
    400         'Psr\\Container\\ContainerInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerInterface.php',
    401         'Psr\\Container\\NotFoundExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/NotFoundExceptionInterface.php',
    402         'Psr\\Http\\Client\\ClientExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/ClientExceptionInterface.php',
    403         'Psr\\Http\\Client\\ClientInterface' => __DIR__ . '/..' . '/psr/http-client/src/ClientInterface.php',
    404         'Psr\\Http\\Client\\NetworkExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/NetworkExceptionInterface.php',
    405         'Psr\\Http\\Client\\RequestExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/RequestExceptionInterface.php',
    406         'Psr\\Http\\Message\\MessageInterface' => __DIR__ . '/..' . '/psr/http-message/src/MessageInterface.php',
    407         'Psr\\Http\\Message\\RequestFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/RequestFactoryInterface.php',
    408         'Psr\\Http\\Message\\RequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/RequestInterface.php',
    409         'Psr\\Http\\Message\\ResponseFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/ResponseFactoryInterface.php',
    410         'Psr\\Http\\Message\\ResponseInterface' => __DIR__ . '/..' . '/psr/http-message/src/ResponseInterface.php',
    411         'Psr\\Http\\Message\\ServerRequestFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/ServerRequestFactoryInterface.php',
    412         'Psr\\Http\\Message\\ServerRequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/ServerRequestInterface.php',
    413         'Psr\\Http\\Message\\StreamFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/StreamFactoryInterface.php',
    414         'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php',
    415         'Psr\\Http\\Message\\UploadedFileFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/UploadedFileFactoryInterface.php',
    416         'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php',
    417         'Psr\\Http\\Message\\UriFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/UriFactoryInterface.php',
    418         'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php',
    419         'Psr\\Log\\AbstractLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/AbstractLogger.php',
    420         'Psr\\Log\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/log/Psr/Log/InvalidArgumentException.php',
    421         'Psr\\Log\\LogLevel' => __DIR__ . '/..' . '/psr/log/Psr/Log/LogLevel.php',
    422         'Psr\\Log\\LoggerAwareInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareInterface.php',
    423         'Psr\\Log\\LoggerAwareTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareTrait.php',
    424         'Psr\\Log\\LoggerInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerInterface.php',
    425         'Psr\\Log\\LoggerTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerTrait.php',
    426         'Psr\\Log\\NullLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/NullLogger.php',
    427         'Psr\\Log\\Test\\DummyTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/DummyTest.php',
    428         'Psr\\Log\\Test\\LoggerInterfaceTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
    429         'Psr\\Log\\Test\\TestLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/TestLogger.php',
    430         'Psr\\SimpleCache\\CacheException' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheException.php',
    431         'Psr\\SimpleCache\\CacheInterface' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheInterface.php',
    432         'Psr\\SimpleCache\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/simple-cache/src/InvalidArgumentException.php',
    433         'SlimStat\\Services\\Browscap' => __DIR__ . '/../..' . '/src/Services/Browscap.php',
    434         'SlimStat\\Services\\GeoIP' => __DIR__ . '/../..' . '/src/Services/GeoIP.php',
    435         'SlimStat\\Services\\GeoService' => __DIR__ . '/../..' . '/src/Services/GeoService.php',
    436         'SlimStat\\Utils\\InvalidDatabaseException' => __DIR__ . '/../..' . '/src/Utils/InvalidDatabaseException.php',
    437         'SlimStat\\Utils\\MaxMindDecoder' => __DIR__ . '/../..' . '/src/Utils/MaxMindDecoder.php',
    438         'SlimStat\\Utils\\MaxMindMetadata' => __DIR__ . '/../..' . '/src/Utils/MaxMindMetadata.php',
    439         'SlimStat\\Utils\\MaxMindReader' => __DIR__ . '/../..' . '/src/Utils/MaxMindReader.php',
    440         'SlimStat\\Utils\\MaxMindUtil' => __DIR__ . '/../..' . '/src/Utils/MaxMindUtil.php',
    441         'SlimStat\\Utils\\UADetector' => __DIR__ . '/../..' . '/src/Utils/UADetector.php',
    442         'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
    443         'Symfony\\Component\\Console\\Application' => __DIR__ . '/..' . '/symfony/console/Application.php',
    444         'Symfony\\Component\\Console\\Attribute\\AsCommand' => __DIR__ . '/..' . '/symfony/console/Attribute/AsCommand.php',
    445         'Symfony\\Component\\Console\\CI\\GithubActionReporter' => __DIR__ . '/..' . '/symfony/console/CI/GithubActionReporter.php',
    446         'Symfony\\Component\\Console\\Color' => __DIR__ . '/..' . '/symfony/console/Color.php',
    447         'Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface' => __DIR__ . '/..' . '/symfony/console/CommandLoader/CommandLoaderInterface.php',
    448         'Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader' => __DIR__ . '/..' . '/symfony/console/CommandLoader/ContainerCommandLoader.php',
    449         'Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader' => __DIR__ . '/..' . '/symfony/console/CommandLoader/FactoryCommandLoader.php',
    450         'Symfony\\Component\\Console\\Command\\Command' => __DIR__ . '/..' . '/symfony/console/Command/Command.php',
    451         'Symfony\\Component\\Console\\Command\\CompleteCommand' => __DIR__ . '/..' . '/symfony/console/Command/CompleteCommand.php',
    452         'Symfony\\Component\\Console\\Command\\DumpCompletionCommand' => __DIR__ . '/..' . '/symfony/console/Command/DumpCompletionCommand.php',
    453         'Symfony\\Component\\Console\\Command\\HelpCommand' => __DIR__ . '/..' . '/symfony/console/Command/HelpCommand.php',
    454         'Symfony\\Component\\Console\\Command\\LazyCommand' => __DIR__ . '/..' . '/symfony/console/Command/LazyCommand.php',
    455         'Symfony\\Component\\Console\\Command\\ListCommand' => __DIR__ . '/..' . '/symfony/console/Command/ListCommand.php',
    456         'Symfony\\Component\\Console\\Command\\LockableTrait' => __DIR__ . '/..' . '/symfony/console/Command/LockableTrait.php',
    457         'Symfony\\Component\\Console\\Command\\SignalableCommandInterface' => __DIR__ . '/..' . '/symfony/console/Command/SignalableCommandInterface.php',
    458         'Symfony\\Component\\Console\\Completion\\CompletionInput' => __DIR__ . '/..' . '/symfony/console/Completion/CompletionInput.php',
    459         'Symfony\\Component\\Console\\Completion\\CompletionSuggestions' => __DIR__ . '/..' . '/symfony/console/Completion/CompletionSuggestions.php',
    460         'Symfony\\Component\\Console\\Completion\\Output\\BashCompletionOutput' => __DIR__ . '/..' . '/symfony/console/Completion/Output/BashCompletionOutput.php',
    461         'Symfony\\Component\\Console\\Completion\\Output\\CompletionOutputInterface' => __DIR__ . '/..' . '/symfony/console/Completion/Output/CompletionOutputInterface.php',
    462         'Symfony\\Component\\Console\\Completion\\Suggestion' => __DIR__ . '/..' . '/symfony/console/Completion/Suggestion.php',
    463         'Symfony\\Component\\Console\\ConsoleEvents' => __DIR__ . '/..' . '/symfony/console/ConsoleEvents.php',
    464         'Symfony\\Component\\Console\\Cursor' => __DIR__ . '/..' . '/symfony/console/Cursor.php',
    465         'Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass' => __DIR__ . '/..' . '/symfony/console/DependencyInjection/AddConsoleCommandPass.php',
    466         'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => __DIR__ . '/..' . '/symfony/console/Descriptor/ApplicationDescription.php',
    467         'Symfony\\Component\\Console\\Descriptor\\Descriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/Descriptor.php',
    468         'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => __DIR__ . '/..' . '/symfony/console/Descriptor/DescriptorInterface.php',
    469         'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/JsonDescriptor.php',
    470         'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/MarkdownDescriptor.php',
    471         'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/TextDescriptor.php',
    472         'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/XmlDescriptor.php',
    473         'Symfony\\Component\\Console\\EventListener\\ErrorListener' => __DIR__ . '/..' . '/symfony/console/EventListener/ErrorListener.php',
    474         'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleCommandEvent.php',
    475         'Symfony\\Component\\Console\\Event\\ConsoleErrorEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleErrorEvent.php',
    476         'Symfony\\Component\\Console\\Event\\ConsoleEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleEvent.php',
    477         'Symfony\\Component\\Console\\Event\\ConsoleSignalEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleSignalEvent.php',
    478         'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleTerminateEvent.php',
    479         'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => __DIR__ . '/..' . '/symfony/console/Exception/CommandNotFoundException.php',
    480         'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/console/Exception/ExceptionInterface.php',
    481         'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/console/Exception/InvalidArgumentException.php',
    482         'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => __DIR__ . '/..' . '/symfony/console/Exception/InvalidOptionException.php',
    483         'Symfony\\Component\\Console\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/console/Exception/LogicException.php',
    484         'Symfony\\Component\\Console\\Exception\\MissingInputException' => __DIR__ . '/..' . '/symfony/console/Exception/MissingInputException.php',
    485         'Symfony\\Component\\Console\\Exception\\NamespaceNotFoundException' => __DIR__ . '/..' . '/symfony/console/Exception/NamespaceNotFoundException.php',
    486         'Symfony\\Component\\Console\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/console/Exception/RuntimeException.php',
    487         'Symfony\\Component\\Console\\Formatter\\NullOutputFormatter' => __DIR__ . '/..' . '/symfony/console/Formatter/NullOutputFormatter.php',
    488         'Symfony\\Component\\Console\\Formatter\\NullOutputFormatterStyle' => __DIR__ . '/..' . '/symfony/console/Formatter/NullOutputFormatterStyle.php',
    489         'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatter.php',
    490         'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterInterface.php',
    491         'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyle.php',
    492         'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyleInterface.php',
    493         'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyleStack.php',
    494         'Symfony\\Component\\Console\\Formatter\\WrappableOutputFormatterInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/WrappableOutputFormatterInterface.php',
    495         'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => __DIR__ . '/..' . '/symfony/console/Helper/DebugFormatterHelper.php',
    496         'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => __DIR__ . '/..' . '/symfony/console/Helper/DescriptorHelper.php',
    497         'Symfony\\Component\\Console\\Helper\\Dumper' => __DIR__ . '/..' . '/symfony/console/Helper/Dumper.php',
    498         'Symfony\\Component\\Console\\Helper\\FormatterHelper' => __DIR__ . '/..' . '/symfony/console/Helper/FormatterHelper.php',
    499         'Symfony\\Component\\Console\\Helper\\Helper' => __DIR__ . '/..' . '/symfony/console/Helper/Helper.php',
    500         'Symfony\\Component\\Console\\Helper\\HelperInterface' => __DIR__ . '/..' . '/symfony/console/Helper/HelperInterface.php',
    501         'Symfony\\Component\\Console\\Helper\\HelperSet' => __DIR__ . '/..' . '/symfony/console/Helper/HelperSet.php',
    502         'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => __DIR__ . '/..' . '/symfony/console/Helper/InputAwareHelper.php',
    503         'Symfony\\Component\\Console\\Helper\\ProcessHelper' => __DIR__ . '/..' . '/symfony/console/Helper/ProcessHelper.php',
    504         'Symfony\\Component\\Console\\Helper\\ProgressBar' => __DIR__ . '/..' . '/symfony/console/Helper/ProgressBar.php',
    505         'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => __DIR__ . '/..' . '/symfony/console/Helper/ProgressIndicator.php',
    506         'Symfony\\Component\\Console\\Helper\\QuestionHelper' => __DIR__ . '/..' . '/symfony/console/Helper/QuestionHelper.php',
    507         'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => __DIR__ . '/..' . '/symfony/console/Helper/SymfonyQuestionHelper.php',
    508         'Symfony\\Component\\Console\\Helper\\Table' => __DIR__ . '/..' . '/symfony/console/Helper/Table.php',
    509         'Symfony\\Component\\Console\\Helper\\TableCell' => __DIR__ . '/..' . '/symfony/console/Helper/TableCell.php',
    510         'Symfony\\Component\\Console\\Helper\\TableCellStyle' => __DIR__ . '/..' . '/symfony/console/Helper/TableCellStyle.php',
    511         'Symfony\\Component\\Console\\Helper\\TableRows' => __DIR__ . '/..' . '/symfony/console/Helper/TableRows.php',
    512         'Symfony\\Component\\Console\\Helper\\TableSeparator' => __DIR__ . '/..' . '/symfony/console/Helper/TableSeparator.php',
    513         'Symfony\\Component\\Console\\Helper\\TableStyle' => __DIR__ . '/..' . '/symfony/console/Helper/TableStyle.php',
    514         'Symfony\\Component\\Console\\Input\\ArgvInput' => __DIR__ . '/..' . '/symfony/console/Input/ArgvInput.php',
    515         'Symfony\\Component\\Console\\Input\\ArrayInput' => __DIR__ . '/..' . '/symfony/console/Input/ArrayInput.php',
    516         'Symfony\\Component\\Console\\Input\\Input' => __DIR__ . '/..' . '/symfony/console/Input/Input.php',
    517         'Symfony\\Component\\Console\\Input\\InputArgument' => __DIR__ . '/..' . '/symfony/console/Input/InputArgument.php',
    518         'Symfony\\Component\\Console\\Input\\InputAwareInterface' => __DIR__ . '/..' . '/symfony/console/Input/InputAwareInterface.php',
    519         'Symfony\\Component\\Console\\Input\\InputDefinition' => __DIR__ . '/..' . '/symfony/console/Input/InputDefinition.php',
    520         'Symfony\\Component\\Console\\Input\\InputInterface' => __DIR__ . '/..' . '/symfony/console/Input/InputInterface.php',
    521         'Symfony\\Component\\Console\\Input\\InputOption' => __DIR__ . '/..' . '/symfony/console/Input/InputOption.php',
    522         'Symfony\\Component\\Console\\Input\\StreamableInputInterface' => __DIR__ . '/..' . '/symfony/console/Input/StreamableInputInterface.php',
    523         'Symfony\\Component\\Console\\Input\\StringInput' => __DIR__ . '/..' . '/symfony/console/Input/StringInput.php',
    524         'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => __DIR__ . '/..' . '/symfony/console/Logger/ConsoleLogger.php',
    525         'Symfony\\Component\\Console\\Output\\BufferedOutput' => __DIR__ . '/..' . '/symfony/console/Output/BufferedOutput.php',
    526         'Symfony\\Component\\Console\\Output\\ConsoleOutput' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleOutput.php',
    527         'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleOutputInterface.php',
    528         'Symfony\\Component\\Console\\Output\\ConsoleSectionOutput' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleSectionOutput.php',
    529         'Symfony\\Component\\Console\\Output\\NullOutput' => __DIR__ . '/..' . '/symfony/console/Output/NullOutput.php',
    530         'Symfony\\Component\\Console\\Output\\Output' => __DIR__ . '/..' . '/symfony/console/Output/Output.php',
    531         'Symfony\\Component\\Console\\Output\\OutputInterface' => __DIR__ . '/..' . '/symfony/console/Output/OutputInterface.php',
    532         'Symfony\\Component\\Console\\Output\\StreamOutput' => __DIR__ . '/..' . '/symfony/console/Output/StreamOutput.php',
    533         'Symfony\\Component\\Console\\Output\\TrimmedBufferOutput' => __DIR__ . '/..' . '/symfony/console/Output/TrimmedBufferOutput.php',
    534         'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => __DIR__ . '/..' . '/symfony/console/Question/ChoiceQuestion.php',
    535         'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => __DIR__ . '/..' . '/symfony/console/Question/ConfirmationQuestion.php',
    536         'Symfony\\Component\\Console\\Question\\Question' => __DIR__ . '/..' . '/symfony/console/Question/Question.php',
    537         'Symfony\\Component\\Console\\SignalRegistry\\SignalRegistry' => __DIR__ . '/..' . '/symfony/console/SignalRegistry/SignalRegistry.php',
    538         'Symfony\\Component\\Console\\SingleCommandApplication' => __DIR__ . '/..' . '/symfony/console/SingleCommandApplication.php',
    539         'Symfony\\Component\\Console\\Style\\OutputStyle' => __DIR__ . '/..' . '/symfony/console/Style/OutputStyle.php',
    540         'Symfony\\Component\\Console\\Style\\StyleInterface' => __DIR__ . '/..' . '/symfony/console/Style/StyleInterface.php',
    541         'Symfony\\Component\\Console\\Style\\SymfonyStyle' => __DIR__ . '/..' . '/symfony/console/Style/SymfonyStyle.php',
    542         'Symfony\\Component\\Console\\Terminal' => __DIR__ . '/..' . '/symfony/console/Terminal.php',
    543         'Symfony\\Component\\Console\\Tester\\ApplicationTester' => __DIR__ . '/..' . '/symfony/console/Tester/ApplicationTester.php',
    544         'Symfony\\Component\\Console\\Tester\\CommandCompletionTester' => __DIR__ . '/..' . '/symfony/console/Tester/CommandCompletionTester.php',
    545         'Symfony\\Component\\Console\\Tester\\CommandTester' => __DIR__ . '/..' . '/symfony/console/Tester/CommandTester.php',
    546         'Symfony\\Component\\Console\\Tester\\Constraint\\CommandIsSuccessful' => __DIR__ . '/..' . '/symfony/console/Tester/Constraint/CommandIsSuccessful.php',
    547         'Symfony\\Component\\Console\\Tester\\TesterTrait' => __DIR__ . '/..' . '/symfony/console/Tester/TesterTrait.php',
    548         'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/ExceptionInterface.php',
    549         'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/FileNotFoundException.php',
    550         'Symfony\\Component\\Filesystem\\Exception\\IOException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOException.php',
    551         'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOExceptionInterface.php',
    552         'Symfony\\Component\\Filesystem\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/InvalidArgumentException.php',
    553         'Symfony\\Component\\Filesystem\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/RuntimeException.php',
    554         'Symfony\\Component\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/symfony/filesystem/Filesystem.php',
    555         'Symfony\\Component\\Filesystem\\Path' => __DIR__ . '/..' . '/symfony/filesystem/Path.php',
    556         'Symfony\\Component\\String\\AbstractString' => __DIR__ . '/..' . '/symfony/string/AbstractString.php',
    557         'Symfony\\Component\\String\\AbstractUnicodeString' => __DIR__ . '/..' . '/symfony/string/AbstractUnicodeString.php',
    558         'Symfony\\Component\\String\\ByteString' => __DIR__ . '/..' . '/symfony/string/ByteString.php',
    559         'Symfony\\Component\\String\\CodePointString' => __DIR__ . '/..' . '/symfony/string/CodePointString.php',
    560         'Symfony\\Component\\String\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/string/Exception/ExceptionInterface.php',
    561         'Symfony\\Component\\String\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/string/Exception/InvalidArgumentException.php',
    562         'Symfony\\Component\\String\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/string/Exception/RuntimeException.php',
    563         'Symfony\\Component\\String\\Inflector\\EnglishInflector' => __DIR__ . '/..' . '/symfony/string/Inflector/EnglishInflector.php',
    564         'Symfony\\Component\\String\\Inflector\\FrenchInflector' => __DIR__ . '/..' . '/symfony/string/Inflector/FrenchInflector.php',
    565         'Symfony\\Component\\String\\Inflector\\InflectorInterface' => __DIR__ . '/..' . '/symfony/string/Inflector/InflectorInterface.php',
    566         'Symfony\\Component\\String\\LazyString' => __DIR__ . '/..' . '/symfony/string/LazyString.php',
    567         'Symfony\\Component\\String\\Slugger\\AsciiSlugger' => __DIR__ . '/..' . '/symfony/string/Slugger/AsciiSlugger.php',
    568         'Symfony\\Component\\String\\Slugger\\SluggerInterface' => __DIR__ . '/..' . '/symfony/string/Slugger/SluggerInterface.php',
    569         'Symfony\\Component\\String\\UnicodeString' => __DIR__ . '/..' . '/symfony/string/UnicodeString.php',
    570         'Symfony\\Contracts\\Service\\Attribute\\Required' => __DIR__ . '/..' . '/symfony/service-contracts/Attribute/Required.php',
    571         'Symfony\\Contracts\\Service\\Attribute\\SubscribedService' => __DIR__ . '/..' . '/symfony/service-contracts/Attribute/SubscribedService.php',
    572         'Symfony\\Contracts\\Service\\ResetInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ResetInterface.php',
    573         'Symfony\\Contracts\\Service\\ServiceCollectionInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceCollectionInterface.php',
    574         'Symfony\\Contracts\\Service\\ServiceLocatorTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceLocatorTrait.php',
    575         'Symfony\\Contracts\\Service\\ServiceMethodsSubscriberTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceMethodsSubscriberTrait.php',
    576         'Symfony\\Contracts\\Service\\ServiceProviderInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceProviderInterface.php',
    577         'Symfony\\Contracts\\Service\\ServiceSubscriberInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceSubscriberInterface.php',
    578         'Symfony\\Contracts\\Service\\ServiceSubscriberTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceSubscriberTrait.php',
    579         'Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__ . '/..' . '/symfony/polyfill-ctype/Ctype.php',
    580         'Symfony\\Polyfill\\Intl\\Grapheme\\Grapheme' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/Grapheme.php',
    581         'Symfony\\Polyfill\\Intl\\Normalizer\\Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Normalizer.php',
    582         'Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/Mbstring.php',
    583         'Symfony\\Polyfill\\Php73\\Php73' => __DIR__ . '/..' . '/symfony/polyfill-php73/Php73.php',
    584         'Symfony\\Polyfill\\Php80\\Php80' => __DIR__ . '/..' . '/symfony/polyfill-php80/Php80.php',
    585         'Symfony\\Polyfill\\Php80\\PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/PhpToken.php',
    586         'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
    587         'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
    58830    );
    58931
  • wp-slimstat/trunk/vendor/composer/installed.php

    r3099788 r3131121  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '22a88346cc2c02698a4f953ca01a0e13436bdc5a',
     6        'reference' => '2b0f0c238f368de43db364d3b2070a07a2fcba52',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    286286            'pretty_version' => 'dev-master',
    287287            'version' => 'dev-master',
    288             'reference' => '22a88346cc2c02698a4f953ca01a0e13436bdc5a',
     288            'reference' => '2b0f0c238f368de43db364d3b2070a07a2fcba52',
    289289            'type' => 'library',
    290290            'install_path' => __DIR__ . '/../../',
  • wp-slimstat/trunk/wp-slimstat.php

    r3119942 r3131121  
    44 * Plugin URI: https://wp-slimstat.com/
    55 * Description: The leading web analytics plugin for WordPress
    6  * Version: 5.2.4
     6 * Version: 5.2.5
    77 * Author: Jason Crouse, VeronaLabs
    88 * Text Domain: wp-slimstat
     
    11571157            'rows_to_show'                           => '20',
    11581158            'show_hits'                              => 'no',
    1159             'ip_lookup_service'                      => 'https://www.infosniper.net/?ip_address=',
     1159            'ip_lookup_service'                      => 'https://ip-api.com/#',
    11601160            'comparison_chart'                       => 'on',
    11611161            'show_display_name'                      => 'no',
Note: See TracChangeset for help on using the changeset viewer.