Changeset 3386990
- Timestamp:
- 10/30/2025 10:39:28 AM (5 months ago)
- Location:
- payoneer-checkout/trunk
- Files:
-
- 1 added
- 6 edited
-
changelog.txt (modified) (1 diff)
-
languages/en_GB.pot (modified) (7 diffs)
-
modules/inpsyde/payoneer-payment-methods/src/PaymentMethodsModule.php (modified) (2 diffs)
-
patchwork.json (added)
-
payoneer-checkout.php (modified) (2 diffs)
-
vendor/composer/autoload_real.php (modified) (1 diff)
-
vendor/composer/installed.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
payoneer-checkout/trunk/changelog.txt
r3385291 r3386990 3 3 = [next-version] - yyyy-mm-dd = 4 4 5 = [3.5.4] - 2025-10-30 = 6 * Fixed: 7 * API Refunds from non-payoneer payment methods are no longer being blocked accidentally 5 8 6 9 = [3.5.3] - 2025-10-27 = -
payoneer-checkout/trunk/languages/en_GB.pot
r3377422 r3386990 210 210 #: modules.local/payment-methods/inc/fields.php:61 211 211 #: modules.local/payment-methods/inc/fields.php:87 212 #: modules.local/payment-methods/src/PaymentMethodsModule.php:1 59212 #: modules.local/payment-methods/src/PaymentMethodsModule.php:185 213 213 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:9 214 214 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:22 … … 216 216 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:61 217 217 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:87 218 #: modules/inpsyde/payoneer-payment-methods/src/PaymentMethodsModule.php:1 59218 #: modules/inpsyde/payoneer-payment-methods/src/PaymentMethodsModule.php:185 219 219 msgid "Title" 220 220 msgstr "" … … 225 225 #: modules.local/payment-methods/inc/fields.php:64 226 226 #: modules.local/payment-methods/inc/fields.php:90 227 #: modules.local/payment-methods/src/PaymentMethodsModule.php:1 61227 #: modules.local/payment-methods/src/PaymentMethodsModule.php:187 228 228 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:11 229 229 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:24 … … 231 231 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:64 232 232 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:90 233 #: modules/inpsyde/payoneer-payment-methods/src/PaymentMethodsModule.php:1 61233 #: modules/inpsyde/payoneer-payment-methods/src/PaymentMethodsModule.php:187 234 234 msgid "The title that customers see at checkout" 235 235 msgstr "" … … 252 252 #: modules.local/payment-methods/inc/fields.php:73 253 253 #: modules.local/payment-methods/inc/fields.php:99 254 #: modules.local/payment-methods/src/PaymentMethodsModule.php:2 26254 #: modules.local/payment-methods/src/PaymentMethodsModule.php:252 255 255 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:47 256 256 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:73 257 257 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:99 258 #: modules/inpsyde/payoneer-payment-methods/src/PaymentMethodsModule.php:2 26258 #: modules/inpsyde/payoneer-payment-methods/src/PaymentMethodsModule.php:252 259 259 msgid "Description" 260 260 msgstr "" … … 263 263 #: modules.local/payment-methods/inc/fields.php:76 264 264 #: modules.local/payment-methods/inc/fields.php:102 265 #: modules.local/payment-methods/src/PaymentMethodsModule.php:2 28265 #: modules.local/payment-methods/src/PaymentMethodsModule.php:254 266 266 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:50 267 267 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:76 268 268 #: modules/inpsyde/payoneer-payment-methods/inc/fields.php:102 269 #: modules/inpsyde/payoneer-payment-methods/src/PaymentMethodsModule.php:2 28269 #: modules/inpsyde/payoneer-payment-methods/src/PaymentMethodsModule.php:254 270 270 msgid "The description that customers see at checkout" 271 271 msgstr "" … … 361 361 362 362 #. translators: Text used as a default Hosted payment method description which is displayed on checkout in hosted mode and in HPP fallback case in embedded mode 363 #: modules.local/payment-methods/src/PaymentMethodsModule.php:2 23364 #: modules/inpsyde/payoneer-payment-methods/src/PaymentMethodsModule.php:2 23363 #: modules.local/payment-methods/src/PaymentMethodsModule.php:249 364 #: modules/inpsyde/payoneer-payment-methods/src/PaymentMethodsModule.php:249 365 365 msgid "Payment will be done on a dedicated payment page" 366 366 msgstr "" -
payoneer-checkout/trunk/modules/inpsyde/payoneer-payment-methods/src/PaymentMethodsModule.php
r3377422 r3386990 60 60 * This hook fires directly before the RefundProcessor::refundOrderPayment() handler is 61 61 * invoked and provides a reference to the full WC_Order_Refund object. 62 * 63 * This is a rather unpleasant requirement to implement async refunds. 64 * @see https://github.com/woocommerce/woocommerce/issues/52338 62 65 */ 63 66 add_action('woocommerce_create_refund', static function ($refund, $args) use ($container) { … … 65 68 return; 66 69 } 70 /** 71 * The 'woocommerce_create_refund' is a global hook that does not pre-filter 72 * by payment gateway/method. Hence, it is OUR responsibility to do so. 73 * We perform this filtering here in the bootstrapping rather than 74 * the actual refund business logic since those areas expect 75 * to be wired up by WooCommerce directly. 76 */ 77 $wcOrder = wc_get_order($refund->get_parent_id()); 78 assert($wcOrder instanceof WC_Order); 79 $payoneerMethodIds = $container->get('payment_gateways'); 80 if (!in_array($wcOrder->get_payment_method(), $payoneerMethodIds, \true)) { 81 return; 82 } 83 /** 84 * Now we have determined that the refund was paid for with one of our methods. 85 * So it is safe to pass it on to our RefundProcessor 86 */ 67 87 $processor = $container->get('payment_methods.common.refund_processor'); 68 88 assert($processor instanceof RefundProcessor); -
payoneer-checkout/trunk/payoneer-checkout.php
r3385290 r3386990 4 4 * Plugin Name: Payoneer Checkout 5 5 * Description: Payoneer Checkout for WooCommerce 6 * Version: 3.5. 36 * Version: 3.5.4 7 7 * Author: Payoneer 8 8 * Requires at least: 5.4 … … 15 15 * Text Domain: payoneer-checkout 16 16 * Domain Path: /languages 17 * SHA: db2ebb1951b6ded796bfc546177d512c33f812a817 * SHA: 36c7cf0f4b6acfe59029c7a94d6320ce818db252 18 18 */ 19 19 declare (strict_types=1); -
payoneer-checkout/trunk/vendor/composer/autoload_real.php
r3385290 r3386990 36 36 $filesToLoad = \Composer\Autoload\ComposerStaticInitb542dc6b99911230db0e0e32ccd15e74::$files; 37 37 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { 38 if (empty($GLOBALS['__composer_autoload_files_ db2ebb1951b6ded796bfc546177d512c33f812a8'][$fileIdentifier])) {39 $GLOBALS['__composer_autoload_files_ db2ebb1951b6ded796bfc546177d512c33f812a8'][$fileIdentifier] = true;38 if (empty($GLOBALS['__composer_autoload_files_36c7cf0f4b6acfe59029c7a94d6320ce818db252'][$fileIdentifier])) { 39 $GLOBALS['__composer_autoload_files_36c7cf0f4b6acfe59029c7a94d6320ce818db252'][$fileIdentifier] = true; 40 40 41 41 require $file; -
payoneer-checkout/trunk/vendor/composer/installed.php
r3385290 r3386990 3 3 namespace Syde\Vendor; 4 4 5 return array('root' => array('name' => 'inpsyde/payoneer-checkout', 'pretty_version' => 'dev-release/3.5. 3', 'version' => 'dev-release/3.5.3', 'reference' => 'db2ebb1951b6ded796bfc546177d512c33f812a8', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('composer/installers' => array('pretty_version' => 'v2.3.0', 'version' => '2.3.0.0', 'reference' => '12fb2dfe5e16183de69e784a7b84046c43d97e8e', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/./installers', 'aliases' => array(), 'dev_requirement' => \false), 'container-interop/service-provider' => array('pretty_version' => 'v0.4.1', 'version' => '0.4.1.0', 'reference' => 'e04441ca21ef03e10dce70b0af29269281eec6dc', 'type' => 'library', 'install_path' => __DIR__ . '/../container-interop/service-provider', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/collections-interface' => array('pretty_version' => 'v0.3.0', 'version' => '0.3.0.0', 'reference' => '74464a969b340d16889eacd9eadc9817f7e7f47a', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/collections-interface', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/containers' => array('pretty_version' => 'v0.1.5', 'version' => '0.1.5.0', 'reference' => '1568cb2def9dee213c5846c4618f9d6b2cebbdef', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/containers', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/package-interface' => array('pretty_version' => 'v0.1.0-alpha4', 'version' => '0.1.0.0-alpha4', 'reference' => 'bcc73f4285eead9b482dbb89662b723abf49298b', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/package-interface', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/services' => array('pretty_version' => 'v0.1.1-alpha3', 'version' => '0.1.1.0-alpha3', 'reference' => '1a17b6b2cb2fdef0c0b541c8992188d9740746ce', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/services', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/validation-interface' => array('pretty_version' => 'v0.3.0-alpha3', 'version' => '0.3.0.0-alpha3', 'reference' => '0e73c7bf3d2421ceb79331c60a9bc1b1d5eb65a6', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/validation-interface', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/validator' => array('pretty_version' => 'v0.1.0-alpha1', 'version' => '0.1.0.0-alpha1', 'reference' => 'e10fba08398e33e123ada3d5fe0d147a72525cc2', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/validator', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/versions' => array('pretty_version' => 'v0.1.0-alpha3', 'version' => '0.1.0.0-alpha3', 'reference' => '120b22b248d0b46e41bac93bf3394516c9d55730', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/versions', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/assets' => array('pretty_version' => '2.10.0', 'version' => '2.10.0.0', 'reference' => 'b328f2f357e147f662779d20d6642329b1db7307', 'type' => 'library', 'install_path' => __DIR__ . '/../inpsyde/assets', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/logger' => array('pretty_version' => 'v1.4.0', 'version' => '1.4.0.0', 'reference' => 'ea22ad6862a771239e02d2a33b4fafb095dc4e30', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/logger', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/modularity' => array('pretty_version' => '1.12.0', 'version' => '1.12.0.0', 'reference' => 'e1ca1c81b7b663355906b586525d21ac5d46bc65', 'type' => 'library', 'install_path' => __DIR__ . '/../inpsyde/modularity', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payment-gateway' => array('pretty_version' => '2.8.0', 'version' => '2.8.0.0', 'reference' => 'a1558c085ad026bf95220a1ef2abe83070993fdb', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payment-gateway', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-admin-banner' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '9fbfb5ad20c6f3eded0540fa088393a6f5ba01a2', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-admin-banner', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-analytics' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => 'cea259f74a42805a8c8c824975ecf7ebd4d6854c', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-analytics', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-api' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '3141a286544a5828ba411f19187ecbc0776d1198', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-api', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-checkout' => array('pretty_version' => 'dev-release/3.5.3', 'version' => 'dev-release/3.5.3', 'reference' => 'db2ebb1951b6ded796bfc546177d512c33f812a8', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-embedded-payment' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '6ce354bfcb78e98026dc6c5b152b4e0b13af1ae0', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-embedded-payment', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-hosted-payment' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '786b9784805e8830d240d21f8ea93bbc2a4818e3', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-hosted-payment', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-list-session' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '76755c87c3df513673d5b74ca3877e66f07abda4', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-list-session', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-migrator' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => 'fa868f933c3e348befcfaf459735e300ca7b5350', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-migrator', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-page-detector' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '0a3c51c69790735837a4e7884d74cd0656f6fe99', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-page-detector', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-payment-gateway-checkout' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '9db2a7daa57ba440f50de2e0345faa3d8db5babe', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-payment-gateway-checkout', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-payment-methods' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '5ce35ddeeb2f88faea898b97d6ebc2988874eb84', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-payment-methods', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-sdk' => array('pretty_version' => 'v4.1.0', 'version' => '4.1.0.0', 'reference' => '096f3db439f7d77bef2d165dbecd406cc4210550', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-sdk', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-settings' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => 'cb601f00438927dad370ce92c403744c8fa35cf7', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-settings', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-status-report' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '78bc7cf91e905f1d99ca13478d4af2842796c328', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-status-report', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-third-party-compat' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => 'cd3262cd2bac6f6d5b253abf0edda9051a1cedd5', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-third-party-compat', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-webhooks' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '3e8c63f9a746abfc79234e7ad85d4e58790b6276', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-webhooks', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-websdk' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => 'fd04181b18ca9ef28d66c267bcbcbe1991105e07', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-websdk', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-wp' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => 'f6967b69c11ee362a2c20e7c240f4fe5f2cf5d0f', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-wp', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/psr-18-wp-http-client' => array('pretty_version' => 'v0.1.0-alpha4', 'version' => '0.1.0.0-alpha4', 'reference' => '8dd172262c95fc3fb4716b14a54c9406254ba441', 'type' => 'library', 'install_path' => __DIR__ . '/../inpsyde/psr-18-wp-http-client', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/wp-context' => array('pretty_version' => '1.5.1', 'version' => '1.5.1.0', 'reference' => '1350ada72517f5d374bff9409b4ea5a02377ec1a', 'type' => 'library', 'install_path' => __DIR__ . '/../inpsyde/wp-context', 'aliases' => array(), 'dev_requirement' => \false), 'nyholm/psr7' => array('pretty_version' => '1.8.2', 'version' => '1.8.2.0', 'reference' => 'a71f2b11690f4b24d099d6b16690a90ae14fc6f3', 'type' => 'library', 'install_path' => __DIR__ . '/../nyholm/psr7', 'aliases' => array(), 'dev_requirement' => \false), 'oomphinc/composer-installers-extender' => array('pretty_version' => '2.0.1', 'version' => '2.0.1.0', 'reference' => 'cbf4b6f9a24153b785d09eee755b995ba87bd5f9', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../oomphinc/composer-installers-extender', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/container' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client' => array('pretty_version' => '1.0.3', 'version' => '1.0.3.0', 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '^1.0')), 'psr/http-factory' => array('pretty_version' => '1.1.0', 'version' => '1.1.0.0', 'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-message' => array('pretty_version' => '1.1', 'version' => '1.1.0.0', 'reference' => 'cb6ce4845ce34a8ad9e68117c10ee90a29919eba', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-server-handler' => array('pretty_version' => '1.0.2', 'version' => '1.0.2.0', 'reference' => '84c4fb66179be4caaf8e97bd239203245302e7d4', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-server-handler', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-server-middleware' => array('pretty_version' => '1.0.2', 'version' => '1.0.2.0', 'reference' => 'c1481f747daaa6a0782775cd6a8c26a1bf4a3829', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-server-middleware', 'aliases' => array(), 'dev_requirement' => \false), 'psr/log' => array('pretty_version' => '1.1.4', 'version' => '1.1.4.0', 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'sniccowp/php-scoper-wordpress-excludes' => array('pretty_version' => '6.8.1', 'version' => '6.8.1.0', 'reference' => 'c2c18f89a9aa2d7ef1998d233b9ed00d0deff5dd', 'type' => 'library', 'install_path' => __DIR__ . '/../sniccowp/php-scoper-wordpress-excludes', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.33.0', 'version' => '1.33.0.0', 'reference' => '0cc9dd0f17f61d8131e7df6b84bd344899fe2608', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'wp-oop/containers' => array('pretty_version' => 'v0.1.1-alpha3', 'version' => '0.1.1.0-alpha3', 'reference' => '01f52a9bb347e28aa25e80bd777d6e8b56451d9e', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-oop/containers', 'aliases' => array(), 'dev_requirement' => \false)));5 return array('root' => array('name' => 'inpsyde/payoneer-checkout', 'pretty_version' => 'dev-release/3.5.4', 'version' => 'dev-release/3.5.4', 'reference' => '36c7cf0f4b6acfe59029c7a94d6320ce818db252', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('composer/installers' => array('pretty_version' => 'v2.3.0', 'version' => '2.3.0.0', 'reference' => '12fb2dfe5e16183de69e784a7b84046c43d97e8e', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/./installers', 'aliases' => array(), 'dev_requirement' => \false), 'container-interop/service-provider' => array('pretty_version' => 'v0.4.1', 'version' => '0.4.1.0', 'reference' => 'e04441ca21ef03e10dce70b0af29269281eec6dc', 'type' => 'library', 'install_path' => __DIR__ . '/../container-interop/service-provider', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/collections-interface' => array('pretty_version' => 'v0.3.0', 'version' => '0.3.0.0', 'reference' => '74464a969b340d16889eacd9eadc9817f7e7f47a', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/collections-interface', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/containers' => array('pretty_version' => 'v0.1.5', 'version' => '0.1.5.0', 'reference' => '1568cb2def9dee213c5846c4618f9d6b2cebbdef', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/containers', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/package-interface' => array('pretty_version' => 'v0.1.0-alpha4', 'version' => '0.1.0.0-alpha4', 'reference' => 'bcc73f4285eead9b482dbb89662b723abf49298b', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/package-interface', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/services' => array('pretty_version' => 'v0.1.1-alpha3', 'version' => '0.1.1.0-alpha3', 'reference' => '1a17b6b2cb2fdef0c0b541c8992188d9740746ce', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/services', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/validation-interface' => array('pretty_version' => 'v0.3.0-alpha3', 'version' => '0.3.0.0-alpha3', 'reference' => '0e73c7bf3d2421ceb79331c60a9bc1b1d5eb65a6', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/validation-interface', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/validator' => array('pretty_version' => 'v0.1.0-alpha1', 'version' => '0.1.0.0-alpha1', 'reference' => 'e10fba08398e33e123ada3d5fe0d147a72525cc2', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/validator', 'aliases' => array(), 'dev_requirement' => \false), 'dhii/versions' => array('pretty_version' => 'v0.1.0-alpha3', 'version' => '0.1.0.0-alpha3', 'reference' => '120b22b248d0b46e41bac93bf3394516c9d55730', 'type' => 'library', 'install_path' => __DIR__ . '/../dhii/versions', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/assets' => array('pretty_version' => '2.10.0', 'version' => '2.10.0.0', 'reference' => 'b328f2f357e147f662779d20d6642329b1db7307', 'type' => 'library', 'install_path' => __DIR__ . '/../inpsyde/assets', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/logger' => array('pretty_version' => 'v1.4.0', 'version' => '1.4.0.0', 'reference' => 'ea22ad6862a771239e02d2a33b4fafb095dc4e30', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/logger', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/modularity' => array('pretty_version' => '1.12.0', 'version' => '1.12.0.0', 'reference' => 'e1ca1c81b7b663355906b586525d21ac5d46bc65', 'type' => 'library', 'install_path' => __DIR__ . '/../inpsyde/modularity', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payment-gateway' => array('pretty_version' => '2.8.0', 'version' => '2.8.0.0', 'reference' => 'a1558c085ad026bf95220a1ef2abe83070993fdb', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payment-gateway', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-admin-banner' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '9fbfb5ad20c6f3eded0540fa088393a6f5ba01a2', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-admin-banner', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-analytics' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => 'cea259f74a42805a8c8c824975ecf7ebd4d6854c', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-analytics', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-api' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '3141a286544a5828ba411f19187ecbc0776d1198', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-api', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-checkout' => array('pretty_version' => 'dev-release/3.5.4', 'version' => 'dev-release/3.5.4', 'reference' => '36c7cf0f4b6acfe59029c7a94d6320ce818db252', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-embedded-payment' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '6ce354bfcb78e98026dc6c5b152b4e0b13af1ae0', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-embedded-payment', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-hosted-payment' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '786b9784805e8830d240d21f8ea93bbc2a4818e3', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-hosted-payment', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-list-session' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '76755c87c3df513673d5b74ca3877e66f07abda4', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-list-session', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-migrator' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => 'fa868f933c3e348befcfaf459735e300ca7b5350', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-migrator', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-page-detector' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '0a3c51c69790735837a4e7884d74cd0656f6fe99', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-page-detector', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-payment-gateway-checkout' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '9db2a7daa57ba440f50de2e0345faa3d8db5babe', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-payment-gateway-checkout', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-payment-methods' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '5ce35ddeeb2f88faea898b97d6ebc2988874eb84', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-payment-methods', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-sdk' => array('pretty_version' => 'v4.1.0', 'version' => '4.1.0.0', 'reference' => '096f3db439f7d77bef2d165dbecd406cc4210550', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-sdk', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-settings' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => 'cb601f00438927dad370ce92c403744c8fa35cf7', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-settings', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-status-report' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '78bc7cf91e905f1d99ca13478d4af2842796c328', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-status-report', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-third-party-compat' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => 'cd3262cd2bac6f6d5b253abf0edda9051a1cedd5', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-third-party-compat', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-webhooks' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => '3e8c63f9a746abfc79234e7ad85d4e58790b6276', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-webhooks', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-websdk' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => 'fd04181b18ca9ef28d66c267bcbcbe1991105e07', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-websdk', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/payoneer-wp' => array('pretty_version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'version' => 'dev-fix/PN-2447-order-not-found-by-transaction-id', 'reference' => 'f6967b69c11ee362a2c20e7c240f4fe5f2cf5d0f', 'type' => 'inpsyde-module', 'install_path' => __DIR__ . '/../../modules/inpsyde/payoneer-wp', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/psr-18-wp-http-client' => array('pretty_version' => 'v0.1.0-alpha4', 'version' => '0.1.0.0-alpha4', 'reference' => '8dd172262c95fc3fb4716b14a54c9406254ba441', 'type' => 'library', 'install_path' => __DIR__ . '/../inpsyde/psr-18-wp-http-client', 'aliases' => array(), 'dev_requirement' => \false), 'inpsyde/wp-context' => array('pretty_version' => '1.5.1', 'version' => '1.5.1.0', 'reference' => '1350ada72517f5d374bff9409b4ea5a02377ec1a', 'type' => 'library', 'install_path' => __DIR__ . '/../inpsyde/wp-context', 'aliases' => array(), 'dev_requirement' => \false), 'nyholm/psr7' => array('pretty_version' => '1.8.2', 'version' => '1.8.2.0', 'reference' => 'a71f2b11690f4b24d099d6b16690a90ae14fc6f3', 'type' => 'library', 'install_path' => __DIR__ . '/../nyholm/psr7', 'aliases' => array(), 'dev_requirement' => \false), 'oomphinc/composer-installers-extender' => array('pretty_version' => '2.0.1', 'version' => '2.0.1.0', 'reference' => 'cbf4b6f9a24153b785d09eee755b995ba87bd5f9', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../oomphinc/composer-installers-extender', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/container' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client' => array('pretty_version' => '1.0.3', 'version' => '1.0.3.0', 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '^1.0')), 'psr/http-factory' => array('pretty_version' => '1.1.0', 'version' => '1.1.0.0', 'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-message' => array('pretty_version' => '1.1', 'version' => '1.1.0.0', 'reference' => 'cb6ce4845ce34a8ad9e68117c10ee90a29919eba', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-server-handler' => array('pretty_version' => '1.0.2', 'version' => '1.0.2.0', 'reference' => '84c4fb66179be4caaf8e97bd239203245302e7d4', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-server-handler', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-server-middleware' => array('pretty_version' => '1.0.2', 'version' => '1.0.2.0', 'reference' => 'c1481f747daaa6a0782775cd6a8c26a1bf4a3829', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-server-middleware', 'aliases' => array(), 'dev_requirement' => \false), 'psr/log' => array('pretty_version' => '1.1.4', 'version' => '1.1.4.0', 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'sniccowp/php-scoper-wordpress-excludes' => array('pretty_version' => '6.8.1', 'version' => '6.8.1.0', 'reference' => 'c2c18f89a9aa2d7ef1998d233b9ed00d0deff5dd', 'type' => 'library', 'install_path' => __DIR__ . '/../sniccowp/php-scoper-wordpress-excludes', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.33.0', 'version' => '1.33.0.0', 'reference' => '0cc9dd0f17f61d8131e7df6b84bd344899fe2608', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'wp-oop/containers' => array('pretty_version' => 'v0.1.1-alpha3', 'version' => '0.1.1.0-alpha3', 'reference' => '01f52a9bb347e28aa25e80bd777d6e8b56451d9e', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-oop/containers', 'aliases' => array(), 'dev_requirement' => \false)));
Note: See TracChangeset
for help on using the changeset viewer.