Plugin Directory

Changeset 3448054


Ignore:
Timestamp:
01/27/2026 04:38:29 PM (2 months ago)
Author:
bmarshall511
Message:

Release v5.7.1

Location:
zero-spam/trunk
Files:
3223 added
10 edited

Legend:

Unmodified
Added
Removed
  • zero-spam/trunk/core/class-settings.php

    r3447426 r3448054  
    184184        );
    185185
    186     global $wp_roles;
    187    
    188     // Ensure roles are initialized
    189     if ( ! isset( $wp_roles ) || ! $wp_roles ) {
    190         $wp_roles = wp_roles();
    191     }
    192    
    193     $roles       = isset( $wp_roles->roles ) ? $wp_roles->roles : array();
    194     $roles_array = array();
    195 
    196     foreach ( $roles as $role => $data ) {
    197         $roles_array[ $role ] = $data['name'];
    198     }
     186        global $wp_roles;
     187
     188        // Ensure roles are initialized
     189        if ( ! isset( $wp_roles ) || ! $wp_roles ) {
     190            $wp_roles = wp_roles();
     191        }
     192
     193        $roles       = isset( $wp_roles->roles ) ? $wp_roles->roles : array();
     194        $roles_array = array();
     195
     196        foreach ( $roles as $role => $data ) {
     197            $roles_array[ $role ] = $data['name'];
     198        }
    199199
    200200        self::$settings['widget_visibility'] = array(
     
    312312        );
    313313
    314     self::$settings['update_blocked_email_domains'] = array(
    315         'title'   => __( 'Use Blocked Email Domains Recommendation', 'zero-spam' ),
    316         'desc'    => sprintf(
    317             wp_kses(
    318                 __( '<strong>WARNING:</strong> This will override all existing blocked email domains with Zero Spam\'s recommended domains.', 'zero-spam' ),
    319                 array(
    320                     'strong' => array(),
     314        self::$settings['update_blocked_email_domains'] = array(
     315            'title'   => __( 'Use Blocked Email Domains Recommendation', 'zero-spam' ),
     316            'desc'    => sprintf(
     317                wp_kses(
     318                    __( '<strong>WARNING:</strong> This will override all existing blocked email domains with Zero Spam\'s recommended domains.', 'zero-spam' ),
     319                    array(
     320                        'strong' => array(),
     321                    )
    321322                )
    322             )
    323         ),
    324         'section' => 'general',
    325         'module'  => 'settings',
    326         'type'    => 'html',
    327         'html'    => '', // Generated dynamically during render to avoid early nonce calls
    328     );
     323            ),
     324            'section' => 'general',
     325            'module'  => 'settings',
     326            'type'    => 'html',
     327            'html'    => '', // Generated dynamically during render to avoid early nonce calls
     328        );
    329329
    330330        self::$settings['regenerate_honeypot'] = array(
     
    365365        }
    366366
    367         $settings['general']['rescue_mode'] = array(
    368             'title'       => __( 'Rescue Mode', 'zero-spam' ),
    369             'section'     => 'general',
    370             'type'        => 'html',
    371             'html'        => defined( 'ZEROSPAM_RESCUE_KEY' ) ?
    372                 '<span style="color: green; font-weight: bold;">' . __( 'Active', 'zero-spam' ) . '</span> <span class="description">(' . __( 'Key defined in wp-config.php', 'zero-spam' ) . ')</span>' :
     367        self::$settings['rescue_mode'] = array(
     368            'title'   => __( 'Rescue Mode', 'zero-spam' ),
     369            'section' => 'general',
     370            'module'  => 'settings',
     371            'type'    => 'html',
     372            'html'    => defined( 'ZEROSPAM_RESCUE_KEY' ) ?
     373                '<span style="color: green; font-weight: bold;">' . __( 'Active', 'zero-spam' ) . '</span> <span class="description">(' . __( 'Key defined in wp-config.php', 'zero-spam' ) . ')</span>' :
    373374                '<span style="color: red;">' . __( 'Inactive', 'zero-spam' ) . '</span> <span class="description">(' . __( 'Define ZEROSPAM_RESCUE_KEY in wp-config.php to enable', 'zero-spam' ) . ')</span>',
    374             'desc'        => __( 'Rescue Mode allows administrators to bypass blocks by appending ?zerospam_rescue={KEY} to any URL.', 'zero-spam' ),
    375             'value'       => false,
     375            'desc'    => __( 'Rescue Mode allows administrators to bypass blocks by appending ?zerospam_rescue={KEY} to any URL.', 'zero-spam' ),
     376            'value'   => false,
    376377        );
    377378
  • zero-spam/trunk/readme.txt

    r3447426 r3448054  
    66Tested up to: 6.9
    77Requires PHP: 8.2
    8 Stable tag: 5.7.0
     8Stable tag: 5.7.1
    99License: GPL v2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.txt
     
    132132
    133133== Changelog ==
     134
     135= v5.7.1 =
     136
     137* fix(settings): resolved undefined array key warnings for rescue mode setting
    134138
    135139= v5.7.0 =
  • zero-spam/trunk/vendor/autoload.php

    r3447426 r3448054  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit9db325f9fd5653291ac702b1f01283b2::getLoader();
     25return ComposerAutoloaderInit21c74728ec9f69e24489f8aa12383392::getLoader();
  • zero-spam/trunk/vendor/composer/autoload_classmap.php

    r3447426 r3448054  
    88return array(
    99    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    10     'GuzzleHttp\\BodySummarizer' => $vendorDir . '/guzzlehttp/guzzle/src/BodySummarizer.php',
    11     'GuzzleHttp\\BodySummarizerInterface' => $vendorDir . '/guzzlehttp/guzzle/src/BodySummarizerInterface.php',
    12     'GuzzleHttp\\Client' => $vendorDir . '/guzzlehttp/guzzle/src/Client.php',
    13     'GuzzleHttp\\ClientInterface' => $vendorDir . '/guzzlehttp/guzzle/src/ClientInterface.php',
    14     'GuzzleHttp\\ClientTrait' => $vendorDir . '/guzzlehttp/guzzle/src/ClientTrait.php',
    15     'GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
    16     'GuzzleHttp\\Cookie\\CookieJarInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',
    17     'GuzzleHttp\\Cookie\\FileCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',
    18     'GuzzleHttp\\Cookie\\SessionCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',
    19     'GuzzleHttp\\Cookie\\SetCookie' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php',
    20     'GuzzleHttp\\Exception\\BadResponseException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php',
    21     'GuzzleHttp\\Exception\\ClientException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ClientException.php',
    22     'GuzzleHttp\\Exception\\ConnectException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ConnectException.php',
    23     'GuzzleHttp\\Exception\\GuzzleException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php',
    24     'GuzzleHttp\\Exception\\InvalidArgumentException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',
    25     'GuzzleHttp\\Exception\\RequestException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/RequestException.php',
    26     'GuzzleHttp\\Exception\\ServerException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ServerException.php',
    27     'GuzzleHttp\\Exception\\TooManyRedirectsException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',
    28     'GuzzleHttp\\Exception\\TransferException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TransferException.php',
    29     'GuzzleHttp\\HandlerStack' => $vendorDir . '/guzzlehttp/guzzle/src/HandlerStack.php',
    30     'GuzzleHttp\\Handler\\CurlFactory' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php',
    31     'GuzzleHttp\\Handler\\CurlFactoryInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',
    32     'GuzzleHttp\\Handler\\CurlHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php',
    33     'GuzzleHttp\\Handler\\CurlMultiHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',
    34     'GuzzleHttp\\Handler\\EasyHandle' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php',
    35     'GuzzleHttp\\Handler\\HeaderProcessor' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php',
    36     'GuzzleHttp\\Handler\\MockHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/MockHandler.php',
    37     'GuzzleHttp\\Handler\\Proxy' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/Proxy.php',
    38     'GuzzleHttp\\Handler\\StreamHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php',
    39     'GuzzleHttp\\MessageFormatter' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatter.php',
    40     'GuzzleHttp\\MessageFormatterInterface' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatterInterface.php',
    41     'GuzzleHttp\\Middleware' => $vendorDir . '/guzzlehttp/guzzle/src/Middleware.php',
    42     'GuzzleHttp\\Pool' => $vendorDir . '/guzzlehttp/guzzle/src/Pool.php',
    43     'GuzzleHttp\\PrepareBodyMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',
    44     'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php',
    45     'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php',
    46     'GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/guzzlehttp/promises/src/Coroutine.php',
    47     'GuzzleHttp\\Promise\\Create' => $vendorDir . '/guzzlehttp/promises/src/Create.php',
    48     'GuzzleHttp\\Promise\\Each' => $vendorDir . '/guzzlehttp/promises/src/Each.php',
    49     'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php',
    50     'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php',
    51     'GuzzleHttp\\Promise\\Is' => $vendorDir . '/guzzlehttp/promises/src/Is.php',
    52     'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php',
    53     'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php',
    54     'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php',
    55     'GuzzleHttp\\Promise\\RejectedPromise' => $vendorDir . '/guzzlehttp/promises/src/RejectedPromise.php',
    56     'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php',
    57     'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php',
    58     'GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/guzzlehttp/promises/src/TaskQueueInterface.php',
    59     'GuzzleHttp\\Promise\\Utils' => $vendorDir . '/guzzlehttp/promises/src/Utils.php',
    60     'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php',
    61     'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php',
    62     'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php',
    63     'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php',
    64     'GuzzleHttp\\Psr7\\Exception\\MalformedUriException' => $vendorDir . '/guzzlehttp/psr7/src/Exception/MalformedUriException.php',
    65     'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php',
    66     'GuzzleHttp\\Psr7\\Header' => $vendorDir . '/guzzlehttp/psr7/src/Header.php',
    67     'GuzzleHttp\\Psr7\\HttpFactory' => $vendorDir . '/guzzlehttp/psr7/src/HttpFactory.php',
    68     'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php',
    69     'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php',
    70     'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php',
    71     'GuzzleHttp\\Psr7\\Message' => $vendorDir . '/guzzlehttp/psr7/src/Message.php',
    72     'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php',
    73     'GuzzleHttp\\Psr7\\MimeType' => $vendorDir . '/guzzlehttp/psr7/src/MimeType.php',
    74     'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php',
    75     'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php',
    76     'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php',
    77     'GuzzleHttp\\Psr7\\Query' => $vendorDir . '/guzzlehttp/psr7/src/Query.php',
    78     'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php',
    79     'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php',
    80     'GuzzleHttp\\Psr7\\Rfc7230' => $vendorDir . '/guzzlehttp/psr7/src/Rfc7230.php',
    81     'GuzzleHttp\\Psr7\\ServerRequest' => $vendorDir . '/guzzlehttp/psr7/src/ServerRequest.php',
    82     'GuzzleHttp\\Psr7\\Stream' => $vendorDir . '/guzzlehttp/psr7/src/Stream.php',
    83     'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => $vendorDir . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
    84     'GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php',
    85     'GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php',
    86     'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php',
    87     'GuzzleHttp\\Psr7\\UriComparator' => $vendorDir . '/guzzlehttp/psr7/src/UriComparator.php',
    88     'GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php',
    89     'GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php',
    90     'GuzzleHttp\\Psr7\\Utils' => $vendorDir . '/guzzlehttp/psr7/src/Utils.php',
    91     'GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
    92     'GuzzleHttp\\RequestOptions' => $vendorDir . '/guzzlehttp/guzzle/src/RequestOptions.php',
    93     'GuzzleHttp\\RetryMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
    94     'GuzzleHttp\\TransferStats' => $vendorDir . '/guzzlehttp/guzzle/src/TransferStats.php',
    95     'GuzzleHttp\\Utils' => $vendorDir . '/guzzlehttp/guzzle/src/Utils.php',
    96     'Psr\\Http\\Client\\ClientExceptionInterface' => $vendorDir . '/psr/http-client/src/ClientExceptionInterface.php',
    97     'Psr\\Http\\Client\\ClientInterface' => $vendorDir . '/psr/http-client/src/ClientInterface.php',
    98     'Psr\\Http\\Client\\NetworkExceptionInterface' => $vendorDir . '/psr/http-client/src/NetworkExceptionInterface.php',
    99     'Psr\\Http\\Client\\RequestExceptionInterface' => $vendorDir . '/psr/http-client/src/RequestExceptionInterface.php',
    100     'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php',
    101     'Psr\\Http\\Message\\RequestFactoryInterface' => $vendorDir . '/psr/http-factory/src/RequestFactoryInterface.php',
    102     'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php',
    103     'Psr\\Http\\Message\\ResponseFactoryInterface' => $vendorDir . '/psr/http-factory/src/ResponseFactoryInterface.php',
    104     'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php',
    105     'Psr\\Http\\Message\\ServerRequestFactoryInterface' => $vendorDir . '/psr/http-factory/src/ServerRequestFactoryInterface.php',
    106     'Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php',
    107     'Psr\\Http\\Message\\StreamFactoryInterface' => $vendorDir . '/psr/http-factory/src/StreamFactoryInterface.php',
    108     'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php',
    109     'Psr\\Http\\Message\\UploadedFileFactoryInterface' => $vendorDir . '/psr/http-factory/src/UploadedFileFactoryInterface.php',
    110     'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php',
    111     'Psr\\Http\\Message\\UriFactoryInterface' => $vendorDir . '/psr/http-factory/src/UriFactoryInterface.php',
    112     'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php',
    113     'Psr\\SimpleCache\\CacheException' => $vendorDir . '/psr/simple-cache/src/CacheException.php',
    114     'Psr\\SimpleCache\\CacheInterface' => $vendorDir . '/psr/simple-cache/src/CacheInterface.php',
    115     'Psr\\SimpleCache\\InvalidArgumentException' => $vendorDir . '/psr/simple-cache/src/InvalidArgumentException.php',
    116     'Sabre\\Cache\\Apcu' => $vendorDir . '/sabre/cache/lib/Apcu.php',
    117     'Sabre\\Cache\\InvalidArgumentException' => $vendorDir . '/sabre/cache/lib/InvalidArgumentException.php',
    118     'Sabre\\Cache\\Memcached' => $vendorDir . '/sabre/cache/lib/Memcached.php',
    119     'Sabre\\Cache\\Memory' => $vendorDir . '/sabre/cache/lib/Memory.php',
    120     'Sabre\\Cache\\MultipleTrait' => $vendorDir . '/sabre/cache/lib/MultipleTrait.php',
    121     'Sabre\\Cache\\Version' => $vendorDir . '/sabre/cache/lib/Version.php',
    122     'ipinfo\\ipinfo\\Details' => $vendorDir . '/ipinfo/ipinfo/src/Details.php',
    123     'ipinfo\\ipinfo\\IPinfo' => $vendorDir . '/ipinfo/ipinfo/src/IPinfo.php',
    124     'ipinfo\\ipinfo\\IPinfoException' => $vendorDir . '/ipinfo/ipinfo/src/IPinfoException.php',
    125     'ipinfo\\ipinfo\\cache\\CacheInterface' => $vendorDir . '/ipinfo/ipinfo/src/cache/CacheInterface.php',
    126     'ipinfo\\ipinfo\\cache\\DefaultCache' => $vendorDir . '/ipinfo/ipinfo/src/cache/DefaultCache.php',
     10    'PHPCSUtils\\AbstractSniffs\\AbstractArrayDeclarationSniff' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/AbstractSniffs/AbstractArrayDeclarationSniff.php',
     11    'PHPCSUtils\\BackCompat\\BCFile' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCFile.php',
     12    'PHPCSUtils\\BackCompat\\BCTokens' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCTokens.php',
     13    'PHPCSUtils\\BackCompat\\Helper' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/Helper.php',
     14    'PHPCSUtils\\Exceptions\\InvalidTokenArray' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/InvalidTokenArray.php',
     15    'PHPCSUtils\\Exceptions\\LogicException' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/LogicException.php',
     16    'PHPCSUtils\\Exceptions\\MissingArgumentError' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/MissingArgumentError.php',
     17    'PHPCSUtils\\Exceptions\\OutOfBoundsStackPtr' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/OutOfBoundsStackPtr.php',
     18    'PHPCSUtils\\Exceptions\\RuntimeException' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/RuntimeException.php',
     19    'PHPCSUtils\\Exceptions\\TestFileNotFound' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestFileNotFound.php',
     20    'PHPCSUtils\\Exceptions\\TestMarkerNotFound' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestMarkerNotFound.php',
     21    'PHPCSUtils\\Exceptions\\TestTargetNotFound' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestTargetNotFound.php',
     22    'PHPCSUtils\\Exceptions\\TypeError' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TypeError.php',
     23    'PHPCSUtils\\Exceptions\\UnexpectedTokenType' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/UnexpectedTokenType.php',
     24    'PHPCSUtils\\Exceptions\\ValueError' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/ValueError.php',
     25    'PHPCSUtils\\Fixers\\SpacesFixer' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Fixers/SpacesFixer.php',
     26    'PHPCSUtils\\Internal\\AttributeHelper' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/AttributeHelper.php',
     27    'PHPCSUtils\\Internal\\Cache' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/Cache.php',
     28    'PHPCSUtils\\Internal\\IsShortArrayOrList' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrList.php',
     29    'PHPCSUtils\\Internal\\IsShortArrayOrListWithCache' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrListWithCache.php',
     30    'PHPCSUtils\\Internal\\NoFileCache' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/NoFileCache.php',
     31    'PHPCSUtils\\Internal\\StableCollections' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/StableCollections.php',
     32    'PHPCSUtils\\TestUtils\\ConfigDouble' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/ConfigDouble.php',
     33    'PHPCSUtils\\TestUtils\\RulesetDouble' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/RulesetDouble.php',
     34    'PHPCSUtils\\TestUtils\\UtilityMethodTestCase' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/UtilityMethodTestCase.php',
     35    'PHPCSUtils\\Tokens\\Collections' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/Collections.php',
     36    'PHPCSUtils\\Tokens\\TokenHelper' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/TokenHelper.php',
     37    'PHPCSUtils\\Utils\\Arrays' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Arrays.php',
     38    'PHPCSUtils\\Utils\\AttributeBlock' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/AttributeBlock.php',
     39    'PHPCSUtils\\Utils\\Conditions' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Conditions.php',
     40    'PHPCSUtils\\Utils\\Constants' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Constants.php',
     41    'PHPCSUtils\\Utils\\Context' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Context.php',
     42    'PHPCSUtils\\Utils\\ControlStructures' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ControlStructures.php',
     43    'PHPCSUtils\\Utils\\FileInfo' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FileInfo.php',
     44    'PHPCSUtils\\Utils\\FilePath' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FilePath.php',
     45    'PHPCSUtils\\Utils\\FunctionDeclarations' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FunctionDeclarations.php',
     46    'PHPCSUtils\\Utils\\GetTokensAsString' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/GetTokensAsString.php',
     47    'PHPCSUtils\\Utils\\Lists' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Lists.php',
     48    'PHPCSUtils\\Utils\\MessageHelper' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/MessageHelper.php',
     49    'PHPCSUtils\\Utils\\Namespaces' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Namespaces.php',
     50    'PHPCSUtils\\Utils\\NamingConventions' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/NamingConventions.php',
     51    'PHPCSUtils\\Utils\\Numbers' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Numbers.php',
     52    'PHPCSUtils\\Utils\\ObjectDeclarations' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ObjectDeclarations.php',
     53    'PHPCSUtils\\Utils\\Operators' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Operators.php',
     54    'PHPCSUtils\\Utils\\Orthography' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Orthography.php',
     55    'PHPCSUtils\\Utils\\Parentheses' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Parentheses.php',
     56    'PHPCSUtils\\Utils\\PassedParameters' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/PassedParameters.php',
     57    'PHPCSUtils\\Utils\\Scopes' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Scopes.php',
     58    'PHPCSUtils\\Utils\\TextStrings' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TextStrings.php',
     59    'PHPCSUtils\\Utils\\TypeString' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TypeString.php',
     60    'PHPCSUtils\\Utils\\UseStatements' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/UseStatements.php',
     61    'PHPCSUtils\\Utils\\Variables' => $vendorDir . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Variables.php',
    12762);
  • zero-spam/trunk/vendor/composer/autoload_psr4.php

    r3447426 r3448054  
    88return array(
    99    'ipinfo\\ipinfo\\' => array($vendorDir . '/ipinfo/ipinfo/src'),
     10    'VariableAnalysis\\' => array($vendorDir . '/sirbrillig/phpcs-variable-analysis/VariableAnalysis'),
    1011    'Sabre\\Cache\\' => array($vendorDir . '/sabre/cache/lib'),
    1112    'Psr\\SimpleCache\\' => array($vendorDir . '/psr/simple-cache/src'),
    1213    'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-factory/src', $vendorDir . '/psr/http-message/src'),
    1314    'Psr\\Http\\Client\\' => array($vendorDir . '/psr/http-client/src'),
     15    'PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' => array($vendorDir . '/dealerdirect/phpcodesniffer-composer-installer/src'),
    1416    'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
    1517    'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'),
  • zero-spam/trunk/vendor/composer/autoload_real.php

    r3447426 r3448054  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit9db325f9fd5653291ac702b1f01283b2
     5class ComposerAutoloaderInit21c74728ec9f69e24489f8aa12383392
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit9db325f9fd5653291ac702b1f01283b2', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit21c74728ec9f69e24489f8aa12383392', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit9db325f9fd5653291ac702b1f01283b2', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit21c74728ec9f69e24489f8aa12383392', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit9db325f9fd5653291ac702b1f01283b2::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit21c74728ec9f69e24489f8aa12383392::getInitializer($loader));
    3333
    34         $loader->setClassMapAuthoritative(true);
    3534        $loader->register(true);
    3635
    37         $filesToLoad = \Composer\Autoload\ComposerStaticInit9db325f9fd5653291ac702b1f01283b2::$files;
     36        $filesToLoad = \Composer\Autoload\ComposerStaticInit21c74728ec9f69e24489f8aa12383392::$files;
    3837        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
    3938            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • zero-spam/trunk/vendor/composer/autoload_static.php

    r3447426 r3448054  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit9db325f9fd5653291ac702b1f01283b2
     7class ComposerStaticInit21c74728ec9f69e24489f8aa12383392
    88{
    99    public static $files = array (
     
    1818            'ipinfo\\ipinfo\\' => 14,
    1919        ),
     20        'V' =>
     21        array (
     22            'VariableAnalysis\\' => 17,
     23        ),
    2024        'S' =>
    2125        array (
     
    2731            'Psr\\Http\\Message\\' => 17,
    2832            'Psr\\Http\\Client\\' => 16,
     33            'PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' => 57,
    2934        ),
    3035        'G' =>
     
    4045        array (
    4146            0 => __DIR__ . '/..' . '/ipinfo/ipinfo/src',
     47        ),
     48        'VariableAnalysis\\' =>
     49        array (
     50            0 => __DIR__ . '/..' . '/sirbrillig/phpcs-variable-analysis/VariableAnalysis',
    4251        ),
    4352        'Sabre\\Cache\\' =>
     
    5867            0 => __DIR__ . '/..' . '/psr/http-client/src',
    5968        ),
     69        'PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' =>
     70        array (
     71            0 => __DIR__ . '/..' . '/dealerdirect/phpcodesniffer-composer-installer/src',
     72        ),
    6073        'GuzzleHttp\\Psr7\\' =>
    6174        array (
     
    7487    public static $classMap = array (
    7588        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    76         'GuzzleHttp\\BodySummarizer' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/BodySummarizer.php',
    77         'GuzzleHttp\\BodySummarizerInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/BodySummarizerInterface.php',
    78         'GuzzleHttp\\Client' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Client.php',
    79         'GuzzleHttp\\ClientInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientInterface.php',
    80         'GuzzleHttp\\ClientTrait' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientTrait.php',
    81         'GuzzleHttp\\Cookie\\CookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
    82         'GuzzleHttp\\Cookie\\CookieJarInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',
    83         'GuzzleHttp\\Cookie\\FileCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',
    84         'GuzzleHttp\\Cookie\\SessionCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',
    85         'GuzzleHttp\\Cookie\\SetCookie' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php',
    86         'GuzzleHttp\\Exception\\BadResponseException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php',
    87         'GuzzleHttp\\Exception\\ClientException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ClientException.php',
    88         'GuzzleHttp\\Exception\\ConnectException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ConnectException.php',
    89         'GuzzleHttp\\Exception\\GuzzleException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php',
    90         'GuzzleHttp\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',
    91         'GuzzleHttp\\Exception\\RequestException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/RequestException.php',
    92         'GuzzleHttp\\Exception\\ServerException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ServerException.php',
    93         'GuzzleHttp\\Exception\\TooManyRedirectsException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',
    94         'GuzzleHttp\\Exception\\TransferException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TransferException.php',
    95         'GuzzleHttp\\HandlerStack' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/HandlerStack.php',
    96         'GuzzleHttp\\Handler\\CurlFactory' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php',
    97         'GuzzleHttp\\Handler\\CurlFactoryInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',
    98         'GuzzleHttp\\Handler\\CurlHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php',
    99         'GuzzleHttp\\Handler\\CurlMultiHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',
    100         'GuzzleHttp\\Handler\\EasyHandle' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php',
    101         'GuzzleHttp\\Handler\\HeaderProcessor' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php',
    102         'GuzzleHttp\\Handler\\MockHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/MockHandler.php',
    103         'GuzzleHttp\\Handler\\Proxy' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/Proxy.php',
    104         'GuzzleHttp\\Handler\\StreamHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php',
    105         'GuzzleHttp\\MessageFormatter' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/MessageFormatter.php',
    106         'GuzzleHttp\\MessageFormatterInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/MessageFormatterInterface.php',
    107         'GuzzleHttp\\Middleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Middleware.php',
    108         'GuzzleHttp\\Pool' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Pool.php',
    109         'GuzzleHttp\\PrepareBodyMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',
    110         'GuzzleHttp\\Promise\\AggregateException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/AggregateException.php',
    111         'GuzzleHttp\\Promise\\CancellationException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/CancellationException.php',
    112         'GuzzleHttp\\Promise\\Coroutine' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Coroutine.php',
    113         'GuzzleHttp\\Promise\\Create' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Create.php',
    114         'GuzzleHttp\\Promise\\Each' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Each.php',
    115         'GuzzleHttp\\Promise\\EachPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/EachPromise.php',
    116         'GuzzleHttp\\Promise\\FulfilledPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/FulfilledPromise.php',
    117         'GuzzleHttp\\Promise\\Is' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Is.php',
    118         'GuzzleHttp\\Promise\\Promise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Promise.php',
    119         'GuzzleHttp\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromiseInterface.php',
    120         'GuzzleHttp\\Promise\\PromisorInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromisorInterface.php',
    121         'GuzzleHttp\\Promise\\RejectedPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectedPromise.php',
    122         'GuzzleHttp\\Promise\\RejectionException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectionException.php',
    123         'GuzzleHttp\\Promise\\TaskQueue' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueue.php',
    124         'GuzzleHttp\\Promise\\TaskQueueInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueueInterface.php',
    125         'GuzzleHttp\\Promise\\Utils' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Utils.php',
    126         'GuzzleHttp\\Psr7\\AppendStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/AppendStream.php',
    127         'GuzzleHttp\\Psr7\\BufferStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/BufferStream.php',
    128         'GuzzleHttp\\Psr7\\CachingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/CachingStream.php',
    129         'GuzzleHttp\\Psr7\\DroppingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/DroppingStream.php',
    130         'GuzzleHttp\\Psr7\\Exception\\MalformedUriException' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Exception/MalformedUriException.php',
    131         'GuzzleHttp\\Psr7\\FnStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/FnStream.php',
    132         'GuzzleHttp\\Psr7\\Header' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Header.php',
    133         'GuzzleHttp\\Psr7\\HttpFactory' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/HttpFactory.php',
    134         'GuzzleHttp\\Psr7\\InflateStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/InflateStream.php',
    135         'GuzzleHttp\\Psr7\\LazyOpenStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LazyOpenStream.php',
    136         'GuzzleHttp\\Psr7\\LimitStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LimitStream.php',
    137         'GuzzleHttp\\Psr7\\Message' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Message.php',
    138         'GuzzleHttp\\Psr7\\MessageTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MessageTrait.php',
    139         'GuzzleHttp\\Psr7\\MimeType' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MimeType.php',
    140         'GuzzleHttp\\Psr7\\MultipartStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MultipartStream.php',
    141         'GuzzleHttp\\Psr7\\NoSeekStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/NoSeekStream.php',
    142         'GuzzleHttp\\Psr7\\PumpStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/PumpStream.php',
    143         'GuzzleHttp\\Psr7\\Query' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Query.php',
    144         'GuzzleHttp\\Psr7\\Request' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Request.php',
    145         'GuzzleHttp\\Psr7\\Response' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Response.php',
    146         'GuzzleHttp\\Psr7\\Rfc7230' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Rfc7230.php',
    147         'GuzzleHttp\\Psr7\\ServerRequest' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/ServerRequest.php',
    148         'GuzzleHttp\\Psr7\\Stream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Stream.php',
    149         'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
    150         'GuzzleHttp\\Psr7\\StreamWrapper' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamWrapper.php',
    151         'GuzzleHttp\\Psr7\\UploadedFile' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UploadedFile.php',
    152         'GuzzleHttp\\Psr7\\Uri' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Uri.php',
    153         'GuzzleHttp\\Psr7\\UriComparator' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriComparator.php',
    154         'GuzzleHttp\\Psr7\\UriNormalizer' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriNormalizer.php',
    155         'GuzzleHttp\\Psr7\\UriResolver' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriResolver.php',
    156         'GuzzleHttp\\Psr7\\Utils' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Utils.php',
    157         'GuzzleHttp\\RedirectMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
    158         'GuzzleHttp\\RequestOptions' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RequestOptions.php',
    159         'GuzzleHttp\\RetryMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
    160         'GuzzleHttp\\TransferStats' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/TransferStats.php',
    161         'GuzzleHttp\\Utils' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Utils.php',
    162         'Psr\\Http\\Client\\ClientExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/ClientExceptionInterface.php',
    163         'Psr\\Http\\Client\\ClientInterface' => __DIR__ . '/..' . '/psr/http-client/src/ClientInterface.php',
    164         'Psr\\Http\\Client\\NetworkExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/NetworkExceptionInterface.php',
    165         'Psr\\Http\\Client\\RequestExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/RequestExceptionInterface.php',
    166         'Psr\\Http\\Message\\MessageInterface' => __DIR__ . '/..' . '/psr/http-message/src/MessageInterface.php',
    167         'Psr\\Http\\Message\\RequestFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/RequestFactoryInterface.php',
    168         'Psr\\Http\\Message\\RequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/RequestInterface.php',
    169         'Psr\\Http\\Message\\ResponseFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/ResponseFactoryInterface.php',
    170         'Psr\\Http\\Message\\ResponseInterface' => __DIR__ . '/..' . '/psr/http-message/src/ResponseInterface.php',
    171         'Psr\\Http\\Message\\ServerRequestFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/ServerRequestFactoryInterface.php',
    172         'Psr\\Http\\Message\\ServerRequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/ServerRequestInterface.php',
    173         'Psr\\Http\\Message\\StreamFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/StreamFactoryInterface.php',
    174         'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php',
    175         'Psr\\Http\\Message\\UploadedFileFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/UploadedFileFactoryInterface.php',
    176         'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php',
    177         'Psr\\Http\\Message\\UriFactoryInterface' => __DIR__ . '/..' . '/psr/http-factory/src/UriFactoryInterface.php',
    178         'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php',
    179         'Psr\\SimpleCache\\CacheException' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheException.php',
    180         'Psr\\SimpleCache\\CacheInterface' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheInterface.php',
    181         'Psr\\SimpleCache\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/simple-cache/src/InvalidArgumentException.php',
    182         'Sabre\\Cache\\Apcu' => __DIR__ . '/..' . '/sabre/cache/lib/Apcu.php',
    183         'Sabre\\Cache\\InvalidArgumentException' => __DIR__ . '/..' . '/sabre/cache/lib/InvalidArgumentException.php',
    184         'Sabre\\Cache\\Memcached' => __DIR__ . '/..' . '/sabre/cache/lib/Memcached.php',
    185         'Sabre\\Cache\\Memory' => __DIR__ . '/..' . '/sabre/cache/lib/Memory.php',
    186         'Sabre\\Cache\\MultipleTrait' => __DIR__ . '/..' . '/sabre/cache/lib/MultipleTrait.php',
    187         'Sabre\\Cache\\Version' => __DIR__ . '/..' . '/sabre/cache/lib/Version.php',
    188         'ipinfo\\ipinfo\\Details' => __DIR__ . '/..' . '/ipinfo/ipinfo/src/Details.php',
    189         'ipinfo\\ipinfo\\IPinfo' => __DIR__ . '/..' . '/ipinfo/ipinfo/src/IPinfo.php',
    190         'ipinfo\\ipinfo\\IPinfoException' => __DIR__ . '/..' . '/ipinfo/ipinfo/src/IPinfoException.php',
    191         'ipinfo\\ipinfo\\cache\\CacheInterface' => __DIR__ . '/..' . '/ipinfo/ipinfo/src/cache/CacheInterface.php',
    192         'ipinfo\\ipinfo\\cache\\DefaultCache' => __DIR__ . '/..' . '/ipinfo/ipinfo/src/cache/DefaultCache.php',
     89        'PHPCSUtils\\AbstractSniffs\\AbstractArrayDeclarationSniff' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/AbstractSniffs/AbstractArrayDeclarationSniff.php',
     90        'PHPCSUtils\\BackCompat\\BCFile' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCFile.php',
     91        'PHPCSUtils\\BackCompat\\BCTokens' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCTokens.php',
     92        'PHPCSUtils\\BackCompat\\Helper' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/Helper.php',
     93        'PHPCSUtils\\Exceptions\\InvalidTokenArray' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/InvalidTokenArray.php',
     94        'PHPCSUtils\\Exceptions\\LogicException' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/LogicException.php',
     95        'PHPCSUtils\\Exceptions\\MissingArgumentError' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/MissingArgumentError.php',
     96        'PHPCSUtils\\Exceptions\\OutOfBoundsStackPtr' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/OutOfBoundsStackPtr.php',
     97        'PHPCSUtils\\Exceptions\\RuntimeException' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/RuntimeException.php',
     98        'PHPCSUtils\\Exceptions\\TestFileNotFound' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestFileNotFound.php',
     99        'PHPCSUtils\\Exceptions\\TestMarkerNotFound' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestMarkerNotFound.php',
     100        'PHPCSUtils\\Exceptions\\TestTargetNotFound' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestTargetNotFound.php',
     101        'PHPCSUtils\\Exceptions\\TypeError' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TypeError.php',
     102        'PHPCSUtils\\Exceptions\\UnexpectedTokenType' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/UnexpectedTokenType.php',
     103        'PHPCSUtils\\Exceptions\\ValueError' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/ValueError.php',
     104        'PHPCSUtils\\Fixers\\SpacesFixer' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Fixers/SpacesFixer.php',
     105        'PHPCSUtils\\Internal\\AttributeHelper' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/AttributeHelper.php',
     106        'PHPCSUtils\\Internal\\Cache' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/Cache.php',
     107        'PHPCSUtils\\Internal\\IsShortArrayOrList' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrList.php',
     108        'PHPCSUtils\\Internal\\IsShortArrayOrListWithCache' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrListWithCache.php',
     109        'PHPCSUtils\\Internal\\NoFileCache' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/NoFileCache.php',
     110        'PHPCSUtils\\Internal\\StableCollections' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Internal/StableCollections.php',
     111        'PHPCSUtils\\TestUtils\\ConfigDouble' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/ConfigDouble.php',
     112        'PHPCSUtils\\TestUtils\\RulesetDouble' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/RulesetDouble.php',
     113        'PHPCSUtils\\TestUtils\\UtilityMethodTestCase' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/UtilityMethodTestCase.php',
     114        'PHPCSUtils\\Tokens\\Collections' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/Collections.php',
     115        'PHPCSUtils\\Tokens\\TokenHelper' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/TokenHelper.php',
     116        'PHPCSUtils\\Utils\\Arrays' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Arrays.php',
     117        'PHPCSUtils\\Utils\\AttributeBlock' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/AttributeBlock.php',
     118        'PHPCSUtils\\Utils\\Conditions' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Conditions.php',
     119        'PHPCSUtils\\Utils\\Constants' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Constants.php',
     120        'PHPCSUtils\\Utils\\Context' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Context.php',
     121        'PHPCSUtils\\Utils\\ControlStructures' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ControlStructures.php',
     122        'PHPCSUtils\\Utils\\FileInfo' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FileInfo.php',
     123        'PHPCSUtils\\Utils\\FilePath' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FilePath.php',
     124        'PHPCSUtils\\Utils\\FunctionDeclarations' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FunctionDeclarations.php',
     125        'PHPCSUtils\\Utils\\GetTokensAsString' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/GetTokensAsString.php',
     126        'PHPCSUtils\\Utils\\Lists' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Lists.php',
     127        'PHPCSUtils\\Utils\\MessageHelper' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/MessageHelper.php',
     128        'PHPCSUtils\\Utils\\Namespaces' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Namespaces.php',
     129        'PHPCSUtils\\Utils\\NamingConventions' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/NamingConventions.php',
     130        'PHPCSUtils\\Utils\\Numbers' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Numbers.php',
     131        'PHPCSUtils\\Utils\\ObjectDeclarations' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ObjectDeclarations.php',
     132        'PHPCSUtils\\Utils\\Operators' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Operators.php',
     133        'PHPCSUtils\\Utils\\Orthography' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Orthography.php',
     134        'PHPCSUtils\\Utils\\Parentheses' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Parentheses.php',
     135        'PHPCSUtils\\Utils\\PassedParameters' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/PassedParameters.php',
     136        'PHPCSUtils\\Utils\\Scopes' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Scopes.php',
     137        'PHPCSUtils\\Utils\\TextStrings' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TextStrings.php',
     138        'PHPCSUtils\\Utils\\TypeString' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TypeString.php',
     139        'PHPCSUtils\\Utils\\UseStatements' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/UseStatements.php',
     140        'PHPCSUtils\\Utils\\Variables' => __DIR__ . '/..' . '/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Variables.php',
    193141    );
    194142
     
    196144    {
    197145        return \Closure::bind(function () use ($loader) {
    198             $loader->prefixLengthsPsr4 = ComposerStaticInit9db325f9fd5653291ac702b1f01283b2::$prefixLengthsPsr4;
    199             $loader->prefixDirsPsr4 = ComposerStaticInit9db325f9fd5653291ac702b1f01283b2::$prefixDirsPsr4;
    200             $loader->classMap = ComposerStaticInit9db325f9fd5653291ac702b1f01283b2::$classMap;
     146            $loader->prefixLengthsPsr4 = ComposerStaticInit21c74728ec9f69e24489f8aa12383392::$prefixLengthsPsr4;
     147            $loader->prefixDirsPsr4 = ComposerStaticInit21c74728ec9f69e24489f8aa12383392::$prefixDirsPsr4;
     148            $loader->classMap = ComposerStaticInit21c74728ec9f69e24489f8aa12383392::$classMap;
    201149
    202150        }, null, ClassLoader::class);
  • zero-spam/trunk/vendor/composer/installed.json

    r3447426 r3448054  
    11{
    22    "packages": [
     3        {
     4            "name": "10up/phpcs-composer",
     5            "version": "3.0.1",
     6            "version_normalized": "3.0.1.0",
     7            "source": {
     8                "type": "git",
     9                "url": "https://github.com/10up/phpcs-composer.git",
     10                "reference": "ed5f6d4e7dc090338cc86b5925fb961b21e4e4d4"
     11            },
     12            "dist": {
     13                "type": "zip",
     14                "url": "https://api.github.com/repos/10up/phpcs-composer/zipball/ed5f6d4e7dc090338cc86b5925fb961b21e4e4d4",
     15                "reference": "ed5f6d4e7dc090338cc86b5925fb961b21e4e4d4",
     16                "shasum": ""
     17            },
     18            "require": {
     19                "automattic/vipwpcs": "^3.0",
     20                "phpcompatibility/phpcompatibility-wp": "^2"
     21            },
     22            "require-dev": {
     23                "dealerdirect/phpcodesniffer-composer-installer": "*",
     24                "phpcompatibility/php-compatibility": "10.0.0-alpha2 as 9.99.99"
     25            },
     26            "time": "2025-12-09T17:31:17+00:00",
     27            "type": "phpcodesniffer-standard",
     28            "installation-source": "dist",
     29            "notification-url": "https://packagist.org/downloads/",
     30            "license": [
     31                "MIT"
     32            ],
     33            "authors": [
     34                {
     35                    "name": "10up",
     36                    "homepage": "https://10up.com/"
     37                }
     38            ],
     39            "description": "10up's PHP CodeSniffer Ruleset",
     40            "support": {
     41                "issues": "https://github.com/10up/phpcs-composer/issues",
     42                "source": "https://github.com/10up/phpcs-composer/tree/3.0.1"
     43            },
     44            "install-path": "../10up/phpcs-composer"
     45        },
     46        {
     47            "name": "automattic/vipwpcs",
     48            "version": "3.0.1",
     49            "version_normalized": "3.0.1.0",
     50            "source": {
     51                "type": "git",
     52                "url": "https://github.com/Automattic/VIP-Coding-Standards.git",
     53                "reference": "2b1d206d81b74ed999023cffd924f862ff2753c8"
     54            },
     55            "dist": {
     56                "type": "zip",
     57                "url": "https://api.github.com/repos/Automattic/VIP-Coding-Standards/zipball/2b1d206d81b74ed999023cffd924f862ff2753c8",
     58                "reference": "2b1d206d81b74ed999023cffd924f862ff2753c8",
     59                "shasum": ""
     60            },
     61            "require": {
     62                "php": ">=5.4",
     63                "phpcsstandards/phpcsextra": "^1.2.1",
     64                "phpcsstandards/phpcsutils": "^1.0.11",
     65                "sirbrillig/phpcs-variable-analysis": "^2.11.18",
     66                "squizlabs/php_codesniffer": "^3.9.2",
     67                "wp-coding-standards/wpcs": "^3.1.0"
     68            },
     69            "require-dev": {
     70                "php-parallel-lint/php-console-highlighter": "^1.0.0",
     71                "php-parallel-lint/php-parallel-lint": "^1.3.2",
     72                "phpcompatibility/php-compatibility": "^9",
     73                "phpcsstandards/phpcsdevtools": "^1.0",
     74                "phpunit/phpunit": "^4 || ^5 || ^6 || ^7 || ^8 || ^9"
     75            },
     76            "time": "2024-05-10T20:31:09+00:00",
     77            "type": "phpcodesniffer-standard",
     78            "installation-source": "dist",
     79            "notification-url": "https://packagist.org/downloads/",
     80            "license": [
     81                "MIT"
     82            ],
     83            "authors": [
     84                {
     85                    "name": "Contributors",
     86                    "homepage": "https://github.com/Automattic/VIP-Coding-Standards/graphs/contributors"
     87                }
     88            ],
     89            "description": "PHP_CodeSniffer rules (sniffs) to enforce WordPress VIP minimum coding conventions",
     90            "keywords": [
     91                "phpcs",
     92                "standards",
     93                "static analysis",
     94                "wordpress"
     95            ],
     96            "support": {
     97                "issues": "https://github.com/Automattic/VIP-Coding-Standards/issues",
     98                "source": "https://github.com/Automattic/VIP-Coding-Standards",
     99                "wiki": "https://github.com/Automattic/VIP-Coding-Standards/wiki"
     100            },
     101            "install-path": "../automattic/vipwpcs"
     102        },
     103        {
     104            "name": "dealerdirect/phpcodesniffer-composer-installer",
     105            "version": "v1.2.0",
     106            "version_normalized": "1.2.0.0",
     107            "source": {
     108                "type": "git",
     109                "url": "https://github.com/PHPCSStandards/composer-installer.git",
     110                "reference": "845eb62303d2ca9b289ef216356568ccc075ffd1"
     111            },
     112            "dist": {
     113                "type": "zip",
     114                "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/845eb62303d2ca9b289ef216356568ccc075ffd1",
     115                "reference": "845eb62303d2ca9b289ef216356568ccc075ffd1",
     116                "shasum": ""
     117            },
     118            "require": {
     119                "composer-plugin-api": "^2.2",
     120                "php": ">=5.4",
     121                "squizlabs/php_codesniffer": "^3.1.0 || ^4.0"
     122            },
     123            "require-dev": {
     124                "composer/composer": "^2.2",
     125                "ext-json": "*",
     126                "ext-zip": "*",
     127                "php-parallel-lint/php-parallel-lint": "^1.4.0",
     128                "phpcompatibility/php-compatibility": "^9.0 || ^10.0.0@dev",
     129                "yoast/phpunit-polyfills": "^1.0"
     130            },
     131            "time": "2025-11-11T04:32:07+00:00",
     132            "type": "composer-plugin",
     133            "extra": {
     134                "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
     135            },
     136            "installation-source": "dist",
     137            "autoload": {
     138                "psr-4": {
     139                    "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
     140                }
     141            },
     142            "notification-url": "https://packagist.org/downloads/",
     143            "license": [
     144                "MIT"
     145            ],
     146            "authors": [
     147                {
     148                    "name": "Franck Nijhof",
     149                    "email": "opensource@frenck.dev",
     150                    "homepage": "https://frenck.dev",
     151                    "role": "Open source developer"
     152                },
     153                {
     154                    "name": "Contributors",
     155                    "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
     156                }
     157            ],
     158            "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
     159            "keywords": [
     160                "PHPCodeSniffer",
     161                "PHP_CodeSniffer",
     162                "code quality",
     163                "codesniffer",
     164                "composer",
     165                "installer",
     166                "phpcbf",
     167                "phpcs",
     168                "plugin",
     169                "qa",
     170                "quality",
     171                "standard",
     172                "standards",
     173                "style guide",
     174                "stylecheck",
     175                "tests"
     176            ],
     177            "support": {
     178                "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
     179                "security": "https://github.com/PHPCSStandards/composer-installer/security/policy",
     180                "source": "https://github.com/PHPCSStandards/composer-installer"
     181            },
     182            "funding": [
     183                {
     184                    "url": "https://github.com/PHPCSStandards",
     185                    "type": "github"
     186                },
     187                {
     188                    "url": "https://github.com/jrfnl",
     189                    "type": "github"
     190                },
     191                {
     192                    "url": "https://opencollective.com/php_codesniffer",
     193                    "type": "open_collective"
     194                },
     195                {
     196                    "url": "https://thanks.dev/u/gh/phpcsstandards",
     197                    "type": "thanks_dev"
     198                }
     199            ],
     200            "install-path": "../dealerdirect/phpcodesniffer-composer-installer"
     201        },
    3202        {
    4203            "name": "guzzlehttp/guzzle",
     
    403602        },
    404603        {
     604            "name": "phpcompatibility/php-compatibility",
     605            "version": "9.3.5",
     606            "version_normalized": "9.3.5.0",
     607            "source": {
     608                "type": "git",
     609                "url": "https://github.com/PHPCompatibility/PHPCompatibility.git",
     610                "reference": "9fb324479acf6f39452e0655d2429cc0d3914243"
     611            },
     612            "dist": {
     613                "type": "zip",
     614                "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/9fb324479acf6f39452e0655d2429cc0d3914243",
     615                "reference": "9fb324479acf6f39452e0655d2429cc0d3914243",
     616                "shasum": ""
     617            },
     618            "require": {
     619                "php": ">=5.3",
     620                "squizlabs/php_codesniffer": "^2.3 || ^3.0.2"
     621            },
     622            "conflict": {
     623                "squizlabs/php_codesniffer": "2.6.2"
     624            },
     625            "require-dev": {
     626                "phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0"
     627            },
     628            "suggest": {
     629                "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.",
     630                "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
     631            },
     632            "time": "2019-12-27T09:44:58+00:00",
     633            "type": "phpcodesniffer-standard",
     634            "installation-source": "dist",
     635            "notification-url": "https://packagist.org/downloads/",
     636            "license": [
     637                "LGPL-3.0-or-later"
     638            ],
     639            "authors": [
     640                {
     641                    "name": "Wim Godden",
     642                    "homepage": "https://github.com/wimg",
     643                    "role": "lead"
     644                },
     645                {
     646                    "name": "Juliette Reinders Folmer",
     647                    "homepage": "https://github.com/jrfnl",
     648                    "role": "lead"
     649                },
     650                {
     651                    "name": "Contributors",
     652                    "homepage": "https://github.com/PHPCompatibility/PHPCompatibility/graphs/contributors"
     653                }
     654            ],
     655            "description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.",
     656            "homepage": "http://techblog.wimgodden.be/tag/codesniffer/",
     657            "keywords": [
     658                "compatibility",
     659                "phpcs",
     660                "standards"
     661            ],
     662            "support": {
     663                "issues": "https://github.com/PHPCompatibility/PHPCompatibility/issues",
     664                "source": "https://github.com/PHPCompatibility/PHPCompatibility"
     665            },
     666            "install-path": "../phpcompatibility/php-compatibility"
     667        },
     668        {
     669            "name": "phpcompatibility/phpcompatibility-paragonie",
     670            "version": "1.3.4",
     671            "version_normalized": "1.3.4.0",
     672            "source": {
     673                "type": "git",
     674                "url": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie.git",
     675                "reference": "244d7b04fc4bc2117c15f5abe23eb933b5f02bbf"
     676            },
     677            "dist": {
     678                "type": "zip",
     679                "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityParagonie/zipball/244d7b04fc4bc2117c15f5abe23eb933b5f02bbf",
     680                "reference": "244d7b04fc4bc2117c15f5abe23eb933b5f02bbf",
     681                "shasum": ""
     682            },
     683            "require": {
     684                "phpcompatibility/php-compatibility": "^9.0"
     685            },
     686            "require-dev": {
     687                "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
     688                "paragonie/random_compat": "dev-master",
     689                "paragonie/sodium_compat": "dev-master"
     690            },
     691            "suggest": {
     692                "dealerdirect/phpcodesniffer-composer-installer": "^1.0 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.",
     693                "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
     694            },
     695            "time": "2025-09-19T17:43:28+00:00",
     696            "type": "phpcodesniffer-standard",
     697            "installation-source": "dist",
     698            "notification-url": "https://packagist.org/downloads/",
     699            "license": [
     700                "LGPL-3.0-or-later"
     701            ],
     702            "authors": [
     703                {
     704                    "name": "Wim Godden",
     705                    "role": "lead"
     706                },
     707                {
     708                    "name": "Juliette Reinders Folmer",
     709                    "role": "lead"
     710                }
     711            ],
     712            "description": "A set of rulesets for PHP_CodeSniffer to check for PHP cross-version compatibility issues in projects, while accounting for polyfills provided by the Paragonie polyfill libraries.",
     713            "homepage": "http://phpcompatibility.com/",
     714            "keywords": [
     715                "compatibility",
     716                "paragonie",
     717                "phpcs",
     718                "polyfill",
     719                "standards",
     720                "static analysis"
     721            ],
     722            "support": {
     723                "issues": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie/issues",
     724                "security": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie/security/policy",
     725                "source": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie"
     726            },
     727            "funding": [
     728                {
     729                    "url": "https://github.com/PHPCompatibility",
     730                    "type": "github"
     731                },
     732                {
     733                    "url": "https://github.com/jrfnl",
     734                    "type": "github"
     735                },
     736                {
     737                    "url": "https://opencollective.com/php_codesniffer",
     738                    "type": "open_collective"
     739                },
     740                {
     741                    "url": "https://thanks.dev/u/gh/phpcompatibility",
     742                    "type": "thanks_dev"
     743                }
     744            ],
     745            "install-path": "../phpcompatibility/phpcompatibility-paragonie"
     746        },
     747        {
     748            "name": "phpcompatibility/phpcompatibility-wp",
     749            "version": "2.1.8",
     750            "version_normalized": "2.1.8.0",
     751            "source": {
     752                "type": "git",
     753                "url": "https://github.com/PHPCompatibility/PHPCompatibilityWP.git",
     754                "reference": "7c8d18b4d90dac9e86b0869a608fa09158e168fa"
     755            },
     756            "dist": {
     757                "type": "zip",
     758                "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityWP/zipball/7c8d18b4d90dac9e86b0869a608fa09158e168fa",
     759                "reference": "7c8d18b4d90dac9e86b0869a608fa09158e168fa",
     760                "shasum": ""
     761            },
     762            "require": {
     763                "phpcompatibility/php-compatibility": "^9.0",
     764                "phpcompatibility/phpcompatibility-paragonie": "^1.0",
     765                "squizlabs/php_codesniffer": "^3.3"
     766            },
     767            "require-dev": {
     768                "dealerdirect/phpcodesniffer-composer-installer": "^1.0"
     769            },
     770            "suggest": {
     771                "dealerdirect/phpcodesniffer-composer-installer": "^1.0 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.",
     772                "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
     773            },
     774            "time": "2025-10-18T00:05:59+00:00",
     775            "type": "phpcodesniffer-standard",
     776            "installation-source": "dist",
     777            "notification-url": "https://packagist.org/downloads/",
     778            "license": [
     779                "LGPL-3.0-or-later"
     780            ],
     781            "authors": [
     782                {
     783                    "name": "Wim Godden",
     784                    "role": "lead"
     785                },
     786                {
     787                    "name": "Juliette Reinders Folmer",
     788                    "role": "lead"
     789                }
     790            ],
     791            "description": "A ruleset for PHP_CodeSniffer to check for PHP cross-version compatibility issues in projects, while accounting for polyfills provided by WordPress.",
     792            "homepage": "http://phpcompatibility.com/",
     793            "keywords": [
     794                "compatibility",
     795                "phpcs",
     796                "standards",
     797                "static analysis",
     798                "wordpress"
     799            ],
     800            "support": {
     801                "issues": "https://github.com/PHPCompatibility/PHPCompatibilityWP/issues",
     802                "security": "https://github.com/PHPCompatibility/PHPCompatibilityWP/security/policy",
     803                "source": "https://github.com/PHPCompatibility/PHPCompatibilityWP"
     804            },
     805            "funding": [
     806                {
     807                    "url": "https://github.com/PHPCompatibility",
     808                    "type": "github"
     809                },
     810                {
     811                    "url": "https://github.com/jrfnl",
     812                    "type": "github"
     813                },
     814                {
     815                    "url": "https://opencollective.com/php_codesniffer",
     816                    "type": "open_collective"
     817                },
     818                {
     819                    "url": "https://thanks.dev/u/gh/phpcompatibility",
     820                    "type": "thanks_dev"
     821                }
     822            ],
     823            "install-path": "../phpcompatibility/phpcompatibility-wp"
     824        },
     825        {
     826            "name": "phpcsstandards/phpcsextra",
     827            "version": "1.5.0",
     828            "version_normalized": "1.5.0.0",
     829            "source": {
     830                "type": "git",
     831                "url": "https://github.com/PHPCSStandards/PHPCSExtra.git",
     832                "reference": "b598aa890815b8df16363271b659d73280129101"
     833            },
     834            "dist": {
     835                "type": "zip",
     836                "url": "https://api.github.com/repos/PHPCSStandards/PHPCSExtra/zipball/b598aa890815b8df16363271b659d73280129101",
     837                "reference": "b598aa890815b8df16363271b659d73280129101",
     838                "shasum": ""
     839            },
     840            "require": {
     841                "php": ">=5.4",
     842                "phpcsstandards/phpcsutils": "^1.2.0",
     843                "squizlabs/php_codesniffer": "^3.13.5 || ^4.0.1"
     844            },
     845            "require-dev": {
     846                "php-parallel-lint/php-console-highlighter": "^1.0",
     847                "php-parallel-lint/php-parallel-lint": "^1.4.0",
     848                "phpcsstandards/phpcsdevcs": "^1.2.0",
     849                "phpcsstandards/phpcsdevtools": "^1.2.1",
     850                "phpunit/phpunit": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
     851            },
     852            "time": "2025-11-12T23:06:57+00:00",
     853            "type": "phpcodesniffer-standard",
     854            "extra": {
     855                "branch-alias": {
     856                    "dev-stable": "1.x-dev",
     857                    "dev-develop": "1.x-dev"
     858                }
     859            },
     860            "installation-source": "dist",
     861            "notification-url": "https://packagist.org/downloads/",
     862            "license": [
     863                "LGPL-3.0-or-later"
     864            ],
     865            "authors": [
     866                {
     867                    "name": "Juliette Reinders Folmer",
     868                    "homepage": "https://github.com/jrfnl",
     869                    "role": "lead"
     870                },
     871                {
     872                    "name": "Contributors",
     873                    "homepage": "https://github.com/PHPCSStandards/PHPCSExtra/graphs/contributors"
     874                }
     875            ],
     876            "description": "A collection of sniffs and standards for use with PHP_CodeSniffer.",
     877            "keywords": [
     878                "PHP_CodeSniffer",
     879                "phpcbf",
     880                "phpcodesniffer-standard",
     881                "phpcs",
     882                "standards",
     883                "static analysis"
     884            ],
     885            "support": {
     886                "issues": "https://github.com/PHPCSStandards/PHPCSExtra/issues",
     887                "security": "https://github.com/PHPCSStandards/PHPCSExtra/security/policy",
     888                "source": "https://github.com/PHPCSStandards/PHPCSExtra"
     889            },
     890            "funding": [
     891                {
     892                    "url": "https://github.com/PHPCSStandards",
     893                    "type": "github"
     894                },
     895                {
     896                    "url": "https://github.com/jrfnl",
     897                    "type": "github"
     898                },
     899                {
     900                    "url": "https://opencollective.com/php_codesniffer",
     901                    "type": "open_collective"
     902                },
     903                {
     904                    "url": "https://thanks.dev/u/gh/phpcsstandards",
     905                    "type": "thanks_dev"
     906                }
     907            ],
     908            "install-path": "../phpcsstandards/phpcsextra"
     909        },
     910        {
     911            "name": "phpcsstandards/phpcsutils",
     912            "version": "1.2.2",
     913            "version_normalized": "1.2.2.0",
     914            "source": {
     915                "type": "git",
     916                "url": "https://github.com/PHPCSStandards/PHPCSUtils.git",
     917                "reference": "c216317e96c8b3f5932808f9b0f1f7a14e3bbf55"
     918            },
     919            "dist": {
     920                "type": "zip",
     921                "url": "https://api.github.com/repos/PHPCSStandards/PHPCSUtils/zipball/c216317e96c8b3f5932808f9b0f1f7a14e3bbf55",
     922                "reference": "c216317e96c8b3f5932808f9b0f1f7a14e3bbf55",
     923                "shasum": ""
     924            },
     925            "require": {
     926                "dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7 || ^1.0",
     927                "php": ">=5.4",
     928                "squizlabs/php_codesniffer": "^3.13.5 || ^4.0.1"
     929            },
     930            "require-dev": {
     931                "ext-filter": "*",
     932                "php-parallel-lint/php-console-highlighter": "^1.0",
     933                "php-parallel-lint/php-parallel-lint": "^1.4.0",
     934                "phpcsstandards/phpcsdevcs": "^1.2.0",
     935                "yoast/phpunit-polyfills": "^1.1.0 || ^2.0.0 || ^3.0.0"
     936            },
     937            "time": "2025-12-08T14:27:58+00:00",
     938            "type": "phpcodesniffer-standard",
     939            "extra": {
     940                "branch-alias": {
     941                    "dev-stable": "1.x-dev",
     942                    "dev-develop": "1.x-dev"
     943                }
     944            },
     945            "installation-source": "dist",
     946            "autoload": {
     947                "classmap": [
     948                    "PHPCSUtils/"
     949                ]
     950            },
     951            "notification-url": "https://packagist.org/downloads/",
     952            "license": [
     953                "LGPL-3.0-or-later"
     954            ],
     955            "authors": [
     956                {
     957                    "name": "Juliette Reinders Folmer",
     958                    "homepage": "https://github.com/jrfnl",
     959                    "role": "lead"
     960                },
     961                {
     962                    "name": "Contributors",
     963                    "homepage": "https://github.com/PHPCSStandards/PHPCSUtils/graphs/contributors"
     964                }
     965            ],
     966            "description": "A suite of utility functions for use with PHP_CodeSniffer",
     967            "homepage": "https://phpcsutils.com/",
     968            "keywords": [
     969                "PHP_CodeSniffer",
     970                "phpcbf",
     971                "phpcodesniffer-standard",
     972                "phpcs",
     973                "phpcs3",
     974                "phpcs4",
     975                "standards",
     976                "static analysis",
     977                "tokens",
     978                "utility"
     979            ],
     980            "support": {
     981                "docs": "https://phpcsutils.com/",
     982                "issues": "https://github.com/PHPCSStandards/PHPCSUtils/issues",
     983                "security": "https://github.com/PHPCSStandards/PHPCSUtils/security/policy",
     984                "source": "https://github.com/PHPCSStandards/PHPCSUtils"
     985            },
     986            "funding": [
     987                {
     988                    "url": "https://github.com/PHPCSStandards",
     989                    "type": "github"
     990                },
     991                {
     992                    "url": "https://github.com/jrfnl",
     993                    "type": "github"
     994                },
     995                {
     996                    "url": "https://opencollective.com/php_codesniffer",
     997                    "type": "open_collective"
     998                },
     999                {
     1000                    "url": "https://thanks.dev/u/gh/phpcsstandards",
     1001                    "type": "thanks_dev"
     1002                }
     1003            ],
     1004            "install-path": "../phpcsstandards/phpcsutils"
     1005        },
     1006        {
    4051007            "name": "psr/http-client",
    4061008            "version": "1.0.3",
     
    7391341        },
    7401342        {
     1343            "name": "sirbrillig/phpcs-variable-analysis",
     1344            "version": "v2.13.0",
     1345            "version_normalized": "2.13.0.0",
     1346            "source": {
     1347                "type": "git",
     1348                "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git",
     1349                "reference": "a15e970b8a0bf64cfa5e86d941f5e6b08855f369"
     1350            },
     1351            "dist": {
     1352                "type": "zip",
     1353                "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/a15e970b8a0bf64cfa5e86d941f5e6b08855f369",
     1354                "reference": "a15e970b8a0bf64cfa5e86d941f5e6b08855f369",
     1355                "shasum": ""
     1356            },
     1357            "require": {
     1358                "php": ">=5.4.0",
     1359                "squizlabs/php_codesniffer": "^3.5.7 || ^4.0.0"
     1360            },
     1361            "require-dev": {
     1362                "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0",
     1363                "phpstan/phpstan": "^1.7 || ^2.0",
     1364                "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0 || ^10.5.32 || ^11.3.3",
     1365                "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0 || ^6.0 || ^7.0"
     1366            },
     1367            "time": "2025-09-30T22:22:48+00:00",
     1368            "type": "phpcodesniffer-standard",
     1369            "installation-source": "dist",
     1370            "autoload": {
     1371                "psr-4": {
     1372                    "VariableAnalysis\\": "VariableAnalysis/"
     1373                }
     1374            },
     1375            "notification-url": "https://packagist.org/downloads/",
     1376            "license": [
     1377                "BSD-2-Clause"
     1378            ],
     1379            "authors": [
     1380                {
     1381                    "name": "Sam Graham",
     1382                    "email": "php-codesniffer-variableanalysis@illusori.co.uk"
     1383                },
     1384                {
     1385                    "name": "Payton Swick",
     1386                    "email": "payton@foolord.com"
     1387                }
     1388            ],
     1389            "description": "A PHPCS sniff to detect problems with variables.",
     1390            "keywords": [
     1391                "phpcs",
     1392                "static analysis"
     1393            ],
     1394            "support": {
     1395                "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues",
     1396                "source": "https://github.com/sirbrillig/phpcs-variable-analysis",
     1397                "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki"
     1398            },
     1399            "install-path": "../sirbrillig/phpcs-variable-analysis"
     1400        },
     1401        {
     1402            "name": "squizlabs/php_codesniffer",
     1403            "version": "3.13.5",
     1404            "version_normalized": "3.13.5.0",
     1405            "source": {
     1406                "type": "git",
     1407                "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
     1408                "reference": "0ca86845ce43291e8f5692c7356fccf3bcf02bf4"
     1409            },
     1410            "dist": {
     1411                "type": "zip",
     1412                "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/0ca86845ce43291e8f5692c7356fccf3bcf02bf4",
     1413                "reference": "0ca86845ce43291e8f5692c7356fccf3bcf02bf4",
     1414                "shasum": ""
     1415            },
     1416            "require": {
     1417                "ext-simplexml": "*",
     1418                "ext-tokenizer": "*",
     1419                "ext-xmlwriter": "*",
     1420                "php": ">=5.4.0"
     1421            },
     1422            "require-dev": {
     1423                "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
     1424            },
     1425            "time": "2025-11-04T16:30:35+00:00",
     1426            "bin": [
     1427                "bin/phpcbf",
     1428                "bin/phpcs"
     1429            ],
     1430            "type": "library",
     1431            "installation-source": "dist",
     1432            "notification-url": "https://packagist.org/downloads/",
     1433            "license": [
     1434                "BSD-3-Clause"
     1435            ],
     1436            "authors": [
     1437                {
     1438                    "name": "Greg Sherwood",
     1439                    "role": "Former lead"
     1440                },
     1441                {
     1442                    "name": "Juliette Reinders Folmer",
     1443                    "role": "Current lead"
     1444                },
     1445                {
     1446                    "name": "Contributors",
     1447                    "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
     1448                }
     1449            ],
     1450            "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
     1451            "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
     1452            "keywords": [
     1453                "phpcs",
     1454                "standards",
     1455                "static analysis"
     1456            ],
     1457            "support": {
     1458                "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
     1459                "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
     1460                "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
     1461                "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
     1462            },
     1463            "funding": [
     1464                {
     1465                    "url": "https://github.com/PHPCSStandards",
     1466                    "type": "github"
     1467                },
     1468                {
     1469                    "url": "https://github.com/jrfnl",
     1470                    "type": "github"
     1471                },
     1472                {
     1473                    "url": "https://opencollective.com/php_codesniffer",
     1474                    "type": "open_collective"
     1475                },
     1476                {
     1477                    "url": "https://thanks.dev/u/gh/phpcsstandards",
     1478                    "type": "thanks_dev"
     1479                }
     1480            ],
     1481            "install-path": "../squizlabs/php_codesniffer"
     1482        },
     1483        {
    7411484            "name": "symfony/deprecation-contracts",
    7421485            "version": "v3.6.0",
     
    8071550            ],
    8081551            "install-path": "../symfony/deprecation-contracts"
     1552        },
     1553        {
     1554            "name": "wp-coding-standards/wpcs",
     1555            "version": "3.3.0",
     1556            "version_normalized": "3.3.0.0",
     1557            "source": {
     1558                "type": "git",
     1559                "url": "https://github.com/WordPress/WordPress-Coding-Standards.git",
     1560                "reference": "7795ec6fa05663d716a549d0b44e47ffc8b0d4a6"
     1561            },
     1562            "dist": {
     1563                "type": "zip",
     1564                "url": "https://api.github.com/repos/WordPress/WordPress-Coding-Standards/zipball/7795ec6fa05663d716a549d0b44e47ffc8b0d4a6",
     1565                "reference": "7795ec6fa05663d716a549d0b44e47ffc8b0d4a6",
     1566                "shasum": ""
     1567            },
     1568            "require": {
     1569                "ext-filter": "*",
     1570                "ext-libxml": "*",
     1571                "ext-tokenizer": "*",
     1572                "ext-xmlreader": "*",
     1573                "php": ">=7.2",
     1574                "phpcsstandards/phpcsextra": "^1.5.0",
     1575                "phpcsstandards/phpcsutils": "^1.1.0",
     1576                "squizlabs/php_codesniffer": "^3.13.4"
     1577            },
     1578            "require-dev": {
     1579                "php-parallel-lint/php-console-highlighter": "^1.0.0",
     1580                "php-parallel-lint/php-parallel-lint": "^1.4.0",
     1581                "phpcompatibility/php-compatibility": "^10.0.0@dev",
     1582                "phpcsstandards/phpcsdevtools": "^1.2.0",
     1583                "phpunit/phpunit": "^8.0 || ^9.0"
     1584            },
     1585            "suggest": {
     1586                "ext-iconv": "For improved results",
     1587                "ext-mbstring": "For improved results"
     1588            },
     1589            "time": "2025-11-25T12:08:04+00:00",
     1590            "type": "phpcodesniffer-standard",
     1591            "installation-source": "dist",
     1592            "notification-url": "https://packagist.org/downloads/",
     1593            "license": [
     1594                "MIT"
     1595            ],
     1596            "authors": [
     1597                {
     1598                    "name": "Contributors",
     1599                    "homepage": "https://github.com/WordPress/WordPress-Coding-Standards/graphs/contributors"
     1600                }
     1601            ],
     1602            "description": "PHP_CodeSniffer rules (sniffs) to enforce WordPress coding conventions",
     1603            "keywords": [
     1604                "phpcs",
     1605                "standards",
     1606                "static analysis",
     1607                "wordpress"
     1608            ],
     1609            "support": {
     1610                "issues": "https://github.com/WordPress/WordPress-Coding-Standards/issues",
     1611                "source": "https://github.com/WordPress/WordPress-Coding-Standards",
     1612                "wiki": "https://github.com/WordPress/WordPress-Coding-Standards/wiki"
     1613            },
     1614            "funding": [
     1615                {
     1616                    "url": "https://opencollective.com/php_codesniffer",
     1617                    "type": "custom"
     1618                }
     1619            ],
     1620            "install-path": "../wp-coding-standards/wpcs"
    8091621        }
    8101622    ],
    811     "dev": false,
    812     "dev-package-names": []
     1623    "dev": true,
     1624    "dev-package-names": [
     1625        "10up/phpcs-composer",
     1626        "automattic/vipwpcs",
     1627        "dealerdirect/phpcodesniffer-composer-installer",
     1628        "phpcompatibility/php-compatibility",
     1629        "phpcompatibility/phpcompatibility-paragonie",
     1630        "phpcompatibility/phpcompatibility-wp",
     1631        "phpcsstandards/phpcsextra",
     1632        "phpcsstandards/phpcsutils",
     1633        "sirbrillig/phpcs-variable-analysis",
     1634        "squizlabs/php_codesniffer",
     1635        "wp-coding-standards/wpcs"
     1636    ]
    8131637}
  • zero-spam/trunk/vendor/composer/installed.php

    r3447426 r3448054  
    22    'root' => array(
    33        'name' => 'highfivery/zero-spam-for-wordpress',
    4         'pretty_version' => 'trunk',
    5         'version' => 'dev-trunk',
    6         'reference' => null,
     4        'pretty_version' => 'dev-main',
     5        'version' => 'dev-main',
     6        'reference' => '874d2a08f2ae192b88efd1eaab70070589133077',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
    99        'aliases' => array(),
    10         'dev' => false,
     10        'dev' => true,
    1111    ),
    1212    'versions' => array(
     13        '10up/phpcs-composer' => array(
     14            'pretty_version' => '3.0.1',
     15            'version' => '3.0.1.0',
     16            'reference' => 'ed5f6d4e7dc090338cc86b5925fb961b21e4e4d4',
     17            'type' => 'phpcodesniffer-standard',
     18            'install_path' => __DIR__ . '/../10up/phpcs-composer',
     19            'aliases' => array(),
     20            'dev_requirement' => true,
     21        ),
     22        'automattic/vipwpcs' => array(
     23            'pretty_version' => '3.0.1',
     24            'version' => '3.0.1.0',
     25            'reference' => '2b1d206d81b74ed999023cffd924f862ff2753c8',
     26            'type' => 'phpcodesniffer-standard',
     27            'install_path' => __DIR__ . '/../automattic/vipwpcs',
     28            'aliases' => array(),
     29            'dev_requirement' => true,
     30        ),
     31        'dealerdirect/phpcodesniffer-composer-installer' => array(
     32            'pretty_version' => 'v1.2.0',
     33            'version' => '1.2.0.0',
     34            'reference' => '845eb62303d2ca9b289ef216356568ccc075ffd1',
     35            'type' => 'composer-plugin',
     36            'install_path' => __DIR__ . '/../dealerdirect/phpcodesniffer-composer-installer',
     37            'aliases' => array(),
     38            'dev_requirement' => true,
     39        ),
    1340        'guzzlehttp/guzzle' => array(
    1441            'pretty_version' => '7.10.0',
     
    3966        ),
    4067        'highfivery/zero-spam-for-wordpress' => array(
    41             'pretty_version' => 'trunk',
    42             'version' => 'dev-trunk',
    43             'reference' => null,
     68            'pretty_version' => 'dev-main',
     69            'version' => 'dev-main',
     70            'reference' => '874d2a08f2ae192b88efd1eaab70070589133077',
    4471            'type' => 'wordpress-plugin',
    4572            'install_path' => __DIR__ . '/../../',
     
    5683            'dev_requirement' => false,
    5784        ),
     85        'phpcompatibility/php-compatibility' => array(
     86            'pretty_version' => '9.3.5',
     87            'version' => '9.3.5.0',
     88            'reference' => '9fb324479acf6f39452e0655d2429cc0d3914243',
     89            'type' => 'phpcodesniffer-standard',
     90            'install_path' => __DIR__ . '/../phpcompatibility/php-compatibility',
     91            'aliases' => array(),
     92            'dev_requirement' => true,
     93        ),
     94        'phpcompatibility/phpcompatibility-paragonie' => array(
     95            'pretty_version' => '1.3.4',
     96            'version' => '1.3.4.0',
     97            'reference' => '244d7b04fc4bc2117c15f5abe23eb933b5f02bbf',
     98            'type' => 'phpcodesniffer-standard',
     99            'install_path' => __DIR__ . '/../phpcompatibility/phpcompatibility-paragonie',
     100            'aliases' => array(),
     101            'dev_requirement' => true,
     102        ),
     103        'phpcompatibility/phpcompatibility-wp' => array(
     104            'pretty_version' => '2.1.8',
     105            'version' => '2.1.8.0',
     106            'reference' => '7c8d18b4d90dac9e86b0869a608fa09158e168fa',
     107            'type' => 'phpcodesniffer-standard',
     108            'install_path' => __DIR__ . '/../phpcompatibility/phpcompatibility-wp',
     109            'aliases' => array(),
     110            'dev_requirement' => true,
     111        ),
     112        'phpcsstandards/phpcsextra' => array(
     113            'pretty_version' => '1.5.0',
     114            'version' => '1.5.0.0',
     115            'reference' => 'b598aa890815b8df16363271b659d73280129101',
     116            'type' => 'phpcodesniffer-standard',
     117            'install_path' => __DIR__ . '/../phpcsstandards/phpcsextra',
     118            'aliases' => array(),
     119            'dev_requirement' => true,
     120        ),
     121        'phpcsstandards/phpcsutils' => array(
     122            'pretty_version' => '1.2.2',
     123            'version' => '1.2.2.0',
     124            'reference' => 'c216317e96c8b3f5932808f9b0f1f7a14e3bbf55',
     125            'type' => 'phpcodesniffer-standard',
     126            'install_path' => __DIR__ . '/../phpcsstandards/phpcsutils',
     127            'aliases' => array(),
     128            'dev_requirement' => true,
     129        ),
    58130        'psr/http-client' => array(
    59131            'pretty_version' => '1.0.3',
     
    134206            'dev_requirement' => false,
    135207        ),
     208        'sirbrillig/phpcs-variable-analysis' => array(
     209            'pretty_version' => 'v2.13.0',
     210            'version' => '2.13.0.0',
     211            'reference' => 'a15e970b8a0bf64cfa5e86d941f5e6b08855f369',
     212            'type' => 'phpcodesniffer-standard',
     213            'install_path' => __DIR__ . '/../sirbrillig/phpcs-variable-analysis',
     214            'aliases' => array(),
     215            'dev_requirement' => true,
     216        ),
     217        'squizlabs/php_codesniffer' => array(
     218            'pretty_version' => '3.13.5',
     219            'version' => '3.13.5.0',
     220            'reference' => '0ca86845ce43291e8f5692c7356fccf3bcf02bf4',
     221            'type' => 'library',
     222            'install_path' => __DIR__ . '/../squizlabs/php_codesniffer',
     223            'aliases' => array(),
     224            'dev_requirement' => true,
     225        ),
    136226        'symfony/deprecation-contracts' => array(
    137227            'pretty_version' => 'v3.6.0',
     
    143233            'dev_requirement' => false,
    144234        ),
     235        'wp-coding-standards/wpcs' => array(
     236            'pretty_version' => '3.3.0',
     237            'version' => '3.3.0.0',
     238            'reference' => '7795ec6fa05663d716a549d0b44e47ffc8b0d4a6',
     239            'type' => 'phpcodesniffer-standard',
     240            'install_path' => __DIR__ . '/../wp-coding-standards/wpcs',
     241            'aliases' => array(),
     242            'dev_requirement' => true,
     243        ),
    145244    ),
    146245);
  • zero-spam/trunk/wordpress-zero-spam.php

    r3447426 r3448054  
    1616 * Plugin URI:        https://wordpress.com/plugins/zero-spam/
    1717 * Description:       Tired of all the ineffective WordPress anti-spam & security plugins? Zero Spam for WordPress makes blocking spam &amp; malicious activity a cinch. <strong>Just activate, configure, and say goodbye to spam.</strong>
    18  * Version:           5.7.0
     18 * Version:           5.7.1
    1919 * Requires at least: 6.9
    2020 * Requires PHP:      8.2
     
    3434define( 'ZEROSPAM_PATH', plugin_dir_path( ZEROSPAM ) );
    3535define( 'ZEROSPAM_PLUGIN_BASE', plugin_basename( ZEROSPAM ) );
    36 define( 'ZEROSPAM_VERSION', '5.7.0' );
     36define( 'ZEROSPAM_VERSION', '5.7.1' );
    3737
    3838if ( defined( 'ZEROSPAM_DEVELOPMENT_URL' ) ) {
Note: See TracChangeset for help on using the changeset viewer.