Plugin Directory

Changeset 3398537


Ignore:
Timestamp:
11/19/2025 06:26:57 AM (4 months ago)
Author:
inc2734
Message:

Version up. v5.0.5

Location:
smart-custom-fields/trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • smart-custom-fields/trunk/classes/fields/class.field-boolean.php

    r3302736 r3398537  
    157157            if ( is_array( $value ) ) {
    158158                foreach ( $value as $key => $val ) {
    159                     $value[ $key ] = ! ! $val;
     159                    $value[ $key ] = (bool) $val;
    160160                }
    161161            } else {
    162                 $value = ! ! $value;
     162                $value = (bool) $value;
    163163            }
    164164        }
  • smart-custom-fields/trunk/classes/fields/class.field-related-posts.php

    r3302736 r3398537  
    266266            <div class="clear"></div>',
    267267            SCF_Config::PREFIX . 'relation-left',
    268             implode( ',', $post_type ),
     268            implode( ',', $post_type ?? array( 'post' ) ),
    269269            esc_attr( $limit ),
    270270            SCF_Config::PREFIX . 'search',
  • smart-custom-fields/trunk/classes/models/class.meta.php

    r3302736 r3398537  
    177177     */
    178178    public function is_saved_the_key( $key ) {
    179         if ( 'post' === $this->meta_type && 'auto-draft' === get_post_status( $this->get_id() ) ) {
    180             return false;
    181         }
    182 
    183179        if ( _get_meta_table( $this->meta_type ) && ! $this->maybe_4_3_term_meta() ) {
    184180            return metadata_exists( $this->meta_type, $this->id, $key );
  • smart-custom-fields/trunk/composer.json

    r3052172 r3398537  
    1919    },
    2020    "require-dev": {
    21         "wp-coding-standards/wpcs": "^3.0",
    22         "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
    23         "yoast/phpunit-polyfills": "^1.0",
    24         "phpcompatibility/phpcompatibility-wp": "*"
     21        "wp-coding-standards/wpcs": "^3.1",
     22        "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
     23        "phpcompatibility/phpcompatibility-wp": "*",
     24        "yoast/phpunit-polyfills": "^1.1"
    2525    },
    2626    "scripts" :{
  • smart-custom-fields/trunk/composer.lock

    r3052172 r3398537  
    55        "This file is @generated automatically"
    66    ],
    7     "content-hash": "a33ab1047730fe744941add9e8020420",
     7    "content-hash": "f4bc168eb0befd3155d7f2e5e4c9f7f2",
    88    "packages": [],
    99    "packages-dev": [
    1010        {
    1111            "name": "dealerdirect/phpcodesniffer-composer-installer",
    12             "version": "v0.7.2",
    13             "source": {
    14                 "type": "git",
    15                 "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
    16                 "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db"
    17             },
    18             "dist": {
    19                 "type": "zip",
    20                 "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",
    21                 "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",
    22                 "shasum": ""
    23             },
    24             "require": {
    25                 "composer-plugin-api": "^1.0 || ^2.0",
    26                 "php": ">=5.3",
    27                 "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
    28             },
    29             "require-dev": {
    30                 "composer/composer": "*",
    31                 "php-parallel-lint/php-parallel-lint": "^1.3.1",
    32                 "phpcompatibility/php-compatibility": "^9.0"
     12            "version": "v1.2.0",
     13            "source": {
     14                "type": "git",
     15                "url": "https://github.com/PHPCSStandards/composer-installer.git",
     16                "reference": "845eb62303d2ca9b289ef216356568ccc075ffd1"
     17            },
     18            "dist": {
     19                "type": "zip",
     20                "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/845eb62303d2ca9b289ef216356568ccc075ffd1",
     21                "reference": "845eb62303d2ca9b289ef216356568ccc075ffd1",
     22                "shasum": ""
     23            },
     24            "require": {
     25                "composer-plugin-api": "^2.2",
     26                "php": ">=5.4",
     27                "squizlabs/php_codesniffer": "^3.1.0 || ^4.0"
     28            },
     29            "require-dev": {
     30                "composer/composer": "^2.2",
     31                "ext-json": "*",
     32                "ext-zip": "*",
     33                "php-parallel-lint/php-parallel-lint": "^1.4.0",
     34                "phpcompatibility/php-compatibility": "^9.0 || ^10.0.0@dev",
     35                "yoast/phpunit-polyfills": "^1.0"
    3336            },
    3437            "type": "composer-plugin",
    3538            "extra": {
    36                 "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
     39                "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
    3740            },
    3841            "autoload": {
    3942                "psr-4": {
    40                     "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
     43                    "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
    4144                }
    4245            },
     
    4851                {
    4952                    "name": "Franck Nijhof",
    50                     "email": "franck.nijhof@dealerdirect.com",
    51                     "homepage": "http://www.frenck.nl",
    52                     "role": "Developer / IT Manager"
     53                    "email": "opensource@frenck.dev",
     54                    "homepage": "https://frenck.dev",
     55                    "role": "Open source developer"
    5356                },
    5457                {
    5558                    "name": "Contributors",
    56                     "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors"
     59                    "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
    5760                }
    5861            ],
    5962            "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
    60             "homepage": "http://www.dealerdirect.com",
    6163            "keywords": [
    6264                "PHPCodeSniffer",
     
    7880            ],
    7981            "support": {
    80                 "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",
    81                 "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"
    82             },
    83             "time": "2022-02-04T12:51:07+00:00"
     82                "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
     83                "security": "https://github.com/PHPCSStandards/composer-installer/security/policy",
     84                "source": "https://github.com/PHPCSStandards/composer-installer"
     85            },
     86            "funding": [
     87                {
     88                    "url": "https://github.com/PHPCSStandards",
     89                    "type": "github"
     90                },
     91                {
     92                    "url": "https://github.com/jrfnl",
     93                    "type": "github"
     94                },
     95                {
     96                    "url": "https://opencollective.com/php_codesniffer",
     97                    "type": "open_collective"
     98                },
     99                {
     100                    "url": "https://thanks.dev/u/gh/phpcsstandards",
     101                    "type": "thanks_dev"
     102                }
     103            ],
     104            "time": "2025-11-11T04:32:07+00:00"
    84105        },
    85106        {
    86107            "name": "doctrine/instantiator",
    87             "version": "1.5.0",
     108            "version": "2.0.0",
    88109            "source": {
    89110                "type": "git",
    90111                "url": "https://github.com/doctrine/instantiator.git",
    91                 "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
    92             },
    93             "dist": {
    94                 "type": "zip",
    95                 "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
    96                 "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
    97                 "shasum": ""
    98             },
    99             "require": {
    100                 "php": "^7.1 || ^8.0"
    101             },
    102             "require-dev": {
    103                 "doctrine/coding-standard": "^9 || ^11",
     112                "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
     113            },
     114            "dist": {
     115                "type": "zip",
     116                "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
     117                "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
     118                "shasum": ""
     119            },
     120            "require": {
     121                "php": "^8.1"
     122            },
     123            "require-dev": {
     124                "doctrine/coding-standard": "^11",
    104125                "ext-pdo": "*",
    105126                "ext-phar": "*",
    106                 "phpbench/phpbench": "^0.16 || ^1",
    107                 "phpstan/phpstan": "^1.4",
    108                 "phpstan/phpstan-phpunit": "^1",
    109                 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
    110                 "vimeo/psalm": "^4.30 || ^5.4"
     127                "phpbench/phpbench": "^1.2",
     128                "phpstan/phpstan": "^1.9.4",
     129                "phpstan/phpstan-phpunit": "^1.3",
     130                "phpunit/phpunit": "^9.5.27",
     131                "vimeo/psalm": "^5.4"
    111132            },
    112133            "type": "library",
     
    135156            "support": {
    136157                "issues": "https://github.com/doctrine/instantiator/issues",
    137                 "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
     158                "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
    138159            },
    139160            "funding": [
     
    151172                }
    152173            ],
    153             "time": "2022-12-30T00:15:36+00:00"
     174            "time": "2022-12-30T00:23:10+00:00"
    154175        },
    155176        {
    156177            "name": "myclabs/deep-copy",
    157             "version": "1.11.1",
     178            "version": "1.13.4",
    158179            "source": {
    159180                "type": "git",
    160181                "url": "https://github.com/myclabs/DeepCopy.git",
    161                 "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
    162             },
    163             "dist": {
    164                 "type": "zip",
    165                 "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
    166                 "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
     182                "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
     183            },
     184            "dist": {
     185                "type": "zip",
     186                "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
     187                "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
    167188                "shasum": ""
    168189            },
     
    172193            "conflict": {
    173194                "doctrine/collections": "<1.6.8",
    174                 "doctrine/common": "<2.13.3 || >=3,<3.2.2"
     195                "doctrine/common": "<2.13.3 || >=3 <3.2.2"
    175196            },
    176197            "require-dev": {
    177198                "doctrine/collections": "^1.6.8",
    178199                "doctrine/common": "^2.13.3 || ^3.2.2",
     200                "phpspec/prophecy": "^1.10",
    179201                "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
    180202            },
     
    202224            "support": {
    203225                "issues": "https://github.com/myclabs/DeepCopy/issues",
    204                 "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
     226                "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
    205227            },
    206228            "funding": [
     
    210232                }
    211233            ],
    212             "time": "2023-03-08T13:26:56+00:00"
     234            "time": "2025-08-01T08:46:24+00:00"
    213235        },
    214236        {
    215237            "name": "nikic/php-parser",
    216             "version": "v5.0.2",
     238            "version": "v5.6.2",
    217239            "source": {
    218240                "type": "git",
    219241                "url": "https://github.com/nikic/PHP-Parser.git",
    220                 "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13"
    221             },
    222             "dist": {
    223                 "type": "zip",
    224                 "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13",
    225                 "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13",
     242                "reference": "3a454ca033b9e06b63282ce19562e892747449bb"
     243            },
     244            "dist": {
     245                "type": "zip",
     246                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/3a454ca033b9e06b63282ce19562e892747449bb",
     247                "reference": "3a454ca033b9e06b63282ce19562e892747449bb",
    226248                "shasum": ""
    227249            },
     
    234256            "require-dev": {
    235257                "ircmaxell/php-yacc": "^0.0.7",
    236                 "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
     258                "phpunit/phpunit": "^9.0"
    237259            },
    238260            "bin": [
     
    242264            "extra": {
    243265                "branch-alias": {
    244                     "dev-master": "5.0-dev"
     266                    "dev-master": "5.x-dev"
    245267                }
    246268            },
     
    266288            "support": {
    267289                "issues": "https://github.com/nikic/PHP-Parser/issues",
    268                 "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2"
    269             },
    270             "time": "2024-03-05T20:51:40+00:00"
     290                "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.2"
     291            },
     292            "time": "2025-10-21T19:32:17+00:00"
    271293        },
    272294        {
     
    452474        {
    453475            "name": "phpcompatibility/phpcompatibility-paragonie",
    454             "version": "1.3.2",
     476            "version": "1.3.4",
    455477            "source": {
    456478                "type": "git",
    457479                "url": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie.git",
    458                 "reference": "bba5a9dfec7fcfbd679cfaf611d86b4d3759da26"
    459             },
    460             "dist": {
    461                 "type": "zip",
    462                 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityParagonie/zipball/bba5a9dfec7fcfbd679cfaf611d86b4d3759da26",
    463                 "reference": "bba5a9dfec7fcfbd679cfaf611d86b4d3759da26",
     480                "reference": "244d7b04fc4bc2117c15f5abe23eb933b5f02bbf"
     481            },
     482            "dist": {
     483                "type": "zip",
     484                "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityParagonie/zipball/244d7b04fc4bc2117c15f5abe23eb933b5f02bbf",
     485                "reference": "244d7b04fc4bc2117c15f5abe23eb933b5f02bbf",
    464486                "shasum": ""
    465487            },
     
    468490            },
    469491            "require-dev": {
    470                 "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
     492                "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
    471493                "paragonie/random_compat": "dev-master",
    472494                "paragonie/sodium_compat": "dev-master"
    473495            },
    474496            "suggest": {
    475                 "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.",
     497                "dealerdirect/phpcodesniffer-composer-installer": "^1.0 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.",
    476498                "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
    477499            },
     
    503525            "support": {
    504526                "issues": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie/issues",
     527                "security": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie/security/policy",
    505528                "source": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie"
    506529            },
    507             "time": "2022-10-25T01:46:02+00:00"
     530            "funding": [
     531                {
     532                    "url": "https://github.com/PHPCompatibility",
     533                    "type": "github"
     534                },
     535                {
     536                    "url": "https://github.com/jrfnl",
     537                    "type": "github"
     538                },
     539                {
     540                    "url": "https://opencollective.com/php_codesniffer",
     541                    "type": "open_collective"
     542                },
     543                {
     544                    "url": "https://thanks.dev/u/gh/phpcompatibility",
     545                    "type": "thanks_dev"
     546                }
     547            ],
     548            "time": "2025-09-19T17:43:28+00:00"
    508549        },
    509550        {
    510551            "name": "phpcompatibility/phpcompatibility-wp",
    511             "version": "2.1.4",
     552            "version": "2.1.8",
    512553            "source": {
    513554                "type": "git",
    514555                "url": "https://github.com/PHPCompatibility/PHPCompatibilityWP.git",
    515                 "reference": "b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5"
    516             },
    517             "dist": {
    518                 "type": "zip",
    519                 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityWP/zipball/b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5",
    520                 "reference": "b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5",
     556                "reference": "7c8d18b4d90dac9e86b0869a608fa09158e168fa"
     557            },
     558            "dist": {
     559                "type": "zip",
     560                "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityWP/zipball/7c8d18b4d90dac9e86b0869a608fa09158e168fa",
     561                "reference": "7c8d18b4d90dac9e86b0869a608fa09158e168fa",
    521562                "shasum": ""
    522563            },
    523564            "require": {
    524565                "phpcompatibility/php-compatibility": "^9.0",
    525                 "phpcompatibility/phpcompatibility-paragonie": "^1.0"
    526             },
    527             "require-dev": {
    528                 "dealerdirect/phpcodesniffer-composer-installer": "^0.7"
     566                "phpcompatibility/phpcompatibility-paragonie": "^1.0",
     567                "squizlabs/php_codesniffer": "^3.3"
     568            },
     569            "require-dev": {
     570                "dealerdirect/phpcodesniffer-composer-installer": "^1.0"
    529571            },
    530572            "suggest": {
    531                 "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.",
     573                "dealerdirect/phpcodesniffer-composer-installer": "^1.0 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.",
    532574                "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
    533575            },
     
    558600            "support": {
    559601                "issues": "https://github.com/PHPCompatibility/PHPCompatibilityWP/issues",
     602                "security": "https://github.com/PHPCompatibility/PHPCompatibilityWP/security/policy",
    560603                "source": "https://github.com/PHPCompatibility/PHPCompatibilityWP"
    561604            },
    562             "time": "2022-10-24T09:00:36+00:00"
     605            "funding": [
     606                {
     607                    "url": "https://github.com/PHPCompatibility",
     608                    "type": "github"
     609                },
     610                {
     611                    "url": "https://github.com/jrfnl",
     612                    "type": "github"
     613                },
     614                {
     615                    "url": "https://opencollective.com/php_codesniffer",
     616                    "type": "open_collective"
     617                },
     618                {
     619                    "url": "https://thanks.dev/u/gh/phpcompatibility",
     620                    "type": "thanks_dev"
     621                }
     622            ],
     623            "time": "2025-10-18T00:05:59+00:00"
    563624        },
    564625        {
    565626            "name": "phpcsstandards/phpcsextra",
    566             "version": "1.2.1",
     627            "version": "1.5.0",
    567628            "source": {
    568629                "type": "git",
    569630                "url": "https://github.com/PHPCSStandards/PHPCSExtra.git",
    570                 "reference": "11d387c6642b6e4acaf0bd9bf5203b8cca1ec489"
    571             },
    572             "dist": {
    573                 "type": "zip",
    574                 "url": "https://api.github.com/repos/PHPCSStandards/PHPCSExtra/zipball/11d387c6642b6e4acaf0bd9bf5203b8cca1ec489",
    575                 "reference": "11d387c6642b6e4acaf0bd9bf5203b8cca1ec489",
     631                "reference": "b598aa890815b8df16363271b659d73280129101"
     632            },
     633            "dist": {
     634                "type": "zip",
     635                "url": "https://api.github.com/repos/PHPCSStandards/PHPCSExtra/zipball/b598aa890815b8df16363271b659d73280129101",
     636                "reference": "b598aa890815b8df16363271b659d73280129101",
    576637                "shasum": ""
    577638            },
    578639            "require": {
    579640                "php": ">=5.4",
    580                 "phpcsstandards/phpcsutils": "^1.0.9",
    581                 "squizlabs/php_codesniffer": "^3.8.0"
     641                "phpcsstandards/phpcsutils": "^1.2.0",
     642                "squizlabs/php_codesniffer": "^3.13.5 || ^4.0.1"
    582643            },
    583644            "require-dev": {
    584645                "php-parallel-lint/php-console-highlighter": "^1.0",
    585                 "php-parallel-lint/php-parallel-lint": "^1.3.2",
    586                 "phpcsstandards/phpcsdevcs": "^1.1.6",
     646                "php-parallel-lint/php-parallel-lint": "^1.4.0",
     647                "phpcsstandards/phpcsdevcs": "^1.2.0",
    587648                "phpcsstandards/phpcsdevtools": "^1.2.1",
    588                 "phpunit/phpunit": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
     649                "phpunit/phpunit": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
    589650            },
    590651            "type": "phpcodesniffer-standard",
     
    636697                    "url": "https://opencollective.com/php_codesniffer",
    637698                    "type": "open_collective"
    638                 }
    639             ],
    640             "time": "2023-12-08T16:49:07+00:00"
     699                },
     700                {
     701                    "url": "https://thanks.dev/u/gh/phpcsstandards",
     702                    "type": "thanks_dev"
     703                }
     704            ],
     705            "time": "2025-11-12T23:06:57+00:00"
    641706        },
    642707        {
    643708            "name": "phpcsstandards/phpcsutils",
    644             "version": "1.0.9",
     709            "version": "1.2.1",
    645710            "source": {
    646711                "type": "git",
    647712                "url": "https://github.com/PHPCSStandards/PHPCSUtils.git",
    648                 "reference": "908247bc65010c7b7541a9551e002db12e9dae70"
    649             },
    650             "dist": {
    651                 "type": "zip",
    652                 "url": "https://api.github.com/repos/PHPCSStandards/PHPCSUtils/zipball/908247bc65010c7b7541a9551e002db12e9dae70",
    653                 "reference": "908247bc65010c7b7541a9551e002db12e9dae70",
     713                "reference": "d71128c702c180ca3b27c761b6773f883394f162"
     714            },
     715            "dist": {
     716                "type": "zip",
     717                "url": "https://api.github.com/repos/PHPCSStandards/PHPCSUtils/zipball/d71128c702c180ca3b27c761b6773f883394f162",
     718                "reference": "d71128c702c180ca3b27c761b6773f883394f162",
    654719                "shasum": ""
    655720            },
     
    657722                "dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7 || ^1.0",
    658723                "php": ">=5.4",
    659                 "squizlabs/php_codesniffer": "^3.8.0 || 4.0.x-dev@dev"
     724                "squizlabs/php_codesniffer": "^3.13.5 || ^4.0.1"
    660725            },
    661726            "require-dev": {
    662727                "ext-filter": "*",
    663728                "php-parallel-lint/php-console-highlighter": "^1.0",
    664                 "php-parallel-lint/php-parallel-lint": "^1.3.2",
    665                 "phpcsstandards/phpcsdevcs": "^1.1.6",
    666                 "yoast/phpunit-polyfills": "^1.1.0 || ^2.0.0"
     729                "php-parallel-lint/php-parallel-lint": "^1.4.0",
     730                "phpcsstandards/phpcsdevcs": "^1.2.0",
     731                "yoast/phpunit-polyfills": "^1.1.0 || ^2.0.0 || ^3.0.0"
    667732            },
    668733            "type": "phpcodesniffer-standard",
     
    701766                "phpcs",
    702767                "phpcs3",
     768                "phpcs4",
    703769                "standards",
    704770                "static analysis",
     
    724790                    "url": "https://opencollective.com/php_codesniffer",
    725791                    "type": "open_collective"
    726                 }
    727             ],
    728             "time": "2023-12-08T14:50:00+00:00"
     792                },
     793                {
     794                    "url": "https://thanks.dev/u/gh/phpcsstandards",
     795                    "type": "thanks_dev"
     796                }
     797            ],
     798            "time": "2025-11-17T12:58:33+00:00"
    729799        },
    730800        {
    731801            "name": "phpunit/php-code-coverage",
    732             "version": "9.2.31",
     802            "version": "9.2.32",
    733803            "source": {
    734804                "type": "git",
    735805                "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
    736                 "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965"
    737             },
    738             "dist": {
    739                 "type": "zip",
    740                 "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965",
    741                 "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965",
     806                "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
     807            },
     808            "dist": {
     809                "type": "zip",
     810                "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
     811                "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
    742812                "shasum": ""
    743813            },
     
    746816                "ext-libxml": "*",
    747817                "ext-xmlwriter": "*",
    748                 "nikic/php-parser": "^4.18 || ^5.0",
     818                "nikic/php-parser": "^4.19.1 || ^5.1.0",
    749819                "php": ">=7.3",
    750                 "phpunit/php-file-iterator": "^3.0.3",
    751                 "phpunit/php-text-template": "^2.0.2",
    752                 "sebastian/code-unit-reverse-lookup": "^2.0.2",
    753                 "sebastian/complexity": "^2.0",
    754                 "sebastian/environment": "^5.1.2",
    755                 "sebastian/lines-of-code": "^1.0.3",
    756                 "sebastian/version": "^3.0.1",
    757                 "theseer/tokenizer": "^1.2.0"
    758             },
    759             "require-dev": {
    760                 "phpunit/phpunit": "^9.3"
     820                "phpunit/php-file-iterator": "^3.0.6",
     821                "phpunit/php-text-template": "^2.0.4",
     822                "sebastian/code-unit-reverse-lookup": "^2.0.3",
     823                "sebastian/complexity": "^2.0.3",
     824                "sebastian/environment": "^5.1.5",
     825                "sebastian/lines-of-code": "^1.0.4",
     826                "sebastian/version": "^3.0.2",
     827                "theseer/tokenizer": "^1.2.3"
     828            },
     829            "require-dev": {
     830                "phpunit/phpunit": "^9.6"
    761831            },
    762832            "suggest": {
     
    767837            "extra": {
    768838                "branch-alias": {
    769                     "dev-master": "9.2-dev"
     839                    "dev-main": "9.2.x-dev"
    770840                }
    771841            },
     
    796866                "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
    797867                "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
    798                 "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31"
     868                "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
    799869            },
    800870            "funding": [
     
    804874                }
    805875            ],
    806             "time": "2024-03-02T06:37:42+00:00"
     876            "time": "2024-08-22T04:23:01+00:00"
    807877        },
    808878        {
     
    10491119        {
    10501120            "name": "phpunit/phpunit",
    1051             "version": "9.6.17",
     1121            "version": "9.6.29",
    10521122            "source": {
    10531123                "type": "git",
    10541124                "url": "https://github.com/sebastianbergmann/phpunit.git",
    1055                 "reference": "1a156980d78a6666721b7e8e8502fe210b587fcd"
    1056             },
    1057             "dist": {
    1058                 "type": "zip",
    1059                 "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1a156980d78a6666721b7e8e8502fe210b587fcd",
    1060                 "reference": "1a156980d78a6666721b7e8e8502fe210b587fcd",
    1061                 "shasum": ""
    1062             },
    1063             "require": {
    1064                 "doctrine/instantiator": "^1.3.1 || ^2",
     1125                "reference": "9ecfec57835a5581bc888ea7e13b51eb55ab9dd3"
     1126            },
     1127            "dist": {
     1128                "type": "zip",
     1129                "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9ecfec57835a5581bc888ea7e13b51eb55ab9dd3",
     1130                "reference": "9ecfec57835a5581bc888ea7e13b51eb55ab9dd3",
     1131                "shasum": ""
     1132            },
     1133            "require": {
     1134                "doctrine/instantiator": "^1.5.0 || ^2",
    10651135                "ext-dom": "*",
    10661136                "ext-json": "*",
     
    10691139                "ext-xml": "*",
    10701140                "ext-xmlwriter": "*",
    1071                 "myclabs/deep-copy": "^1.10.1",
    1072                 "phar-io/manifest": "^2.0.3",
    1073                 "phar-io/version": "^3.0.2",
     1141                "myclabs/deep-copy": "^1.13.4",
     1142                "phar-io/manifest": "^2.0.4",
     1143                "phar-io/version": "^3.2.1",
    10741144                "php": ">=7.3",
    1075                 "phpunit/php-code-coverage": "^9.2.28",
    1076                 "phpunit/php-file-iterator": "^3.0.5",
     1145                "phpunit/php-code-coverage": "^9.2.32",
     1146                "phpunit/php-file-iterator": "^3.0.6",
    10771147                "phpunit/php-invoker": "^3.1.1",
    1078                 "phpunit/php-text-template": "^2.0.3",
    1079                 "phpunit/php-timer": "^5.0.2",
    1080                 "sebastian/cli-parser": "^1.0.1",
    1081                 "sebastian/code-unit": "^1.0.6",
    1082                 "sebastian/comparator": "^4.0.8",
    1083                 "sebastian/diff": "^4.0.3",
    1084                 "sebastian/environment": "^5.1.3",
    1085                 "sebastian/exporter": "^4.0.5",
    1086                 "sebastian/global-state": "^5.0.1",
    1087                 "sebastian/object-enumerator": "^4.0.3",
    1088                 "sebastian/resource-operations": "^3.0.3",
    1089                 "sebastian/type": "^3.2",
     1148                "phpunit/php-text-template": "^2.0.4",
     1149                "phpunit/php-timer": "^5.0.3",
     1150                "sebastian/cli-parser": "^1.0.2",
     1151                "sebastian/code-unit": "^1.0.8",
     1152                "sebastian/comparator": "^4.0.9",
     1153                "sebastian/diff": "^4.0.6",
     1154                "sebastian/environment": "^5.1.5",
     1155                "sebastian/exporter": "^4.0.8",
     1156                "sebastian/global-state": "^5.0.8",
     1157                "sebastian/object-enumerator": "^4.0.4",
     1158                "sebastian/resource-operations": "^3.0.4",
     1159                "sebastian/type": "^3.2.1",
    10901160                "sebastian/version": "^3.0.2"
    10911161            },
     
    11321202                "issues": "https://github.com/sebastianbergmann/phpunit/issues",
    11331203                "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
    1134                 "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.17"
     1204                "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.29"
    11351205            },
    11361206            "funding": [
     
    11441214                },
    11451215                {
     1216                    "url": "https://liberapay.com/sebastianbergmann",
     1217                    "type": "liberapay"
     1218                },
     1219                {
     1220                    "url": "https://thanks.dev/u/gh/sebastianbergmann",
     1221                    "type": "thanks_dev"
     1222                },
     1223                {
    11461224                    "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
    11471225                    "type": "tidelift"
    11481226                }
    11491227            ],
    1150             "time": "2024-02-23T13:14:51+00:00"
     1228            "time": "2025-09-24T06:29:11+00:00"
    11511229        },
    11521230        {
     
    13191397        {
    13201398            "name": "sebastian/comparator",
    1321             "version": "4.0.8",
     1399            "version": "4.0.9",
    13221400            "source": {
    13231401                "type": "git",
    13241402                "url": "https://github.com/sebastianbergmann/comparator.git",
    1325                 "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
    1326             },
    1327             "dist": {
    1328                 "type": "zip",
    1329                 "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
    1330                 "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
     1403                "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5"
     1404            },
     1405            "dist": {
     1406                "type": "zip",
     1407                "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
     1408                "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
    13311409                "shasum": ""
    13321410            },
     
    13811459            "support": {
    13821460                "issues": "https://github.com/sebastianbergmann/comparator/issues",
    1383                 "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
     1461                "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.9"
    13841462            },
    13851463            "funding": [
     
    13871465                    "url": "https://github.com/sebastianbergmann",
    13881466                    "type": "github"
    1389                 }
    1390             ],
    1391             "time": "2022-09-14T12:41:17+00:00"
     1467                },
     1468                {
     1469                    "url": "https://liberapay.com/sebastianbergmann",
     1470                    "type": "liberapay"
     1471                },
     1472                {
     1473                    "url": "https://thanks.dev/u/gh/sebastianbergmann",
     1474                    "type": "thanks_dev"
     1475                },
     1476                {
     1477                    "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
     1478                    "type": "tidelift"
     1479                }
     1480            ],
     1481            "time": "2025-08-10T06:51:50+00:00"
    13921482        },
    13931483        {
     
    15791669        {
    15801670            "name": "sebastian/exporter",
    1581             "version": "4.0.6",
     1671            "version": "4.0.8",
    15821672            "source": {
    15831673                "type": "git",
    15841674                "url": "https://github.com/sebastianbergmann/exporter.git",
    1585                 "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
    1586             },
    1587             "dist": {
    1588                 "type": "zip",
    1589                 "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
    1590                 "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
     1675                "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
     1676            },
     1677            "dist": {
     1678                "type": "zip",
     1679                "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
     1680                "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
    15911681                "shasum": ""
    15921682            },
     
    16441734            "support": {
    16451735                "issues": "https://github.com/sebastianbergmann/exporter/issues",
    1646                 "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
     1736                "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.8"
    16471737            },
    16481738            "funding": [
     
    16501740                    "url": "https://github.com/sebastianbergmann",
    16511741                    "type": "github"
    1652                 }
    1653             ],
    1654             "time": "2024-03-02T06:33:00+00:00"
     1742                },
     1743                {
     1744                    "url": "https://liberapay.com/sebastianbergmann",
     1745                    "type": "liberapay"
     1746                },
     1747                {
     1748                    "url": "https://thanks.dev/u/gh/sebastianbergmann",
     1749                    "type": "thanks_dev"
     1750                },
     1751                {
     1752                    "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
     1753                    "type": "tidelift"
     1754                }
     1755            ],
     1756            "time": "2025-09-24T06:03:27+00:00"
    16551757        },
    16561758        {
    16571759            "name": "sebastian/global-state",
    1658             "version": "5.0.7",
     1760            "version": "5.0.8",
    16591761            "source": {
    16601762                "type": "git",
    16611763                "url": "https://github.com/sebastianbergmann/global-state.git",
    1662                 "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
    1663             },
    1664             "dist": {
    1665                 "type": "zip",
    1666                 "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
    1667                 "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
     1764                "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
     1765            },
     1766            "dist": {
     1767                "type": "zip",
     1768                "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
     1769                "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
    16681770                "shasum": ""
    16691771            },
     
    17081810            "support": {
    17091811                "issues": "https://github.com/sebastianbergmann/global-state/issues",
    1710                 "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
     1812                "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
    17111813            },
    17121814            "funding": [
     
    17141816                    "url": "https://github.com/sebastianbergmann",
    17151817                    "type": "github"
    1716                 }
    1717             ],
    1718             "time": "2024-03-02T06:35:11+00:00"
     1818                },
     1819                {
     1820                    "url": "https://liberapay.com/sebastianbergmann",
     1821                    "type": "liberapay"
     1822                },
     1823                {
     1824                    "url": "https://thanks.dev/u/gh/sebastianbergmann",
     1825                    "type": "thanks_dev"
     1826                },
     1827                {
     1828                    "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
     1829                    "type": "tidelift"
     1830                }
     1831            ],
     1832            "time": "2025-08-10T07:10:35+00:00"
    17191833        },
    17201834        {
     
    18892003        {
    18902004            "name": "sebastian/recursion-context",
    1891             "version": "4.0.5",
     2005            "version": "4.0.6",
    18922006            "source": {
    18932007                "type": "git",
    18942008                "url": "https://github.com/sebastianbergmann/recursion-context.git",
    1895                 "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
    1896             },
    1897             "dist": {
    1898                 "type": "zip",
    1899                 "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
    1900                 "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
     2009                "reference": "539c6691e0623af6dc6f9c20384c120f963465a0"
     2010            },
     2011            "dist": {
     2012                "type": "zip",
     2013                "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/539c6691e0623af6dc6f9c20384c120f963465a0",
     2014                "reference": "539c6691e0623af6dc6f9c20384c120f963465a0",
    19012015                "shasum": ""
    19022016            },
     
    19402054            "support": {
    19412055                "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
    1942                 "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
     2056                "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.6"
    19432057            },
    19442058            "funding": [
     
    19462060                    "url": "https://github.com/sebastianbergmann",
    19472061                    "type": "github"
    1948                 }
    1949             ],
    1950             "time": "2023-02-03T06:07:39+00:00"
     2062                },
     2063                {
     2064                    "url": "https://liberapay.com/sebastianbergmann",
     2065                    "type": "liberapay"
     2066                },
     2067                {
     2068                    "url": "https://thanks.dev/u/gh/sebastianbergmann",
     2069                    "type": "thanks_dev"
     2070                },
     2071                {
     2072                    "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
     2073                    "type": "tidelift"
     2074                }
     2075            ],
     2076            "time": "2025-08-10T06:57:39+00:00"
    19512077        },
    19522078        {
     
    21152241        {
    21162242            "name": "squizlabs/php_codesniffer",
    2117             "version": "3.9.0",
     2243            "version": "3.13.5",
    21182244            "source": {
    21192245                "type": "git",
    21202246                "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
    2121                 "reference": "d63cee4890a8afaf86a22e51ad4d97c91dd4579b"
    2122             },
    2123             "dist": {
    2124                 "type": "zip",
    2125                 "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/d63cee4890a8afaf86a22e51ad4d97c91dd4579b",
    2126                 "reference": "d63cee4890a8afaf86a22e51ad4d97c91dd4579b",
     2247                "reference": "0ca86845ce43291e8f5692c7356fccf3bcf02bf4"
     2248            },
     2249            "dist": {
     2250                "type": "zip",
     2251                "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/0ca86845ce43291e8f5692c7356fccf3bcf02bf4",
     2252                "reference": "0ca86845ce43291e8f5692c7356fccf3bcf02bf4",
    21272253                "shasum": ""
    21282254            },
     
    21412267            ],
    21422268            "type": "library",
    2143             "extra": {
    2144                 "branch-alias": {
    2145                     "dev-master": "3.x-dev"
    2146                 }
    2147             },
    21482269            "notification-url": "https://packagist.org/downloads/",
    21492270            "license": [
     
    21892310                    "url": "https://opencollective.com/php_codesniffer",
    21902311                    "type": "open_collective"
    2191                 }
    2192             ],
    2193             "time": "2024-02-16T15:06:51+00:00"
     2312                },
     2313                {
     2314                    "url": "https://thanks.dev/u/gh/phpcsstandards",
     2315                    "type": "thanks_dev"
     2316                }
     2317            ],
     2318            "time": "2025-11-04T16:30:35+00:00"
    21942319        },
    21952320        {
    21962321            "name": "theseer/tokenizer",
    2197             "version": "1.2.3",
     2322            "version": "1.3.1",
    21982323            "source": {
    21992324                "type": "git",
    22002325                "url": "https://github.com/theseer/tokenizer.git",
    2201                 "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
    2202             },
    2203             "dist": {
    2204                 "type": "zip",
    2205                 "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
    2206                 "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
     2326                "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
     2327            },
     2328            "dist": {
     2329                "type": "zip",
     2330                "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
     2331                "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
    22072332                "shasum": ""
    22082333            },
     
    22332358            "support": {
    22342359                "issues": "https://github.com/theseer/tokenizer/issues",
    2235                 "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
     2360                "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
    22362361            },
    22372362            "funding": [
     
    22412366                }
    22422367            ],
    2243             "time": "2024-03-03T12:36:25+00:00"
     2368            "time": "2025-11-17T20:03:58+00:00"
    22442369        },
    22452370        {
    22462371            "name": "wp-coding-standards/wpcs",
    2247             "version": "3.0.1",
     2372            "version": "3.2.0",
    22482373            "source": {
    22492374                "type": "git",
    22502375                "url": "https://github.com/WordPress/WordPress-Coding-Standards.git",
    2251                 "reference": "b4caf9689f1a0e4a4c632679a44e638c1c67aff1"
    2252             },
    2253             "dist": {
    2254                 "type": "zip",
    2255                 "url": "https://api.github.com/repos/WordPress/WordPress-Coding-Standards/zipball/b4caf9689f1a0e4a4c632679a44e638c1c67aff1",
    2256                 "reference": "b4caf9689f1a0e4a4c632679a44e638c1c67aff1",
     2376                "reference": "d2421de7cec3274ae622c22c744de9a62c7925af"
     2377            },
     2378            "dist": {
     2379                "type": "zip",
     2380                "url": "https://api.github.com/repos/WordPress/WordPress-Coding-Standards/zipball/d2421de7cec3274ae622c22c744de9a62c7925af",
     2381                "reference": "d2421de7cec3274ae622c22c744de9a62c7925af",
    22572382                "shasum": ""
    22582383            },
     
    22632388                "ext-xmlreader": "*",
    22642389                "php": ">=5.4",
    2265                 "phpcsstandards/phpcsextra": "^1.1.0",
    2266                 "phpcsstandards/phpcsutils": "^1.0.8",
    2267                 "squizlabs/php_codesniffer": "^3.7.2"
     2390                "phpcsstandards/phpcsextra": "^1.4.0",
     2391                "phpcsstandards/phpcsutils": "^1.1.0",
     2392                "squizlabs/php_codesniffer": "^3.13.0"
    22682393            },
    22692394            "require-dev": {
    22702395                "php-parallel-lint/php-console-highlighter": "^1.0.0",
    2271                 "php-parallel-lint/php-parallel-lint": "^1.3.2",
     2396                "php-parallel-lint/php-parallel-lint": "^1.4.0",
    22722397                "phpcompatibility/php-compatibility": "^9.0",
    22732398                "phpcsstandards/phpcsdevtools": "^1.2.0",
    2274                 "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
     2399                "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
    22752400            },
    22762401            "suggest": {
     
    23032428            "funding": [
    23042429                {
    2305                     "url": "https://opencollective.com/thewpcc/contribute/wp-php-63406",
     2430                    "url": "https://opencollective.com/php_codesniffer",
    23062431                    "type": "custom"
    23072432                }
    23082433            ],
    2309             "time": "2023-09-14T07:06:09+00:00"
     2434            "time": "2025-07-24T20:08:31+00:00"
    23102435        },
    23112436        {
    23122437            "name": "yoast/phpunit-polyfills",
    2313             "version": "1.1.0",
     2438            "version": "1.1.5",
    23142439            "source": {
    23152440                "type": "git",
    23162441                "url": "https://github.com/Yoast/PHPUnit-Polyfills.git",
    2317                 "reference": "224e4a1329c03d8bad520e3fc4ec980034a4b212"
    2318             },
    2319             "dist": {
    2320                 "type": "zip",
    2321                 "url": "https://api.github.com/repos/Yoast/PHPUnit-Polyfills/zipball/224e4a1329c03d8bad520e3fc4ec980034a4b212",
    2322                 "reference": "224e4a1329c03d8bad520e3fc4ec980034a4b212",
     2442                "reference": "41aaac462fbd80feb8dd129e489f4bbc53fe26b0"
     2443            },
     2444            "dist": {
     2445                "type": "zip",
     2446                "url": "https://api.github.com/repos/Yoast/PHPUnit-Polyfills/zipball/41aaac462fbd80feb8dd129e489f4bbc53fe26b0",
     2447                "reference": "41aaac462fbd80feb8dd129e489f4bbc53fe26b0",
    23232448                "shasum": ""
    23242449            },
     
    23282453            },
    23292454            "require-dev": {
    2330                 "yoast/yoastcs": "^2.3.0"
    2331             },
    2332             "type": "library",
    2333             "extra": {
    2334                 "branch-alias": {
    2335                     "dev-main": "2.x-dev"
     2455                "php-parallel-lint/php-console-highlighter": "^1.0.0",
     2456                "php-parallel-lint/php-parallel-lint": "^1.4.0",
     2457                "yoast/yoastcs": "^3.2.0"
     2458            },
     2459            "type": "library",
     2460            "extra": {
     2461                "branch-alias": {
     2462                    "dev-main": "4.x-dev"
    23362463                }
    23372464            },
     
    23652492            "support": {
    23662493                "issues": "https://github.com/Yoast/PHPUnit-Polyfills/issues",
     2494                "security": "https://github.com/Yoast/PHPUnit-Polyfills/security/policy",
    23672495                "source": "https://github.com/Yoast/PHPUnit-Polyfills"
    23682496            },
    2369             "time": "2023-08-19T14:25:08+00:00"
     2497            "time": "2025-08-10T04:54:36+00:00"
    23702498        }
    23712499    ],
    23722500    "aliases": [],
    23732501    "minimum-stability": "stable",
    2374     "stability-flags": [],
     2502    "stability-flags": {},
    23752503    "prefer-stable": false,
    23762504    "prefer-lowest": false,
     
    23782506        "php": ">=7.4"
    23792507    },
    2380     "platform-dev": [],
     2508    "platform-dev": {},
    23812509    "plugin-api-version": "2.6.0"
    23822510}
  • smart-custom-fields/trunk/readme.txt

    r3336917 r3398537  
    66Requires PHP: 7.4
    77Tested up to: 6.8
    8 Stable tag: 5.0.4
     8Stable tag: 5.0.5
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    135135== Changelog ==
    136136
     137= 5.0.5 =
     138* Fixed a bug that caused a fatal error if post-type was not specified in related posts. [inc2734/smart-custom-fields#110](https://github.com/inc2734/smart-custom-fields/issues/110)
     139* Removed auto-draft check from `is_saved_the_key()` [inc2734/smart-custom-fields#113](https://github.com/inc2734/smart-custom-fields/pull/113)
     140
    137141= 5.0.4 =
    138142* Fixed a bug in v5.0.1 and later where JavaScript related to the TinyMCE editor did not work properly in Firefox.
  • smart-custom-fields/trunk/smart-custom-fields.php

    r3336917 r3398537  
    44 * Plugin URI: https://github.com/inc2734/smart-custom-fields/
    55 * Description: Smart Custom Fields is a simple plugin that management custom fields.
    6  * Version: 5.0.4
     6 * Version: 5.0.5
    77 * Author: inc2734
    88 * Author URI: https://2inc.org
  • smart-custom-fields/trunk/vendor/autoload.php

    r3302736 r3398537  
    2020require_once __DIR__ . '/composer/autoload_real.php';
    2121
    22 return ComposerAutoloaderInita33ab1047730fe744941add9e8020420::getLoader();
     22return ComposerAutoloaderInitf4bc168eb0befd3155d7f2e5e4c9f7f2::getLoader();
  • smart-custom-fields/trunk/vendor/composer/autoload_real.php

    r3052172 r3398537  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInita33ab1047730fe744941add9e8020420
     5class ComposerAutoloaderInitf4bc168eb0befd3155d7f2e5e4c9f7f2
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInita33ab1047730fe744941add9e8020420', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInitf4bc168eb0befd3155d7f2e5e4c9f7f2', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInita33ab1047730fe744941add9e8020420', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInitf4bc168eb0befd3155d7f2e5e4c9f7f2', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInita33ab1047730fe744941add9e8020420::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInitf4bc168eb0befd3155d7f2e5e4c9f7f2::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • smart-custom-fields/trunk/vendor/composer/autoload_static.php

    r3052172 r3398537  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInita33ab1047730fe744941add9e8020420
     7class ComposerStaticInitf4bc168eb0befd3155d7f2e5e4c9f7f2
    88{
    99    public static $classMap = array (
     
    1414    {
    1515        return \Closure::bind(function () use ($loader) {
    16             $loader->classMap = ComposerStaticInita33ab1047730fe744941add9e8020420::$classMap;
     16            $loader->classMap = ComposerStaticInitf4bc168eb0befd3155d7f2e5e4c9f7f2::$classMap;
    1717
    1818        }, null, ClassLoader::class);
Note: See TracChangeset for help on using the changeset viewer.