Changeset 2926059
- Timestamp:
- 06/14/2023 04:28:31 PM (3 years ago)
- Location:
- wpglobus/trunk
- Files:
-
- 2 added
- 8 edited
-
includes/class-wpglobus.php (modified) (4 diffs)
-
languages/wpglobus-ky.mo (added)
-
languages/wpglobus-ky.po (added)
-
readme.txt (modified) (1 diff)
-
vendor/composer/autoload_classmap.php (modified) (1 diff)
-
vendor/composer/autoload_psr4.php (modified) (1 diff)
-
vendor/composer/autoload_static.php (modified) (2 diffs)
-
vendor/composer/installed.json (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (3 diffs)
-
wpglobus.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpglobus/trunk/includes/class-wpglobus.php
r2924233 r2926059 3552 3552 $__table = _get_meta_table( 'post' ); 3553 3553 3554 /** 3555 * @since 2.12.2 3556 * Reverted piece of code. 3557 * @see description below. 3558 */ 3559 $__meta_ids = $wpdb->get_col( $wpdb->prepare( "SELECT meta_value FROM $__table WHERE meta_key = %s AND post_id = %d", self::LANGUAGE_META_KEY, $postarr['ID'] ) ); 3560 3561 /** 3562 * Error in debug.log: 3563 * 3564 * WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version 3565 * for the right syntax to use near ''wp_postmeta' WHERE meta_key = 'wpglobus_language' AND post_id = 20' at line 1 3566 * for query SELECT meta_value FROM 'wp_postmeta' WHERE meta_key = 'wpglobus_language' AND post_id = 20 made by edit_post, 3567 * wp_update_post, wp_insert_post, apply_filters('wp_insert_post_data'), WP_Hook->apply_filters, WPGlobus->on_save_post_data 3568 */ 3569 /* 3554 3570 $__meta_ids = $wpdb->get_col( 3555 3571 $wpdb->prepare( … … 3560 3576 ) 3561 3577 ); 3562 3578 // */ 3579 3563 3580 $_meta = 'meta'; // PHPCS 3564 3581 if ( empty( $__meta_ids ) ) { … … 3643 3660 endif; // end ! $devmode. 3644 3661 3645 if ( ! empty( $has_extra_post_title ) && ! empty( $post_title ) ) { 3662 /** 3663 * @since 2.12.2 3664 * Reverted piece of code. 3665 * @see https://wordpress.org/support/topic/new-posts-no-longer-saving-in-2nd-language/ 3666 */ 3667 if ( ! $has_extra_post_title ) { 3646 3668 $data['post_title'] = $post_title; 3647 3669 } 3648 3670 3649 if ( ! empty( $has_extra_post_content ) && ! empty( $post_content )) {3671 if ( ! $has_extra_post_content ) { 3650 3672 $data['post_content'] = $post_content; 3651 3673 } … … 3657 3679 */ 3658 3680 return apply_filters( 'wpglobus_save_post_data', $data, $postarr, $devmode ); 3659 3660 3681 } 3661 3682 -
wpglobus/trunk/readme.txt
r2924233 r2926059 218 218 == Changelog == 219 219 220 = 2.12.2 = 221 * Fix: "New posts no longer saving in 2nd language" error introduced in 2.12.1 222 220 223 = 2.12.1 = 221 224 * Fix: (Security) Authentication check in `class-wpglobus.php` function `on_admin_init()`. -
wpglobus/trunk/vendor/composer/autoload_classmap.php
r2924233 r2926059 8 8 return array( 9 9 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', 10 'Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin' => $vendorDir . '/dealerdirect/phpcodesniffer-composer-installer/src/Plugin.php',11 10 ); -
wpglobus/trunk/vendor/composer/autoload_psr4.php
r2924233 r2926059 7 7 8 8 return array( 9 'Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' => array($vendorDir . '/dealerdirect/phpcodesniffer-composer-installer/src'),10 9 ); -
wpglobus/trunk/vendor/composer/autoload_static.php
r2924233 r2926059 7 7 class ComposerStaticInit73ad96349088be86890408600b0d3e35 8 8 { 9 public static $prefixLengthsPsr4 = array (10 'D' =>11 array (12 'Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' => 55,13 ),14 );15 16 public static $prefixDirsPsr4 = array (17 'Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' =>18 array (19 0 => __DIR__ . '/..' . '/dealerdirect/phpcodesniffer-composer-installer/src',20 ),21 );22 23 9 public static $classMap = array ( 24 10 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', 25 'Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin' => __DIR__ . '/..' . '/dealerdirect/phpcodesniffer-composer-installer/src/Plugin.php',26 11 ); 27 12 … … 29 14 { 30 15 return \Closure::bind(function () use ($loader) { 31 $loader->prefixLengthsPsr4 = ComposerStaticInit73ad96349088be86890408600b0d3e35::$prefixLengthsPsr4;32 $loader->prefixDirsPsr4 = ComposerStaticInit73ad96349088be86890408600b0d3e35::$prefixDirsPsr4;33 16 $loader->classMap = ComposerStaticInit73ad96349088be86890408600b0d3e35::$classMap; 34 17 -
wpglobus/trunk/vendor/composer/installed.json
r2924233 r2926059 28 28 ], 29 29 "install-path": "../bemailr/wp-requirements" 30 },31 {32 "name": "dealerdirect/phpcodesniffer-composer-installer",33 "version": "v0.7.2",34 "version_normalized": "0.7.2.0",35 "source": {36 "type": "git",37 "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",38 "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db"39 },40 "dist": {41 "type": "zip",42 "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",43 "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",44 "shasum": ""45 },46 "require": {47 "composer-plugin-api": "^1.0 || ^2.0",48 "php": ">=5.3",49 "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"50 },51 "require-dev": {52 "composer/composer": "*",53 "php-parallel-lint/php-parallel-lint": "^1.3.1",54 "phpcompatibility/php-compatibility": "^9.0"55 },56 "time": "2022-02-04T12:51:07+00:00",57 "type": "composer-plugin",58 "extra": {59 "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"60 },61 "installation-source": "dist",62 "autoload": {63 "psr-4": {64 "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"65 }66 },67 "notification-url": "https://packagist.org/downloads/",68 "license": [69 "MIT"70 ],71 "authors": [72 {73 "name": "Franck Nijhof",74 "email": "[email protected]",75 "homepage": "http://www.frenck.nl",76 "role": "Developer / IT Manager"77 },78 {79 "name": "Contributors",80 "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors"81 }82 ],83 "description": "PHP_CodeSniffer Standards Composer Installer Plugin",84 "homepage": "http://www.dealerdirect.com",85 "keywords": [86 "PHPCodeSniffer",87 "PHP_CodeSniffer",88 "code quality",89 "codesniffer",90 "composer",91 "installer",92 "phpcbf",93 "phpcs",94 "plugin",95 "qa",96 "quality",97 "standard",98 "standards",99 "style guide",100 "stylecheck",101 "tests"102 ],103 "support": {104 "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",105 "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"106 },107 "install-path": "../dealerdirect/phpcodesniffer-composer-installer"108 },109 {110 "name": "phpcompatibility/php-compatibility",111 "version": "9.3.5",112 "version_normalized": "9.3.5.0",113 "source": {114 "type": "git",115 "url": "https://github.com/PHPCompatibility/PHPCompatibility.git",116 "reference": "9fb324479acf6f39452e0655d2429cc0d3914243"117 },118 "dist": {119 "type": "zip",120 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/9fb324479acf6f39452e0655d2429cc0d3914243",121 "reference": "9fb324479acf6f39452e0655d2429cc0d3914243",122 "shasum": ""123 },124 "require": {125 "php": ">=5.3",126 "squizlabs/php_codesniffer": "^2.3 || ^3.0.2"127 },128 "conflict": {129 "squizlabs/php_codesniffer": "2.6.2"130 },131 "require-dev": {132 "phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0"133 },134 "suggest": {135 "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.",136 "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."137 },138 "time": "2019-12-27T09:44:58+00:00",139 "type": "phpcodesniffer-standard",140 "installation-source": "dist",141 "notification-url": "https://packagist.org/downloads/",142 "license": [143 "LGPL-3.0-or-later"144 ],145 "authors": [146 {147 "name": "Wim Godden",148 "homepage": "https://github.com/wimg",149 "role": "lead"150 },151 {152 "name": "Juliette Reinders Folmer",153 "homepage": "https://github.com/jrfnl",154 "role": "lead"155 },156 {157 "name": "Contributors",158 "homepage": "https://github.com/PHPCompatibility/PHPCompatibility/graphs/contributors"159 }160 ],161 "description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.",162 "homepage": "http://techblog.wimgodden.be/tag/codesniffer/",163 "keywords": [164 "compatibility",165 "phpcs",166 "standards"167 ],168 "support": {169 "issues": "https://github.com/PHPCompatibility/PHPCompatibility/issues",170 "source": "https://github.com/PHPCompatibility/PHPCompatibility"171 },172 "install-path": "../phpcompatibility/php-compatibility"173 },174 {175 "name": "phpcompatibility/phpcompatibility-paragonie",176 "version": "1.3.2",177 "version_normalized": "1.3.2.0",178 "source": {179 "type": "git",180 "url": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie.git",181 "reference": "bba5a9dfec7fcfbd679cfaf611d86b4d3759da26"182 },183 "dist": {184 "type": "zip",185 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityParagonie/zipball/bba5a9dfec7fcfbd679cfaf611d86b4d3759da26",186 "reference": "bba5a9dfec7fcfbd679cfaf611d86b4d3759da26",187 "shasum": ""188 },189 "require": {190 "phpcompatibility/php-compatibility": "^9.0"191 },192 "require-dev": {193 "dealerdirect/phpcodesniffer-composer-installer": "^0.7",194 "paragonie/random_compat": "dev-master",195 "paragonie/sodium_compat": "dev-master"196 },197 "suggest": {198 "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.",199 "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."200 },201 "time": "2022-10-25T01:46:02+00:00",202 "type": "phpcodesniffer-standard",203 "installation-source": "dist",204 "notification-url": "https://packagist.org/downloads/",205 "license": [206 "LGPL-3.0-or-later"207 ],208 "authors": [209 {210 "name": "Wim Godden",211 "role": "lead"212 },213 {214 "name": "Juliette Reinders Folmer",215 "role": "lead"216 }217 ],218 "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.",219 "homepage": "http://phpcompatibility.com/",220 "keywords": [221 "compatibility",222 "paragonie",223 "phpcs",224 "polyfill",225 "standards",226 "static analysis"227 ],228 "support": {229 "issues": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie/issues",230 "source": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie"231 },232 "install-path": "../phpcompatibility/phpcompatibility-paragonie"233 },234 {235 "name": "phpcompatibility/phpcompatibility-wp",236 "version": "2.1.4",237 "version_normalized": "2.1.4.0",238 "source": {239 "type": "git",240 "url": "https://github.com/PHPCompatibility/PHPCompatibilityWP.git",241 "reference": "b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5"242 },243 "dist": {244 "type": "zip",245 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityWP/zipball/b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5",246 "reference": "b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5",247 "shasum": ""248 },249 "require": {250 "phpcompatibility/php-compatibility": "^9.0",251 "phpcompatibility/phpcompatibility-paragonie": "^1.0"252 },253 "require-dev": {254 "dealerdirect/phpcodesniffer-composer-installer": "^0.7"255 },256 "suggest": {257 "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.",258 "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."259 },260 "time": "2022-10-24T09:00:36+00:00",261 "type": "phpcodesniffer-standard",262 "installation-source": "dist",263 "notification-url": "https://packagist.org/downloads/",264 "license": [265 "LGPL-3.0-or-later"266 ],267 "authors": [268 {269 "name": "Wim Godden",270 "role": "lead"271 },272 {273 "name": "Juliette Reinders Folmer",274 "role": "lead"275 }276 ],277 "description": "A ruleset for PHP_CodeSniffer to check for PHP cross-version compatibility issues in projects, while accounting for polyfills provided by WordPress.",278 "homepage": "http://phpcompatibility.com/",279 "keywords": [280 "compatibility",281 "phpcs",282 "standards",283 "static analysis",284 "wordpress"285 ],286 "support": {287 "issues": "https://github.com/PHPCompatibility/PHPCompatibilityWP/issues",288 "source": "https://github.com/PHPCompatibility/PHPCompatibilityWP"289 },290 "install-path": "../phpcompatibility/phpcompatibility-wp"291 },292 {293 "name": "roave/security-advisories",294 "version": "dev-master",295 "version_normalized": "dev-master",296 "source": {297 "type": "git",298 "url": "https://github.com/Roave/SecurityAdvisories.git",299 "reference": "4dac38892bfbf1fc7536b70b0a1f60718b39af1c"300 },301 "dist": {302 "type": "zip",303 "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/4dac38892bfbf1fc7536b70b0a1f60718b39af1c",304 "reference": "4dac38892bfbf1fc7536b70b0a1f60718b39af1c",305 "shasum": ""306 },307 "conflict": {308 "3f/pygmentize": "<1.2",309 "admidio/admidio": "<4.1.9",310 "adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3",311 "aheinze/cockpit": "<=2.2.1",312 "akaunting/akaunting": "<2.1.13",313 "akeneo/pim-community-dev": "<5.0.119|>=6,<6.0.53",314 "alextselegidis/easyappointments": "<1.5",315 "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",316 "amazing/media2click": ">=1,<1.3.3",317 "amphp/artax": "<1.0.6|>=2,<2.0.6",318 "amphp/http": "<1.0.1",319 "amphp/http-client": ">=4,<4.4",320 "anchorcms/anchor-cms": "<=0.12.7",321 "andreapollastri/cipi": "<=3.1.15",322 "andrewhaine/silverstripe-form-capture": ">=0.2,<=0.2.3|>=1,<=1.0.1|>=2,<=2.2.4",323 "apereo/phpcas": "<1.6",324 "api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6|>=2.6,<2.7.10|>=3,<3.0.12|>=3.1,<3.1.3",325 "appwrite/server-ce": "<=1.2.1",326 "arc/web": "<3",327 "area17/twill": "<1.2.5|>=2,<2.5.3",328 "asymmetricrypt/asymmetricrypt": ">=0,<9.9.99",329 "automad/automad": "<1.8",330 "awesome-support/awesome-support": "<=6.0.7",331 "aws/aws-sdk-php": ">=3,<3.2.1",332 "azuracast/azuracast": "<0.18.3",333 "backdrop/backdrop": "<1.24.2",334 "badaso/core": "<2.7",335 "bagisto/bagisto": "<0.1.5",336 "barrelstrength/sprout-base-email": "<1.2.7",337 "barrelstrength/sprout-forms": "<3.9",338 "barryvdh/laravel-translation-manager": "<0.6.2",339 "barzahlen/barzahlen-php": "<2.0.1",340 "baserproject/basercms": "<4.7.5",341 "bassjobsen/bootstrap-3-typeahead": ">4.0.2",342 "bigfork/silverstripe-form-capture": ">=3,<=3.1",343 "billz/raspap-webgui": "<=2.6.6",344 "bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3",345 "bmarshall511/wordpress_zero_spam": "<5.2.13",346 "bolt/bolt": "<3.7.2",347 "bolt/core": "<=4.2",348 "bottelet/flarepoint": "<2.2.1",349 "brightlocal/phpwhois": "<=4.2.5",350 "brotkrueml/codehighlight": "<2.7",351 "brotkrueml/schema": "<1.13.1|>=2,<2.5.1",352 "brotkrueml/typo3-matomo-integration": "<1.3.2",353 "buddypress/buddypress": "<7.2.1",354 "bugsnag/bugsnag-laravel": ">=2,<2.0.2",355 "bytefury/crater": "<6.0.2",356 "cachethq/cachet": "<2.5.1",357 "cakephp/cakephp": "<3.10.3|>=4,<4.0.10|>=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10|= 1.3.7|>=4.1,<4.1.4",358 "cakephp/database": ">=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",359 "cardgate/magento2": "<2.0.33",360 "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4",361 "cartalyst/sentry": "<=2.1.6",362 "catfan/medoo": "<1.7.5",363 "centreon/centreon": "<22.10-beta.1",364 "cesnet/simplesamlphp-module-proxystatistics": "<3.1",365 "cockpit-hq/cockpit": "<2.4.1",366 "codeception/codeception": "<3.1.3|>=4,<4.1.22",367 "codeigniter/framework": "<=3.0.6",368 "codeigniter4/framework": "<4.3.5",369 "codeigniter4/shield": "<1-beta.4|= 1.0.0-beta",370 "codiad/codiad": "<=2.8.4",371 "composer/composer": "<1.10.26|>=2-alpha.1,<2.2.12|>=2.3,<2.3.5",372 "concrete5/concrete5": "<9.2|>= 9.0.0RC1, < 9.1.3",373 "concrete5/core": "<8.5.8|>=9,<9.1",374 "contao-components/mediaelement": ">=2.14.2,<2.21.1",375 "contao/contao": ">=4,<4.4.56|>=4.5,<4.9.40|>=4.10,<4.11.7|>=4.13,<4.13.21|>=5.1,<5.1.4",376 "contao/core": ">=2,<3.5.39",377 "contao/core-bundle": "<4.9.40|>=4.10,<4.11.7|>=4.13,<4.13.21|>=5.1,<5.1.4|= 4.10.0",378 "contao/listing-bundle": ">=4,<4.4.8",379 "contao/managed-edition": "<=1.5",380 "craftcms/cms": ">= 4.0.0-RC1, <= 4.4.5|>= 4.0.0-RC1, <= 4.4.6|<=3.8.5|>=4,<4.4.6|>= 4.0.0-RC1, < 4.4.6|>= 4.0.0-RC1, < 4.3.7|>= 4.0.0-RC1, < 4.2.1",381 "croogo/croogo": "<3.0.7",382 "cuyz/valinor": "<0.12",383 "czproject/git-php": "<4.0.3",384 "darylldoyle/safe-svg": "<1.9.10",385 "datadog/dd-trace": ">=0.30,<0.30.2",386 "david-garcia/phpwhois": "<=4.3.1",387 "dbrisinajumi/d2files": "<1",388 "derhansen/fe_change_pwd": "<2.0.5|>=3,<3.0.3",389 "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1",390 "directmailteam/direct-mail": "<5.2.4",391 "doctrine/annotations": ">=1,<1.2.7",392 "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2",393 "doctrine/common": ">=2,<2.4.3|>=2.5,<2.5.1",394 "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2|>=3,<3.1.4",395 "doctrine/doctrine-bundle": "<1.5.2",396 "doctrine/doctrine-module": "<=0.7.1",397 "doctrine/mongodb-odm": ">=1,<1.0.2",398 "doctrine/mongodb-odm-bundle": ">=2,<3.0.1",399 "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4",400 "dolibarr/dolibarr": "<17.0.1|= 12.0.5|>= 3.3.beta1, < 13.0.2",401 "dompdf/dompdf": "<2.0.2|= 2.0.2",402 "drupal/core": ">=7,<7.96|>=8,<9.4.14|>=9.5,<9.5.8|>=10,<10.0.8",403 "drupal/drupal": ">=7,<7.80|>=8,<8.9.16|>=9,<9.1.12|>=9.2,<9.2.4",404 "dweeves/magmi": "<=0.7.24",405 "ecodev/newsletter": "<=4",406 "ectouch/ectouch": "<=2.7.2",407 "elefant/cms": "<1.3.13",408 "elgg/elgg": "<3.3.24|>=4,<4.0.5",409 "encore/laravel-admin": "<=1.8.19",410 "endroid/qr-code-bundle": "<3.4.2",411 "enshrined/svg-sanitize": "<0.15",412 "erusev/parsedown": "<1.7.2",413 "ether/logs": "<3.0.4",414 "exceedone/exment": "<4.4.3|>=5,<5.0.3",415 "exceedone/laravel-admin": "= 3.0.0|<2.2.3",416 "ezsystems/demobundle": ">=5.4,<5.4.6.1",417 "ezsystems/ez-support-tools": ">=2.2,<2.2.3",418 "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1",419 "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1|>=5.4,<5.4.11.1|>=2017.12,<2017.12.0.1",420 "ezsystems/ezplatform": "<=1.13.6|>=2,<=2.5.24",421 "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.26",422 "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1",423 "ezsystems/ezplatform-graphql": ">=1-rc.1,<1.0.13|>=2-beta.1,<2.3.12",424 "ezsystems/ezplatform-kernel": "<1.2.5.1|>=1.3,<1.3.26",425 "ezsystems/ezplatform-rest": ">=1.2,<=1.2.2|>=1.3,<1.3.8",426 "ezsystems/ezplatform-richtext": ">=2.3,<2.3.7.1",427 "ezsystems/ezplatform-user": ">=1,<1.0.1",428 "ezsystems/ezpublish-kernel": "<6.13.8.2|>=7,<7.5.30",429 "ezsystems/ezpublish-legacy": "<=2017.12.7.3|>=2018.6,<=2019.3.5.1",430 "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3",431 "ezsystems/repository-forms": ">=2.3,<2.3.2.1|>=2.5,<2.5.15",432 "ezyang/htmlpurifier": "<4.1.1",433 "facade/ignition": "<1.16.15|>=2,<2.4.2|>=2.5,<2.5.2",434 "facturascripts/facturascripts": "<=2022.8",435 "feehi/cms": "<=2.1.1",436 "feehi/feehicms": "<=2.1.1",437 "fenom/fenom": "<=2.12.1",438 "filegator/filegator": "<7.8",439 "firebase/php-jwt": "<6",440 "fixpunkt/fp-masterquiz": "<2.2.1|>=3,<3.5.2",441 "fixpunkt/fp-newsletter": "<1.1.1|>=2,<2.1.2|>=2.2,<3.2.6",442 "flarum/core": "<1.7",443 "flarum/mentions": "<1.6.3",444 "flarum/sticky": ">=0.1-beta.14,<=0.1-beta.15",445 "flarum/tags": "<=0.1-beta.13",446 "fluidtypo3/vhs": "<5.1.1",447 "fof/byobu": ">=0.3-beta.2,<1.1.7",448 "fof/upload": "<1.2.3",449 "fooman/tcpdf": "<6.2.22",450 "forkcms/forkcms": "<5.11.1",451 "fossar/tcpdf-parser": "<6.2.22",452 "francoisjacquet/rosariosis": "<11",453 "frappant/frp-form-answers": "<3.1.2|>=4,<4.0.2",454 "friendsofsymfony/oauth2-php": "<1.3",455 "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2",456 "friendsofsymfony/user-bundle": ">=1.2,<1.3.5",457 "friendsoftypo3/mediace": ">=7.6.2,<7.6.5",458 "froala/wysiwyg-editor": "<3.2.7",459 "froxlor/froxlor": "<2.0.16",460 "fuel/core": "<1.8.1",461 "funadmin/funadmin": "<=3.2",462 "gaoming13/wechat-php-sdk": "<=1.10.2",463 "genix/cms": "<=1.1.11",464 "getgrav/grav": "<1.7.34",465 "getkirby/cms": "= 3.8.0|<3.5.8.2|>=3.6,<3.6.6.2|>=3.7,<3.7.5.1",466 "getkirby/panel": "<2.5.14",467 "getkirby/starterkit": "<=3.7.0.2",468 "gilacms/gila": "<=1.11.4",469 "globalpayments/php-sdk": "<2",470 "google/protobuf": "<3.15",471 "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3",472 "gree/jose": "<2.2.1",473 "gregwar/rst": "<1.0.3",474 "grumpydictator/firefly-iii": "<6",475 "guzzlehttp/guzzle": "<6.5.8|>=7,<7.4.5",476 "guzzlehttp/psr7": "<1.9.1|>=2,<2.4.5",477 "harvesthq/chosen": "<1.8.7",478 "helloxz/imgurl": "= 2.31|<=2.31",479 "hillelcoren/invoice-ninja": "<5.3.35",480 "himiklab/yii2-jqgrid-widget": "<1.0.8",481 "hjue/justwriting": "<=1",482 "hov/jobfair": "<1.0.13|>=2,<2.0.2",483 "httpsoft/http-message": "<1.0.12",484 "hyn/multi-tenant": ">=5.6,<5.7.2",485 "ibexa/admin-ui": ">=4.2,<4.2.3",486 "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3",487 "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3",488 "ibexa/post-install": "<=1.0.4",489 "ibexa/user": ">=4,<4.4.3",490 "icecoder/icecoder": "<=8.1",491 "idno/known": "<=1.3.1",492 "illuminate/auth": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.10",493 "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4",494 "illuminate/database": "<6.20.26|>=7,<7.30.5|>=8,<8.40",495 "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15",496 "illuminate/view": "<6.20.42|>=7,<7.30.6|>=8,<8.75",497 "impresscms/impresscms": "<=1.4.3",498 "in2code/femanager": "<5.5.3|>=6,<6.3.4|>=7,<7.1",499 "in2code/lux": "<17.6.1|>=18,<24.0.2",500 "innologi/typo3-appointments": "<2.0.6",501 "intelliants/subrion": "<=4.2.1",502 "islandora/islandora": ">=2,<2.4.1",503 "ivankristianto/phpwhois": "<=4.3",504 "jackalope/jackalope-doctrine-dbal": "<1.7.4",505 "james-heinrich/getid3": "<1.9.21",506 "jasig/phpcas": "<1.3.3",507 "joomla/archive": "<1.1.12|>=2,<2.0.1",508 "joomla/filesystem": "<1.6.2|>=2,<2.0.1",509 "joomla/filter": "<1.4.4|>=2,<2.0.1",510 "joomla/input": ">=2,<2.0.2",511 "joomla/session": "<1.3.1",512 "joyqi/hyper-down": "<=2.4.27",513 "jsdecena/laracom": "<2.0.9",514 "jsmitty12/phpwhois": "<5.1",515 "kazist/phpwhois": "<=4.2.6",516 "kelvinmo/simplexrd": "<3.1.1",517 "kevinpapst/kimai2": "<1.16.7",518 "kimai/kimai": "<1.1",519 "kitodo/presentation": "<3.1.2",520 "klaviyo/magento2-extension": ">=1,<3",521 "knplabs/knp-snappy": "<1.4.2",522 "krayin/laravel-crm": "<1.2.2",523 "kreait/firebase-php": ">=3.2,<3.8.1",524 "la-haute-societe/tcpdf": "<6.2.22",525 "laminas/laminas-diactoros": "<2.18.1|>=2.24,<2.24.2|>=2.25,<2.25.2|= 2.23.0|= 2.22.0|= 2.21.0|= 2.20.0|= 2.19.0",526 "laminas/laminas-form": "<2.17.1|>=3,<3.0.2|>=3.1,<3.1.1",527 "laminas/laminas-http": "<2.14.2",528 "laravel/fortify": "<1.11.1",529 "laravel/framework": "<6.20.42|>=7,<7.30.6|>=8,<8.75",530 "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10",531 "latte/latte": "<2.10.8",532 "lavalite/cms": "<=9",533 "lcobucci/jwt": ">=3.4,<3.4.6|>=4,<4.0.4|>=4.1,<4.1.5",534 "league/commonmark": "<0.18.3",535 "league/flysystem": "<1.1.4|>=2,<2.1.1",536 "lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3",537 "librenms/librenms": "<22.10",538 "liftkit/database": "<2.13.2",539 "limesurvey/limesurvey": "<3.27.19",540 "livehelperchat/livehelperchat": "<=3.91",541 "livewire/livewire": ">2.2.4,<2.2.6",542 "lms/routes": "<2.1.1",543 "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2",544 "luyadev/yii-helpers": "<1.2.1",545 "magento/community-edition": ">=2,<2.2.10|>=2.3,<2.3.3",546 "magento/magento1ce": "<1.9.4.3",547 "magento/magento1ee": ">=1,<1.14.4.3",548 "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2-p.2",549 "maikuolan/phpmussel": ">=1,<1.6",550 "mantisbt/mantisbt": "<=2.25.5",551 "marcwillmann/turn": "<0.3.3",552 "matyhtf/framework": "<3.0.6",553 "mautic/core": "<4.3|= 2.13.1",554 "mediawiki/core": ">=1.27,<1.27.6|>=1.29,<1.29.3|>=1.30,<1.30.2|>=1.31,<1.31.9|>=1.32,<1.32.6|>=1.32.99,<1.33.3|>=1.33.99,<1.34.3|>=1.34.99,<1.35",555 "mediawiki/matomo": "<2.4.3",556 "melisplatform/melis-asset-manager": "<5.0.1",557 "melisplatform/melis-cms": "<5.0.1",558 "melisplatform/melis-front": "<5.0.1",559 "mezzio/mezzio-swoole": "<3.7|>=4,<4.3",560 "mgallegos/laravel-jqgrid": "<=1.3",561 "microweber/microweber": "<1.3.4",562 "miniorange/miniorange-saml": "<1.4.3",563 "mittwald/typo3_forum": "<1.2.1",564 "mobiledetect/mobiledetectlib": "<2.8.32",565 "modx/revolution": "<= 2.8.3-pl|<2.8",566 "mojo42/jirafeau": "<4.4",567 "monolog/monolog": ">=1.8,<1.12",568 "moodle/moodle": "<4.2-rc.2|= 3.11",569 "mustache/mustache": ">=2,<2.14.1",570 "namshi/jose": "<2.2",571 "neoan3-apps/template": "<1.1.1",572 "neorazorx/facturascripts": "<2022.4",573 "neos/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",574 "neos/form": ">=1.2,<4.3.3|>=5,<5.0.9|>=5.1,<5.1.3",575 "neos/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.9.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<5.3.10|>=7,<7.0.9|>=7.1,<7.1.7|>=7.2,<7.2.6|>=7.3,<7.3.4|>=8,<8.0.2",576 "neos/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",577 "netgen/tagsbundle": ">=3.4,<3.4.11|>=4,<4.0.15",578 "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6",579 "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13",580 "nilsteampassnet/teampass": "<3.0.9",581 "notrinos/notrinos-erp": "<=0.7",582 "noumo/easyii": "<=0.9",583 "nukeviet/nukeviet": "<4.5.2",584 "nyholm/psr7": "<1.6.1",585 "nystudio107/craft-seomatic": "<3.4.12",586 "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1",587 "october/backend": "<1.1.2",588 "october/cms": "= 1.1.1|= 1.0.471|= 1.0.469|>=1.0.319,<1.0.469",589 "october/october": ">=1.0.319,<1.0.466|>=2.1,<2.1.12",590 "october/rain": "<1.0.472|>=1.1,<1.1.2",591 "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.0.66",592 "onelogin/php-saml": "<2.10.4",593 "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5",594 "open-web-analytics/open-web-analytics": "<1.7.4",595 "opencart/opencart": "<=3.0.3.7",596 "openid/php-openid": "<2.3",597 "openmage/magento-lts": "<19.4.22|>=20,<20.0.19",598 "orchid/platform": ">=9,<9.4.4",599 "oro/commerce": ">=4.1,<5.0.6",600 "oro/crm": ">=1.7,<1.7.4|>=3.1,<4.1.17|>=4.2,<4.2.7",601 "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<4.2.8",602 "packbackbooks/lti-1-3-php-library": "<5",603 "padraic/humbug_get_contents": "<1.1.2",604 "pagarme/pagarme-php": ">=0,<3",605 "pagekit/pagekit": "<=1.0.18",606 "paragonie/random_compat": "<2",607 "passbolt/passbolt_api": "<2.11",608 "paypal/merchant-sdk-php": "<3.12",609 "pear/archive_tar": "<1.4.14",610 "pear/crypt_gpg": "<1.6.7",611 "pegasus/google-for-jobs": "<1.5.1|>=2,<2.1.1",612 "personnummer/personnummer": "<3.0.2",613 "phanan/koel": "<5.1.4",614 "php-mod/curl": "<2.3.2",615 "phpbb/phpbb": ">=3.2,<3.2.10|>=3.3,<3.3.1",616 "phpfastcache/phpfastcache": "<6.1.5|>=7,<7.1.2|>=8,<8.0.7",617 "phpmailer/phpmailer": "<6.5",618 "phpmussel/phpmussel": ">=1,<1.6",619 "phpmyadmin/phpmyadmin": "<5.2.1",620 "phpmyfaq/phpmyfaq": "<=3.1.7",621 "phpoffice/phpexcel": "<1.8",622 "phpoffice/phpspreadsheet": "<1.16",623 "phpseclib/phpseclib": "<2.0.31|>=3,<3.0.19",624 "phpservermon/phpservermon": "<=3.5.2",625 "phpsysinfo/phpsysinfo": "<3.2.5",626 "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5,<5.6.3",627 "phpwhois/phpwhois": "<=4.2.5",628 "phpxmlrpc/extras": "<0.6.1",629 "phpxmlrpc/phpxmlrpc": "<4.9.2",630 "pimcore/customer-management-framework-bundle": "<3.3.10",631 "pimcore/data-hub": "<1.2.4",632 "pimcore/perspective-editor": "<1.5.1",633 "pimcore/pimcore": "<10.5.21",634 "pixelfed/pixelfed": "<=0.11.4",635 "pocketmine/bedrock-protocol": "<8.0.2",636 "pocketmine/pocketmine-mp": "< 4.18.0-ALPHA2|<4.12.5|>= 4.0.0-BETA5, < 4.4.2",637 "pressbooks/pressbooks": "<5.18",638 "prestashop/autoupgrade": ">=4,<4.10.1",639 "prestashop/blockwishlist": ">=2,<2.1.1",640 "prestashop/contactform": ">=1.0.1,<4.3",641 "prestashop/gamification": "<2.3.2",642 "prestashop/prestashop": "<8.0.4",643 "prestashop/productcomments": "<5.0.2",644 "prestashop/ps_emailsubscription": "<2.6.1",645 "prestashop/ps_facetedsearch": "<3.4.1",646 "prestashop/ps_linklist": "<3.1",647 "privatebin/privatebin": "<1.4",648 "processwire/processwire": "<=3.0.200",649 "propel/propel": ">=2-alpha.1,<=2-alpha.7",650 "propel/propel1": ">=1,<=1.7.1",651 "pterodactyl/panel": "<1.7",652 "ptrofimov/beanstalk_console": "<1.7.14",653 "pusher/pusher-php-server": "<2.2.1",654 "pwweb/laravel-core": "<=0.3.6-beta",655 "pyrocms/pyrocms": "<=3.9.1",656 "rainlab/debugbar-plugin": "<3.1",657 "rankmath/seo-by-rank-math": "<=1.0.95",658 "react/http": ">=0.7,<1.9",659 "really-simple-plugins/complianz-gdpr": "<6.4.2",660 "remdex/livehelperchat": "<3.99",661 "rmccue/requests": ">=1.6,<1.8",662 "robrichards/xmlseclibs": "<3.0.4",663 "roots/soil": "<4.1",664 "rudloff/alltube": "<3.0.3",665 "s-cart/core": "<6.9",666 "s-cart/s-cart": "<6.9",667 "sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1",668 "sabre/dav": ">=1.6,<1.6.99|>=1.7,<1.7.11|>=1.8,<1.8.9",669 "scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11",670 "sensiolabs/connect": "<4.2.3",671 "serluck/phpwhois": "<=4.2.6",672 "shopware/core": "<=6.4.20",673 "shopware/platform": "<=6.4.20",674 "shopware/production": "<=6.3.5.2",675 "shopware/shopware": "<=5.7.14",676 "shopware/storefront": "<=6.4.8.1",677 "shopxo/shopxo": "<2.2.6",678 "showdoc/showdoc": "<2.10.4",679 "silverstripe/admin": "<1.12.7",680 "silverstripe/assets": ">=1,<1.11.1",681 "silverstripe/cms": "<4.11.3",682 "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1",683 "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3",684 "silverstripe/framework": "<4.12.5",685 "silverstripe/graphql": "<3.5.2|>=4-alpha.1,<4-alpha.2|>=4.1.1,<4.1.2|>=4.2.2,<4.2.3|= 4.0.0-alpha1",686 "silverstripe/hybridsessions": ">=1,<2.4.1|>=2.5,<2.5.1",687 "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1",688 "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4",689 "silverstripe/silverstripe-omnipay": "<2.5.2|>=3,<3.0.2|>=3.1,<3.1.4|>=3.2,<3.2.1",690 "silverstripe/subsites": ">=2,<2.6.1",691 "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1",692 "silverstripe/userforms": "<3",693 "silverstripe/versioned-admin": ">=1,<1.11.1",694 "simple-updates/phpwhois": "<=1",695 "simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4",696 "simplesamlphp/simplesamlphp": "<1.18.6",697 "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1",698 "simplesamlphp/simplesamlphp-module-openid": "<1",699 "simplesamlphp/simplesamlphp-module-openidprovider": "<0.9",700 "simplito/elliptic-php": "<1.0.6",701 "sitegeist/fluid-components": "<3.5",702 "slim/psr7": "<1.4.1|>=1.5,<1.5.1|>=1.6,<1.6.1",703 "slim/slim": "<2.6",704 "smarty/smarty": "<3.1.48|>=4,<4.3.1",705 "snipe/snipe-it": "<=6.0.14|>= 6.0.0-RC-1, <= 6.0.0-RC-5",706 "socalnick/scn-social-auth": "<1.15.2",707 "socialiteproviders/steam": "<1.1",708 "spatie/browsershot": "<3.57.4",709 "spipu/html2pdf": "<5.2.4",710 "spoonity/tcpdf": "<6.2.22",711 "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",712 "ssddanbrown/bookstack": "<22.2.3",713 "statamic/cms": "<3.2.39|>=3.3,<3.3.2",714 "stormpath/sdk": ">=0,<9.9.99",715 "studio-42/elfinder": "<2.1.59",716 "subrion/cms": "<=4.2.1",717 "sukohi/surpass": "<1",718 "sulu/sulu": "= 2.4.0-RC1|<1.6.44|>=2,<2.2.18|>=2.3,<2.3.8",719 "sumocoders/framework-user-bundle": "<1.4",720 "swag/paypal": "<5.4.4",721 "swiftmailer/swiftmailer": ">=4,<5.4.5",722 "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",723 "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",724 "sylius/grid-bundle": "<1.10.1",725 "sylius/paypal-plugin": ">=1,<1.2.4|>=1.3,<1.3.1",726 "sylius/resource-bundle": "<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4",727 "sylius/sylius": "<1.9.10|>=1.10,<1.10.11|>=1.11,<1.11.2",728 "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99",729 "symbiote/silverstripe-queuedjobs": ">=3,<3.0.2|>=3.1,<3.1.4|>=4,<4.0.7|>=4.1,<4.1.2|>=4.2,<4.2.4|>=4.3,<4.3.3|>=4.4,<4.4.3|>=4.5,<4.5.1|>=4.6,<4.6.4",730 "symbiote/silverstripe-seed": "<6.0.3",731 "symbiote/silverstripe-versionedfiles": "<=2.0.3",732 "symfont/process": ">=0",733 "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8",734 "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",735 "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4",736 "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1",737 "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=5.3.14,<=5.3.14|>=5.4.3,<=5.4.3|>=6.0.3,<=6.0.3|= 6.0.3|= 5.4.3|= 5.3.14",738 "symfony/http-foundation": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7",739 "symfony/http-kernel": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6",740 "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13",741 "symfony/maker-bundle": ">=1.27,<1.29.2|>=1.30,<1.31.1",742 "symfony/mime": ">=4.3,<4.3.8",743 "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",744 "symfony/polyfill": ">=1,<1.10",745 "symfony/polyfill-php55": ">=1,<1.10",746 "symfony/proxy-manager-bridge": ">=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",747 "symfony/routing": ">=2,<2.0.19",748 "symfony/security": ">=2,<2.7.51|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.8",749 "symfony/security-bundle": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6",750 "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.9",751 "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",752 "symfony/security-guard": ">=2.8,<3.4.48|>=4,<4.4.23|>=5,<5.2.8",753 "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7|>=5.1,<5.2.8|>=5.3,<5.3.2",754 "symfony/serializer": ">=2,<2.0.11|>=4.1,<4.4.35|>=5,<5.3.12",755 "symfony/symfony": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6",756 "symfony/translation": ">=2,<2.0.17",757 "symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3",758 "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8",759 "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",760 "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7",761 "t3/dce": ">=2.2,<2.6.2",762 "t3g/svg-sanitizer": "<1.0.3",763 "tastyigniter/tastyigniter": "<3.3",764 "tcg/voyager": "<=1.4",765 "tecnickcom/tcpdf": "<6.2.22",766 "terminal42/contao-tablelookupwizard": "<3.3.5",767 "thelia/backoffice-default-template": ">=2.1,<2.1.2",768 "thelia/thelia": ">=2.1-beta.1,<2.1.3",769 "theonedemon/phpwhois": "<=4.2.5",770 "thinkcmf/thinkcmf": "<=5.1.7",771 "thorsten/phpmyfaq": "<3.2-beta",772 "tinymce/tinymce": "<5.10.7|>=6,<6.3.1",773 "tinymighty/wiki-seo": "<1.2.2",774 "titon/framework": ">=0,<9.9.99",775 "tobiasbg/tablepress": "<= 2.0-RC1",776 "topthink/framework": "<6.0.14",777 "topthink/think": "<=6.1.1",778 "topthink/thinkphp": "<=3.2.3",779 "tribalsystems/zenario": "<=9.3.57595",780 "truckersmp/phpwhois": "<=4.3.1",781 "ttskch/pagination-service-provider": "<1",782 "twig/twig": "<1.44.7|>=2,<2.15.3|>=3,<3.4.3",783 "typo3/cms": "<2.0.5|>=3,<3.0.3|>=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.38|>=9,<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2",784 "typo3/cms-backend": ">=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1",785 "typo3/cms-core": "<8.7.51|>=9,<9.5.40|>=10,<10.4.36|>=11,<11.5.23|>=12,<12.2",786 "typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1",787 "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",788 "typo3/html-sanitizer": ">=1,<1.5|>=2,<2.1.1",789 "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3",790 "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1",791 "typo3/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",792 "typo3fluid/fluid": ">=2,<2.0.8|>=2.1,<2.1.7|>=2.2,<2.2.4|>=2.3,<2.3.7|>=2.4,<2.4.4|>=2.5,<2.5.11|>=2.6,<2.6.10",793 "ua-parser/uap-php": "<3.8",794 "unisharp/laravel-filemanager": "<=2.5.1",795 "userfrosting/userfrosting": ">=0.3.1,<4.6.3",796 "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2",797 "uvdesk/community-skeleton": "<=1.1.1",798 "vanilla/safecurl": "<0.9.2",799 "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4",800 "vova07/yii2-fileapi-widget": "<0.1.9",801 "vrana/adminer": "<4.8.1",802 "wallabag/tcpdf": "<6.2.22",803 "wallabag/wallabag": "<2.5.4",804 "wanglelecc/laracms": "<=1.0.3",805 "web-auth/webauthn-framework": ">=3.3,<3.3.4",806 "webbuilders-group/silverstripe-kapost-bridge": "<0.4",807 "webcoast/deferred-image-processing": "<1.0.2",808 "webpa/webpa": "<3.1.2",809 "wikimedia/parsoid": "<0.12.2",810 "willdurand/js-translation-bundle": "<2.1.1",811 "wintercms/winter": "<1.0.475|>=1.1,<1.1.10|>=1.2,<1.2.1",812 "woocommerce/woocommerce": "<6.6",813 "wp-cli/wp-cli": "<2.5",814 "wp-graphql/wp-graphql": "<0.3.5",815 "wpanel/wpanel4-cms": "<=4.3.1",816 "wpcloud/wp-stateless": "<3.2",817 "wwbn/avideo": "<=12.4",818 "xataface/xataface": "<3",819 "xpressengine/xpressengine": "<3.0.15",820 "yeswiki/yeswiki": "<4.1",821 "yetiforce/yetiforce-crm": "<=6.4",822 "yidashi/yii2cmf": "<=2",823 "yii2mod/yii2-cms": "<1.9.2",824 "yiisoft/yii": "<1.1.27",825 "yiisoft/yii2": "<2.0.38",826 "yiisoft/yii2-bootstrap": "<2.0.4",827 "yiisoft/yii2-dev": "<2.0.43",828 "yiisoft/yii2-elasticsearch": "<2.0.5",829 "yiisoft/yii2-gii": "<=2.2.4",830 "yiisoft/yii2-jui": "<2.0.4",831 "yiisoft/yii2-redis": "<2.0.8",832 "yikesinc/yikes-inc-easy-mailchimp-extender": "<6.8.6",833 "yoast-seo-for-typo3/yoast_seo": "<7.2.3",834 "yourls/yourls": "<=1.8.2",835 "zendesk/zendesk_api_client_php": "<2.2.11",836 "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3",837 "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2",838 "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2",839 "zendframework/zend-db": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.10|>=2.3,<2.3.5",840 "zendframework/zend-developer-tools": ">=1.2.2,<1.2.3",841 "zendframework/zend-diactoros": "<1.8.4",842 "zendframework/zend-feed": "<2.10.3",843 "zendframework/zend-form": ">=2,<2.2.7|>=2.3,<2.3.1",844 "zendframework/zend-http": "<2.8.1",845 "zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6",846 "zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3",847 "zendframework/zend-mail": ">=2,<2.4.11|>=2.5,<2.7.2",848 "zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1",849 "zendframework/zend-session": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.9|>=2.3,<2.3.4",850 "zendframework/zend-validator": ">=2.3,<2.3.6",851 "zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1",852 "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6",853 "zendframework/zendframework": "<=3",854 "zendframework/zendframework1": "<1.12.20",855 "zendframework/zendopenid": ">=2,<2.0.2",856 "zendframework/zendxml": ">=1,<1.0.1",857 "zetacomponents/mail": "<1.8.2",858 "zf-commons/zfc-user": "<1.2.2",859 "zfcampus/zf-apigility-doctrine": ">=1,<1.0.3",860 "zfr/zfr-oauth2-server-module": "<0.1.2",861 "zoujingli/thinkadmin": "<6.0.22"862 },863 "time": "2023-06-01T20:04:19+00:00",864 "type": "metapackage",865 "notification-url": "https://packagist.org/downloads/",866 "license": [867 "MIT"868 ],869 "authors": [870 {871 "name": "Marco Pivetta",872 "email": "[email protected]",873 "role": "maintainer"874 },875 {876 "name": "Ilya Tribusean",877 "email": "[email protected]",878 "role": "maintainer"879 }880 ],881 "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",882 "keywords": [883 "dev"884 ],885 "support": {886 "issues": "https://github.com/Roave/SecurityAdvisories/issues",887 "source": "https://github.com/Roave/SecurityAdvisories/tree/latest"888 },889 "funding": [890 {891 "url": "https://github.com/Ocramius",892 "type": "github"893 },894 {895 "url": "https://tidelift.com/funding/github/packagist/roave/security-advisories",896 "type": "tidelift"897 }898 ],899 "install-path": null900 },901 {902 "name": "squizlabs/php_codesniffer",903 "version": "3.7.2",904 "version_normalized": "3.7.2.0",905 "source": {906 "type": "git",907 "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",908 "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879"909 },910 "dist": {911 "type": "zip",912 "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ed8e00df0a83aa96acf703f8c2979ff33341f879",913 "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879",914 "shasum": ""915 },916 "require": {917 "ext-simplexml": "*",918 "ext-tokenizer": "*",919 "ext-xmlwriter": "*",920 "php": ">=5.4.0"921 },922 "require-dev": {923 "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"924 },925 "time": "2023-02-22T23:07:41+00:00",926 "bin": [927 "bin/phpcs",928 "bin/phpcbf"929 ],930 "type": "library",931 "extra": {932 "branch-alias": {933 "dev-master": "3.x-dev"934 }935 },936 "installation-source": "dist",937 "notification-url": "https://packagist.org/downloads/",938 "license": [939 "BSD-3-Clause"940 ],941 "authors": [942 {943 "name": "Greg Sherwood",944 "role": "lead"945 }946 ],947 "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",948 "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",949 "keywords": [950 "phpcs",951 "standards",952 "static analysis"953 ],954 "support": {955 "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",956 "source": "https://github.com/squizlabs/PHP_CodeSniffer",957 "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"958 },959 "install-path": "../squizlabs/php_codesniffer"960 30 }, 961 31 { … … 992 62 }, 993 63 "install-path": "../tivwp/updater" 994 },995 {996 "name": "woocommerce/woocommerce-sniffs",997 "version": "0.1.3",998 "version_normalized": "0.1.3.0",999 "source": {1000 "type": "git",1001 "url": "https://github.com/woocommerce/woocommerce-sniffs.git",1002 "reference": "4576d54595614d689bc4436acff8baaece3c5bb0"1003 },1004 "dist": {1005 "type": "zip",1006 "url": "https://api.github.com/repos/woocommerce/woocommerce-sniffs/zipball/4576d54595614d689bc4436acff8baaece3c5bb0",1007 "reference": "4576d54595614d689bc4436acff8baaece3c5bb0",1008 "shasum": ""1009 },1010 "require": {1011 "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",1012 "php": ">=7.0",1013 "phpcompatibility/phpcompatibility-wp": "^2.1.0",1014 "wp-coding-standards/wpcs": "^2.3.0"1015 },1016 "time": "2022-02-17T15:34:51+00:00",1017 "type": "phpcodesniffer-standard",1018 "installation-source": "dist",1019 "notification-url": "https://packagist.org/downloads/",1020 "license": [1021 "MIT"1022 ],1023 "authors": [1024 {1025 "name": "Claudio Sanches",1026 "email": "[email protected]"1027 }1028 ],1029 "description": "WooCommerce sniffs",1030 "keywords": [1031 "phpcs",1032 "standards",1033 "woocommerce",1034 "wordpress"1035 ],1036 "support": {1037 "issues": "https://github.com/woocommerce/woocommerce-sniffs/issues",1038 "source": "https://github.com/woocommerce/woocommerce-sniffs/tree/0.1.3"1039 },1040 "install-path": "../woocommerce/woocommerce-sniffs"1041 },1042 {1043 "name": "wp-coding-standards/wpcs",1044 "version": "2.3.0",1045 "version_normalized": "2.3.0.0",1046 "source": {1047 "type": "git",1048 "url": "https://github.com/WordPress/WordPress-Coding-Standards.git",1049 "reference": "7da1894633f168fe244afc6de00d141f27517b62"1050 },1051 "dist": {1052 "type": "zip",1053 "url": "https://api.github.com/repos/WordPress/WordPress-Coding-Standards/zipball/7da1894633f168fe244afc6de00d141f27517b62",1054 "reference": "7da1894633f168fe244afc6de00d141f27517b62",1055 "shasum": ""1056 },1057 "require": {1058 "php": ">=5.4",1059 "squizlabs/php_codesniffer": "^3.3.1"1060 },1061 "require-dev": {1062 "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || ^0.6",1063 "phpcompatibility/php-compatibility": "^9.0",1064 "phpcsstandards/phpcsdevtools": "^1.0",1065 "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"1066 },1067 "suggest": {1068 "dealerdirect/phpcodesniffer-composer-installer": "^0.6 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically."1069 },1070 "time": "2020-05-13T23:57:56+00:00",1071 "type": "phpcodesniffer-standard",1072 "installation-source": "dist",1073 "notification-url": "https://packagist.org/downloads/",1074 "license": [1075 "MIT"1076 ],1077 "authors": [1078 {1079 "name": "Contributors",1080 "homepage": "https://github.com/WordPress/WordPress-Coding-Standards/graphs/contributors"1081 }1082 ],1083 "description": "PHP_CodeSniffer rules (sniffs) to enforce WordPress coding conventions",1084 "keywords": [1085 "phpcs",1086 "standards",1087 "wordpress"1088 ],1089 "support": {1090 "issues": "https://github.com/WordPress/WordPress-Coding-Standards/issues",1091 "source": "https://github.com/WordPress/WordPress-Coding-Standards",1092 "wiki": "https://github.com/WordPress/WordPress-Coding-Standards/wiki"1093 },1094 "install-path": "../wp-coding-standards/wpcs"1095 64 } 1096 65 ], 1097 "dev": true, 1098 "dev-package-names": [ 1099 "dealerdirect/phpcodesniffer-composer-installer", 1100 "phpcompatibility/php-compatibility", 1101 "phpcompatibility/phpcompatibility-paragonie", 1102 "phpcompatibility/phpcompatibility-wp", 1103 "roave/security-advisories", 1104 "squizlabs/php_codesniffer", 1105 "woocommerce/woocommerce-sniffs", 1106 "wp-coding-standards/wpcs" 1107 ] 66 "dev": false, 67 "dev-package-names": [] 1108 68 } -
wpglobus/trunk/vendor/composer/installed.php
r2924233 r2926059 2 2 'root' => array( 3 3 'name' => 'wpglobus/wpglobus', 4 'pretty_version' => 'dev- master',5 'version' => 'dev- master',6 'reference' => ' 37544949ffba3e95691f779a7c76978004d4e4ce',4 'pretty_version' => 'dev-develop', 5 'version' => 'dev-develop', 6 'reference' => 'f61882f66165bd9d4d90e7c51c699aa6e7a62458', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', 9 9 'aliases' => array(), 10 'dev' => true,10 'dev' => false, 11 11 ), 12 12 'versions' => array( … … 20 20 'dev_requirement' => false, 21 21 ), 22 'dealerdirect/phpcodesniffer-composer-installer' => array(23 'pretty_version' => 'v0.7.2',24 'version' => '0.7.2.0',25 'reference' => '1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db',26 'type' => 'composer-plugin',27 'install_path' => __DIR__ . '/../dealerdirect/phpcodesniffer-composer-installer',28 'aliases' => array(),29 'dev_requirement' => true,30 ),31 'phpcompatibility/php-compatibility' => array(32 'pretty_version' => '9.3.5',33 'version' => '9.3.5.0',34 'reference' => '9fb324479acf6f39452e0655d2429cc0d3914243',35 'type' => 'phpcodesniffer-standard',36 'install_path' => __DIR__ . '/../phpcompatibility/php-compatibility',37 'aliases' => array(),38 'dev_requirement' => true,39 ),40 'phpcompatibility/phpcompatibility-paragonie' => array(41 'pretty_version' => '1.3.2',42 'version' => '1.3.2.0',43 'reference' => 'bba5a9dfec7fcfbd679cfaf611d86b4d3759da26',44 'type' => 'phpcodesniffer-standard',45 'install_path' => __DIR__ . '/../phpcompatibility/phpcompatibility-paragonie',46 'aliases' => array(),47 'dev_requirement' => true,48 ),49 'phpcompatibility/phpcompatibility-wp' => array(50 'pretty_version' => '2.1.4',51 'version' => '2.1.4.0',52 'reference' => 'b6c1e3ee1c35de6c41a511d5eb9bd03e447480a5',53 'type' => 'phpcodesniffer-standard',54 'install_path' => __DIR__ . '/../phpcompatibility/phpcompatibility-wp',55 'aliases' => array(),56 'dev_requirement' => true,57 ),58 'roave/security-advisories' => array(59 'pretty_version' => 'dev-master',60 'version' => 'dev-master',61 'reference' => '4dac38892bfbf1fc7536b70b0a1f60718b39af1c',62 'type' => 'metapackage',63 'install_path' => NULL,64 'aliases' => array(),65 'dev_requirement' => true,66 ),67 'squizlabs/php_codesniffer' => array(68 'pretty_version' => '3.7.2',69 'version' => '3.7.2.0',70 'reference' => 'ed8e00df0a83aa96acf703f8c2979ff33341f879',71 'type' => 'library',72 'install_path' => __DIR__ . '/../squizlabs/php_codesniffer',73 'aliases' => array(),74 'dev_requirement' => true,75 ),76 22 'tivwp/updater' => array( 77 23 'pretty_version' => '1.0.10', … … 83 29 'dev_requirement' => false, 84 30 ), 85 'woocommerce/woocommerce-sniffs' => array(86 'pretty_version' => '0.1.3',87 'version' => '0.1.3.0',88 'reference' => '4576d54595614d689bc4436acff8baaece3c5bb0',89 'type' => 'phpcodesniffer-standard',90 'install_path' => __DIR__ . '/../woocommerce/woocommerce-sniffs',91 'aliases' => array(),92 'dev_requirement' => true,93 ),94 'wp-coding-standards/wpcs' => array(95 'pretty_version' => '2.3.0',96 'version' => '2.3.0.0',97 'reference' => '7da1894633f168fe244afc6de00d141f27517b62',98 'type' => 'phpcodesniffer-standard',99 'install_path' => __DIR__ . '/../wp-coding-standards/wpcs',100 'aliases' => array(),101 'dev_requirement' => true,102 ),103 31 'wpglobus/wpglobus' => array( 104 'pretty_version' => 'dev- master',105 'version' => 'dev- master',106 'reference' => ' 37544949ffba3e95691f779a7c76978004d4e4ce',32 'pretty_version' => 'dev-develop', 33 'version' => 'dev-develop', 34 'reference' => 'f61882f66165bd9d4d90e7c51c699aa6e7a62458', 107 35 'type' => 'wordpress-plugin', 108 36 'install_path' => __DIR__ . '/../../', -
wpglobus/trunk/wpglobus.php
r2924233 r2926059 16 16 * Text Domain: wpglobus 17 17 * Domain Path: /languages/ 18 * Version: 2.12. 118 * Version: 2.12.2 19 19 * Author: WPGlobus 20 20 * Author URI: https://wpglobus.com/ … … 45 45 } 46 46 47 define( 'WPGLOBUS_VERSION', '2.12. 1' );47 define( 'WPGLOBUS_VERSION', '2.12.2' ); 48 48 define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); 49 49 define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
Note: See TracChangeset
for help on using the changeset viewer.