Plugin Directory

Changeset 3468325


Ignore:
Timestamp:
02/24/2026 07:31:34 AM (2 weeks ago)
Author:
knitpay
Message:

v9.2.1.0:
Razorpay: Fixed invoice upload issue due to missing Icon image.
Razorpay: Avoide multiple invoice upload in Import Flow.
Fixed several Deprecated code for PHP 8.5.
WooCommerce: Fixed issue while reattempting payment after error.

Location:
knit-pay/trunk
Files:
20 edited

Legend:

Unmodified
Added
Removed
  • knit-pay/trunk/composer.json

    r3461336 r3468325  
    8686        "wp-pay-extensions/restrict-content-pro": "dev-knitpay-master as 4.6.3",
    8787        "wp-pay-extensions/woocommerce": "dev-knitpay-master as 4.12.1",
    88         "wp-pay/core": "4.26.0.0 as 4.26.0"
     88        "wp-pay/core": "4.26.0.1 as 4.26.0"
    8989    },
    9090    "require-dev": {
  • knit-pay/trunk/composer.lock

    r3463536 r3468325  
    55        "This file is @generated automatically"
    66    ],
    7     "content-hash": "d96c31ed41cfae1e0ca55b155f587fff",
     7    "content-hash": "594e0506b75e1d4379187dc5eaa985d3",
    88    "packages": [
    99        {
     
    37313731                "type": "git",
    37323732                "url": "https://github.com/knit-pay/extension-woocommerce",
    3733                 "reference": "9bc32c5590d7bb2b60854b14466850f8f8bf75b2"
     3733                "reference": "1aa24b40118c3afb3e1cee30a0ecf87dc5f45457"
    37343734            },
    37353735            "require": {
     
    38513851                "source": "https://github.com/wp-pay-extensions/woocommerce"
    38523852            },
    3853             "time": "2026-01-26T14:25:03+00:00"
     3853            "time": "2026-02-24T06:33:19+00:00"
    38543854        },
    38553855        {
    38563856            "name": "wp-pay/core",
    3857             "version": "4.26.0.0",
     3857            "version": "4.26.0.1",
    38583858            "source": {
    38593859                "type": "git",
    38603860                "url": "https://github.com/knit-pay/wp-pay-core",
    3861                 "reference": "bb7446362f17a3eda131899ad871e32f75b73f2a"
     3861                "reference": "d97e90531761a87baa09b64f9b651eaf5fc9b9c5"
    38623862            },
    38633863            "require": {
     
    39973997                "source": "https://github.com/wp-pay/core"
    39983998            },
    3999             "time": "2026-01-26T08:18:28+00:00"
     3999            "time": "2026-02-23T20:00:35+00:00"
    40004000        }
    40014001    ],
     
    54345434        {
    54355435            "name": "gettext/languages",
    5436             "version": "2.12.1",
     5436            "version": "2.12.2",
    54375437            "source": {
    54385438                "type": "git",
    54395439                "url": "https://github.com/php-gettext/Languages.git",
    5440                 "reference": "0b0b0851c55168e1dfb14305735c64019732b5f1"
    5441             },
    5442             "dist": {
    5443                 "type": "zip",
    5444                 "url": "https://api.github.com/repos/php-gettext/Languages/zipball/0b0b0851c55168e1dfb14305735c64019732b5f1",
    5445                 "reference": "0b0b0851c55168e1dfb14305735c64019732b5f1",
     5440                "reference": "079d6f4842cbcbf5673a70d8e93169a684e7aadd"
     5441            },
     5442            "dist": {
     5443                "type": "zip",
     5444                "url": "https://api.github.com/repos/php-gettext/Languages/zipball/079d6f4842cbcbf5673a70d8e93169a684e7aadd",
     5445                "reference": "079d6f4842cbcbf5673a70d8e93169a684e7aadd",
    54465446                "shasum": ""
    54475447            },
     
    54935493            "support": {
    54945494                "issues": "https://github.com/php-gettext/Languages/issues",
    5495                 "source": "https://github.com/php-gettext/Languages/tree/2.12.1"
     5495                "source": "https://github.com/php-gettext/Languages/tree/2.12.2"
    54965496            },
    54975497            "funding": [
     
    55055505                }
    55065506            ],
    5507             "time": "2025-03-19T11:14:02+00:00"
     5507            "time": "2026-02-23T14:05:50+00:00"
    55085508        },
    55095509        {
     
    1335013350        {
    1335113351            "package": "wp-pay/core",
    13352             "version": "4.26.0.0",
     13352            "version": "4.26.0.1",
    1335313353            "alias": "4.26.0",
    1335413354            "alias_normalized": "4.26.0.0"
  • knit-pay/trunk/gateways/razorpay/src/InvoiceUploader.php

    r3463536 r3468325  
    127127        }
    128128
     129        $scheduler_args = [ 'payment_id' => $payment->get_id() ];
     130        // Check if task is already scheduled to avoid duplicates.
     131        if ( \as_has_scheduled_action( 'knit_pay_razorpay_invoice_upload', $scheduler_args, 'knit-pay' ) ) {
     132            return;
     133        }
     134
    129135        // if debug mode is not enabled then don't upload test payment invoices.
    130136        if ( 'test' === $payment->get_mode() && ! knit_pay_plugin()->is_debug_mode() ) {
     
    141147        \as_enqueue_async_action(
    142148            'knit_pay_razorpay_invoice_upload',
    143             [
    144                 'payment_id' => $payment->get_id(),
    145             ],
     149            $scheduler_args,
    146150            'knit-pay'
    147151        );
     
    164168        $invoice                      = new InvoicePrinter( InvoicePrinter::INVOICE_SIZE_A4, $currency_code, $lang );
    165169        $this->config->checkout_image = get_post_meta( $this->config->config_id, '_pronamic_gateway_razorpay_checkout_image', true );
    166         $this->config->checkout_image = ABSPATH . ltrim( $this->config->checkout_image, '/' );
     170        if ( ! empty( $this->config->checkout_image ) ) {
     171            $this->config->checkout_image = ABSPATH . ltrim( $this->config->checkout_image, '/' );
     172        }
    167173
    168174        /* Header Settings */
    169         if ( ! empty( $this->config->checkout_image ) && file_exists( $this->config->checkout_image ) ) {
     175        if ( ! empty( $this->config->checkout_image ) && is_readable( $this->config->checkout_image ) ) {
    170176            $invoice->setLogo( $this->config->checkout_image );
    171177        }
  • knit-pay/trunk/gateways/stripe/src/Config.php

    r3448567 r3468325  
    6262            if ( $reflection_destination->hasProperty( $property_name ) ) {
    6363                $destination_property = $reflection_destination->getProperty( $property_name );
    64                 $destination_property->setAccessible( true );
    6564
    6665                $source_property = $property->getValue( $source );
  • knit-pay/trunk/gateways/upi-qr/src/Config.php

    r3448567 r3468325  
    5252            if ( $reflection_destination->hasProperty( $property_name ) ) {
    5353                $destination_property = $reflection_destination->getProperty( $property_name );
    54                 $destination_property->setAccessible( true );
    5554
    5655                $source_property = $property->getValue( $source );
  • knit-pay/trunk/includes/Utils.php

    r3463536 r3468325  
    305305        }
    306306
    307         if ( ! class_exists( 'WC' ) ) {
     307        if ( ! function_exists( 'WC' ) ) {
    308308            return $state_code;
    309309        }
  • knit-pay/trunk/knit-pay.php

    r3464013 r3468325  
    55 * Description: Seamlessly integrates 500+ payment gateways, including Cashfree, Instamojo, Razorpay, Paypal, Stripe, UPI QR, and SSLCommerz, with over 100 WordPress plugins.
    66 *
    7  * Version: 9.2.0.0
     7 * Version: 9.2.1.0
    88 * Requires at least: 6.2
    99 * Requires PHP: 8.1
     
    147147            ]
    148148        );
    149         $integrations[] = new \KnitPay\Extensions\BaBookEverything\Extension();
    150149
    151150        // Uncanny Automator.
  • knit-pay/trunk/packages/wp-pay-extensions/woocommerce/src/Gateway.php

    r3448567 r3468325  
    597597            $payment = Plugin::start_payment( $payment );
    598598        } catch ( \Exception $exception ) {
    599             WooCommerce::add_notice( Plugin::get_default_error_message(), 'error' );
    600 
    601             /**
    602              * We will rethrow the exception so WooCommerce can also handle the exception.
    603              *
    604              * @link https://github.com/woocommerce/woocommerce/blob/3.7.1/includes/class-wc-checkout.php#L1129-L1131
    605              */
    606             throw $exception;
     599            if ( empty( $exception->getMessage() ) ) {
     600                WooCommerce::add_notice( Plugin::get_default_error_message(), 'error' );
     601            } else {
     602                WooCommerce::add_notice( $exception->getMessage(), 'error' );
     603            }
     604
     605            return [
     606                'result' => 'failure',
     607            ];
    607608        }
    608609
  • knit-pay/trunk/packages/wp-pay/core/src/Address.php

    r3448567 r3468325  
    143143     * @return void
    144144     */
    145     public function set_name( ContactName $name = null ) {
     145    public function set_name( ?ContactName $name = null ) {
    146146        $this->name = $name;
    147147    }
  • knit-pay/trunk/packages/wp-pay/core/src/Core/PaymentMethodsCollection.php

    r3448567 r3468325  
    4848     */
    4949    public function get( $id ) {
    50         if ( array_key_exists( $id, $this->items ) ) {
     50        if ( null !== $id && array_key_exists( $id, $this->items ) ) {
    5151            return $this->items[ $id ];
    5252        }
  • knit-pay/trunk/packages/wp-pay/core/src/Customer.php

    r3448567 r3468325  
    121121     * @return void
    122122     */
    123     public function set_name( ContactName $name = null ) {
     123    public function set_name( ?ContactName $name = null ) {
    124124        $this->name = $name;
    125125    }
  • knit-pay/trunk/packages/wp-pay/core/src/Payments/Payment.php

    r3448567 r3468325  
    343343     * @return void
    344344     */
    345     public function set_failure_reason( FailureReason $failure_reason = null ) {
     345    public function set_failure_reason( ?FailureReason $failure_reason = null ) {
    346346        $this->failure_reason = $failure_reason;
    347347    }
  • knit-pay/trunk/packages/wp-pay/core/src/Payments/PaymentInfo.php

    r3448567 r3468325  
    368368     * @return void
    369369     */
    370     public function set_lines( PaymentLines $lines = null ) {
     370    public function set_lines( ?PaymentLines $lines = null ) {
    371371        $this->lines = $lines;
    372372    }
     
    396396     * @return void
    397397     */
    398     public function set_shipping_amount( Money $shipping_amount = null ) {
     398    public function set_shipping_amount( ?Money $shipping_amount = null ) {
    399399        $this->shipping_amount = $shipping_amount;
    400400    }
  • knit-pay/trunk/packages/wp-pay/core/src/Payments/PaymentLine.php

    r3448567 r3468325  
    262262     * @return void
    263263     */
    264     public function set_unit_price( Money $price = null ) {
    265         $this->unit_price = ( null === $price ? null : $price );
     264    public function set_unit_price( ?Money $price = null ) {
     265        $this->unit_price = ( $price ?? null );
    266266    }
    267267
     
    281281     * @return void
    282282     */
    283     public function set_discount_amount( Money $discount_amount = null ) {
     283    public function set_discount_amount( ?Money $discount_amount = null ) {
    284284        $this->discount_amount = $discount_amount;
    285285    }
  • knit-pay/trunk/packages/wp-pay/core/src/Payments/PaymentLines.php

    r3448567 r3468325  
    206206     * @throws \InvalidArgumentException Throws invalid argument exception when JSON is not an array.
    207207     */
    208     public static function from_json( $json, PaymentInfo $payment_info = null ) {
     208    public static function from_json( $json, ?PaymentInfo $payment_info = null ) {
    209209        if ( ! is_array( $json ) ) {
    210210            throw new \InvalidArgumentException( 'JSON value must be an array.' );
  • knit-pay/trunk/readme.txt

    r3464013 r3468325  
    33Tags: instamojo, razorpay, cashfree, payment, woocommerce
    44Requires at least: 6.2
    5 Tested up to: 6.9
     5Tested up to: 7.0
    66Requires PHP: 8.1
    7 Stable tag: 9.0.2.2
     7Stable tag: 9.2.1.0
    88License: GPL-3.0-or-later
    99
     
    196196* Kashier
    197197* PayTabs
     198* PayLetter
     199* PaymentWall
     200* Toss
     201* 2c2p
     202* esPay
    198203* and many more...
    199204
     
    212217* MyCryptoCheckout
    213218* CryptoCloud
     219* Lyzi
     220* BTCPay Server
     221* DePay
    214222* and many more...
    215223
  • knit-pay/trunk/vendor/composer/installed.json

    r3463536 r3468325  
    38793879                "type": "git",
    38803880                "url": "https://github.com/knit-pay/extension-woocommerce",
    3881                 "reference": "9bc32c5590d7bb2b60854b14466850f8f8bf75b2"
     3881                "reference": "1aa24b40118c3afb3e1cee30a0ecf87dc5f45457"
    38823882            },
    38833883            "require": {
     
    39093909                "yoast/wordpress-seo": "^22.3"
    39103910            },
    3911             "time": "2026-01-26T14:25:03+00:00",
     3911            "time": "2026-02-24T06:33:19+00:00",
    39123912            "type": "wordpress-plugin",
    39133913            "extra": {
     
    40054005        {
    40064006            "name": "wp-pay/core",
    4007             "version": "4.26.0.0",
    4008             "version_normalized": "4.26.0.0",
     4007            "version": "4.26.0.1",
     4008            "version_normalized": "4.26.0.1",
    40094009            "source": {
    40104010                "type": "git",
    40114011                "url": "https://github.com/knit-pay/wp-pay-core",
    4012                 "reference": "bb7446362f17a3eda131899ad871e32f75b73f2a"
     4012                "reference": "d97e90531761a87baa09b64f9b651eaf5fc9b9c5"
    40134013            },
    40144014            "require": {
     
    40474047                "yoast/phpunit-polyfills": "^2.0"
    40484048            },
    4049             "time": "2026-01-26T08:18:28+00:00",
     4049            "time": "2026-02-23T20:00:35+00:00",
    40504050            "type": "wordpress-plugin",
    40514051            "installation-source": "source",
  • knit-pay/trunk/vendor/composer/installed.php

    r3463536 r3468325  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '3504f0966d7ef1e7fc63eee9ffdfacd591eb516c',
     6        'reference' => '51a43a0df2ef5cd2f99dad355a031987e160ece7',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-master',
    1515            'version' => 'dev-master',
    16             'reference' => '3504f0966d7ef1e7fc63eee9ffdfacd591eb516c',
     16            'reference' => '51a43a0df2ef5cd2f99dad355a031987e160ece7',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
     
    572572            'pretty_version' => 'dev-knitpay-master',
    573573            'version' => 'dev-knitpay-master',
    574             'reference' => '9bc32c5590d7bb2b60854b14466850f8f8bf75b2',
     574            'reference' => '1aa24b40118c3afb3e1cee30a0ecf87dc5f45457',
    575575            'type' => 'wordpress-plugin',
    576576            'install_path' => __DIR__ . '/../../packages/wp-pay-extensions/woocommerce',
     
    587587        ),
    588588        'wp-pay/core' => array(
    589             'pretty_version' => '4.26.0.0',
    590             'version' => '4.26.0.0',
    591             'reference' => 'bb7446362f17a3eda131899ad871e32f75b73f2a',
     589            'pretty_version' => '4.26.0.1',
     590            'version' => '4.26.0.1',
     591            'reference' => 'd97e90531761a87baa09b64f9b651eaf5fc9b9c5',
    592592            'type' => 'wordpress-plugin',
    593593            'install_path' => __DIR__ . '/../../packages/wp-pay/core',
    594             'aliases' => array(),
     594            'aliases' => array(
     595                0 => '4.26.0',
     596            ),
    595597            'dev_requirement' => false,
    596598        ),
  • knit-pay/trunk/vendor/composer/jetpack_autoload_classmap.php

    r3463536 r3468325  
    36363636    ),
    36373637    'Pronamic\\WordPress\\Pay\\AbstractDataStoreCPT' => array(
    3638         'version' => '4.26.0.0',
     3638        'version' => '4.26.0.1',
    36393639        'path'    => $baseDir . '/packages/wp-pay/core/src/AbstractDataStoreCPT.php'
    36403640    ),
    36413641    'Pronamic\\WordPress\\Pay\\AbstractGatewayIntegration' => array(
    3642         'version' => '4.26.0.0',
     3642        'version' => '4.26.0.1',
    36433643        'path'    => $baseDir . '/packages/wp-pay/core/src/AbstractGatewayIntegration.php'
    36443644    ),
    36453645    'Pronamic\\WordPress\\Pay\\AbstractIntegration' => array(
    3646         'version' => '4.26.0.0',
     3646        'version' => '4.26.0.1',
    36473647        'path'    => $baseDir . '/packages/wp-pay/core/src/AbstractIntegration.php'
    36483648    ),
    36493649    'Pronamic\\WordPress\\Pay\\AbstractPluginIntegration' => array(
    3650         'version' => '4.26.0.0',
     3650        'version' => '4.26.0.1',
    36513651        'path'    => $baseDir . '/packages/wp-pay/core/src/AbstractPluginIntegration.php'
    36523652    ),
    36533653    'Pronamic\\WordPress\\Pay\\ActionSchedulerController' => array(
    3654         'version' => '4.26.0.0',
     3654        'version' => '4.26.0.1',
    36553655        'path'    => $baseDir . '/packages/wp-pay/core/src/ActionSchedulerController.php'
    36563656    ),
    36573657    'Pronamic\\WordPress\\Pay\\Address' => array(
    3658         'version' => '4.26.0.0',
     3658        'version' => '4.26.0.1',
    36593659        'path'    => $baseDir . '/packages/wp-pay/core/src/Address.php'
    36603660    ),
    36613661    'Pronamic\\WordPress\\Pay\\AddressHelper' => array(
    3662         'version' => '4.26.0.0',
     3662        'version' => '4.26.0.1',
    36633663        'path'    => $baseDir . '/packages/wp-pay/core/src/AddressHelper.php'
    36643664    ),
    36653665    'Pronamic\\WordPress\\Pay\\Admin\\AdminAboutPage' => array(
    3666         'version' => '4.26.0.0',
     3666        'version' => '4.26.0.1',
    36673667        'path'    => $baseDir . '/packages/wp-pay/core/src/Admin/AdminAboutPage.php'
    36683668    ),
    36693669    'Pronamic\\WordPress\\Pay\\Admin\\AdminDashboard' => array(
    3670         'version' => '4.26.0.0',
     3670        'version' => '4.26.0.1',
    36713671        'path'    => $baseDir . '/packages/wp-pay/core/src/Admin/AdminDashboard.php'
    36723672    ),
    36733673    'Pronamic\\WordPress\\Pay\\Admin\\AdminGatewayPostType' => array(
    3674         'version' => '4.26.0.0',
     3674        'version' => '4.26.0.1',
    36753675        'path'    => $baseDir . '/packages/wp-pay/core/src/Admin/AdminGatewayPostType.php'
    36763676    ),
    36773677    'Pronamic\\WordPress\\Pay\\Admin\\AdminHealth' => array(
    3678         'version' => '4.26.0.0',
     3678        'version' => '4.26.0.1',
    36793679        'path'    => $baseDir . '/packages/wp-pay/core/src/Admin/AdminHealth.php'
    36803680    ),
    36813681    'Pronamic\\WordPress\\Pay\\Admin\\AdminModule' => array(
    3682         'version' => '4.26.0.0',
     3682        'version' => '4.26.0.1',
    36833683        'path'    => $baseDir . '/packages/wp-pay/core/src/Admin/AdminModule.php'
    36843684    ),
    36853685    'Pronamic\\WordPress\\Pay\\Admin\\AdminNotification' => array(
    3686         'version' => '4.26.0.0',
     3686        'version' => '4.26.0.1',
    36873687        'path'    => $baseDir . '/packages/wp-pay/core/src/Admin/AdminNotification.php'
    36883688    ),
    36893689    'Pronamic\\WordPress\\Pay\\Admin\\AdminPaymentBulkActions' => array(
    3690         'version' => '4.26.0.0',
     3690        'version' => '4.26.0.1',
    36913691        'path'    => $baseDir . '/packages/wp-pay/core/src/Admin/AdminPaymentBulkActions.php'
    36923692    ),
    36933693    'Pronamic\\WordPress\\Pay\\Admin\\AdminPaymentPostType' => array(
    3694         'version' => '4.26.0.0',
     3694        'version' => '4.26.0.1',
    36953695        'path'    => $baseDir . '/packages/wp-pay/core/src/Admin/AdminPaymentPostType.php'
    36963696    ),
    36973697    'Pronamic\\WordPress\\Pay\\Admin\\AdminSettings' => array(
    3698         'version' => '4.26.0.0',
     3698        'version' => '4.26.0.1',
    36993699        'path'    => $baseDir . '/packages/wp-pay/core/src/Admin/AdminSettings.php'
    37003700    ),
    37013701    'Pronamic\\WordPress\\Pay\\Admin\\AdminSubscriptionPostType' => array(
    3702         'version' => '4.26.0.0',
     3702        'version' => '4.26.0.1',
    37033703        'path'    => $baseDir . '/packages/wp-pay/core/src/Admin/AdminSubscriptionPostType.php'
    37043704    ),
    37053705    'Pronamic\\WordPress\\Pay\\Admin\\AdminTour' => array(
    3706         'version' => '4.26.0.0',
     3706        'version' => '4.26.0.1',
    37073707        'path'    => $baseDir . '/packages/wp-pay/core/src/Admin/AdminTour.php'
    37083708    ),
    37093709    'Pronamic\\WordPress\\Pay\\Admin\\Install' => array(
    3710         'version' => '4.26.0.0',
     3710        'version' => '4.26.0.1',
    37113711        'path'    => $baseDir . '/packages/wp-pay/core/src/Admin/Install.php'
    37123712    ),
    37133713    'Pronamic\\WordPress\\Pay\\Banks\\BankAccountDetails' => array(
    3714         'version' => '4.26.0.0',
     3714        'version' => '4.26.0.1',
    37153715        'path'    => $baseDir . '/packages/wp-pay/core/src/Banks/BankAccountDetails.php'
    37163716    ),
    37173717    'Pronamic\\WordPress\\Pay\\Banks\\BankTransferDetails' => array(
    3718         'version' => '4.26.0.0',
     3718        'version' => '4.26.0.1',
    37193719        'path'    => $baseDir . '/packages/wp-pay/core/src/Banks/BankTransferDetails.php'
    37203720    ),
    37213721    'Pronamic\\WordPress\\Pay\\Blocks\\BlocksModule' => array(
    3722         'version' => '4.26.0.0',
     3722        'version' => '4.26.0.1',
    37233723        'path'    => $baseDir . '/packages/wp-pay/core/src/Blocks/BlocksModule.php'
    37243724    ),
    37253725    'Pronamic\\WordPress\\Pay\\Cards' => array(
    3726         'version' => '4.26.0.0',
     3726        'version' => '4.26.0.1',
    37273727        'path'    => $baseDir . '/packages/wp-pay/core/src/Cards.php'
    37283728    ),
    37293729    'Pronamic\\WordPress\\Pay\\ContactName' => array(
    3730         'version' => '4.26.0.0',
     3730        'version' => '4.26.0.1',
    37313731        'path'    => $baseDir . '/packages/wp-pay/core/src/ContactName.php'
    37323732    ),
    37333733    'Pronamic\\WordPress\\Pay\\ContactNameHelper' => array(
    3734         'version' => '4.26.0.0',
     3734        'version' => '4.26.0.1',
    37353735        'path'    => $baseDir . '/packages/wp-pay/core/src/ContactNameHelper.php'
    37363736    ),
    37373737    'Pronamic\\WordPress\\Pay\\Core\\Gateway' => array(
    3738         'version' => '4.26.0.0',
     3738        'version' => '4.26.0.1',
    37393739        'path'    => $baseDir . '/packages/wp-pay/core/src/Core/Gateway.php'
    37403740    ),
    37413741    'Pronamic\\WordPress\\Pay\\Core\\GatewayConfig' => array(
    3742         'version' => '4.26.0.0',
     3742        'version' => '4.26.0.1',
    37433743        'path'    => $baseDir . '/packages/wp-pay/core/src/Core/GatewayConfig.php'
    37443744    ),
    37453745    'Pronamic\\WordPress\\Pay\\Core\\IdTrait' => array(
    3746         'version' => '4.26.0.0',
     3746        'version' => '4.26.0.1',
    37473747        'path'    => $baseDir . '/packages/wp-pay/core/src/Core/IdTrait.php'
    37483748    ),
    37493749    'Pronamic\\WordPress\\Pay\\Core\\ModeTrait' => array(
    3750         'version' => '4.26.0.0',
     3750        'version' => '4.26.0.1',
    37513751        'path'    => $baseDir . '/packages/wp-pay/core/src/Core/ModeTrait.php'
    37523752    ),
    37533753    'Pronamic\\WordPress\\Pay\\Core\\PaymentMethod' => array(
    3754         'version' => '4.26.0.0',
     3754        'version' => '4.26.0.1',
    37553755        'path'    => $baseDir . '/packages/wp-pay/core/src/Core/PaymentMethod.php'
    37563756    ),
    37573757    'Pronamic\\WordPress\\Pay\\Core\\PaymentMethods' => array(
    3758         'version' => '4.26.0.0',
     3758        'version' => '4.26.0.1',
    37593759        'path'    => $baseDir . '/packages/wp-pay/core/src/Core/PaymentMethods.php'
    37603760    ),
    37613761    'Pronamic\\WordPress\\Pay\\Core\\PaymentMethodsCollection' => array(
    3762         'version' => '4.26.0.0',
     3762        'version' => '4.26.0.1',
    37633763        'path'    => $baseDir . '/packages/wp-pay/core/src/Core/PaymentMethodsCollection.php'
    37643764    ),
    37653765    'Pronamic\\WordPress\\Pay\\Core\\SupportsTrait' => array(
    3766         'version' => '4.26.0.0',
     3766        'version' => '4.26.0.1',
    37673767        'path'    => $baseDir . '/packages/wp-pay/core/src/Core/SupportsTrait.php'
    37683768    ),
    37693769    'Pronamic\\WordPress\\Pay\\Core\\TimestampsTrait' => array(
    3770         'version' => '4.26.0.0',
     3770        'version' => '4.26.0.1',
    37713771        'path'    => $baseDir . '/packages/wp-pay/core/src/Core/TimestampsTrait.php'
    37723772    ),
    37733773    'Pronamic\\WordPress\\Pay\\Core\\Util' => array(
    3774         'version' => '4.26.0.0',
     3774        'version' => '4.26.0.1',
    37753775        'path'    => $baseDir . '/packages/wp-pay/core/src/Core/Util.php'
    37763776    ),
    37773777    'Pronamic\\WordPress\\Pay\\Core\\VersionTrait' => array(
    3778         'version' => '4.26.0.0',
     3778        'version' => '4.26.0.1',
    37793779        'path'    => $baseDir . '/packages/wp-pay/core/src/Core/VersionTrait.php'
    37803780    ),
    37813781    'Pronamic\\WordPress\\Pay\\Core\\XML\\Util' => array(
    3782         'version' => '4.26.0.0',
     3782        'version' => '4.26.0.1',
    37833783        'path'    => $baseDir . '/packages/wp-pay/core/src/Core/XML/Util.php'
    37843784    ),
    37853785    'Pronamic\\WordPress\\Pay\\Country' => array(
    3786         'version' => '4.26.0.0',
     3786        'version' => '4.26.0.1',
    37873787        'path'    => $baseDir . '/packages/wp-pay/core/src/Country.php'
    37883788    ),
    37893789    'Pronamic\\WordPress\\Pay\\CreditCard' => array(
    3790         'version' => '4.26.0.0',
     3790        'version' => '4.26.0.1',
    37913791        'path'    => $baseDir . '/packages/wp-pay/core/src/CreditCard.php'
    37923792    ),
    37933793    'Pronamic\\WordPress\\Pay\\Customer' => array(
    3794         'version' => '4.26.0.0',
     3794        'version' => '4.26.0.1',
    37953795        'path'    => $baseDir . '/packages/wp-pay/core/src/Customer.php'
    37963796    ),
    37973797    'Pronamic\\WordPress\\Pay\\CustomerHelper' => array(
    3798         'version' => '4.26.0.0',
     3798        'version' => '4.26.0.1',
    37993799        'path'    => $baseDir . '/packages/wp-pay/core/src/CustomerHelper.php'
    38003800    ),
    38013801    'Pronamic\\WordPress\\Pay\\Dependencies\\Dependencies' => array(
    3802         'version' => '4.26.0.0',
     3802        'version' => '4.26.0.1',
    38033803        'path'    => $baseDir . '/packages/wp-pay/core/src/Dependencies/Dependencies.php'
    38043804    ),
    38053805    'Pronamic\\WordPress\\Pay\\Dependencies\\Dependency' => array(
    3806         'version' => '4.26.0.0',
     3806        'version' => '4.26.0.1',
    38073807        'path'    => $baseDir . '/packages/wp-pay/core/src/Dependencies/Dependency.php'
    38083808    ),
    38093809    'Pronamic\\WordPress\\Pay\\Dependencies\\PhpDependency' => array(
    3810         'version' => '4.26.0.0',
     3810        'version' => '4.26.0.1',
    38113811        'path'    => $baseDir . '/packages/wp-pay/core/src/Dependencies/PhpDependency.php'
    38123812    ),
    38133813    'Pronamic\\WordPress\\Pay\\Dependencies\\PhpExtensionDependency' => array(
    3814         'version' => '4.26.0.0',
     3814        'version' => '4.26.0.1',
    38153815        'path'    => $baseDir . '/packages/wp-pay/core/src/Dependencies/PhpExtensionDependency.php'
    38163816    ),
    38173817    'Pronamic\\WordPress\\Pay\\Dependencies\\WordPressDependency' => array(
    3818         'version' => '4.26.0.0',
     3818        'version' => '4.26.0.1',
    38193819        'path'    => $baseDir . '/packages/wp-pay/core/src/Dependencies/WordPressDependency.php'
    38203820    ),
     
    43084308    ),
    43094309    'Pronamic\\WordPress\\Pay\\Fields\\CachedCallbackOptions' => array(
    4310         'version' => '4.26.0.0',
     4310        'version' => '4.26.0.1',
    43114311        'path'    => $baseDir . '/packages/wp-pay/core/src/Fields/CachedCallbackOptions.php'
    43124312    ),
    43134313    'Pronamic\\WordPress\\Pay\\Fields\\DateField' => array(
    4314         'version' => '4.26.0.0',
     4314        'version' => '4.26.0.1',
    43154315        'path'    => $baseDir . '/packages/wp-pay/core/src/Fields/DateField.php'
    43164316    ),
    43174317    'Pronamic\\WordPress\\Pay\\Fields\\Field' => array(
    4318         'version' => '4.26.0.0',
     4318        'version' => '4.26.0.1',
    43194319        'path'    => $baseDir . '/packages/wp-pay/core/src/Fields/Field.php'
    43204320    ),
    43214321    'Pronamic\\WordPress\\Pay\\Fields\\IDealIssuerSelectField' => array(
    4322         'version' => '4.26.0.0',
     4322        'version' => '4.26.0.1',
    43234323        'path'    => $baseDir . '/packages/wp-pay/core/src/Fields/IDealIssuerSelectField.php'
    43244324    ),
    43254325    'Pronamic\\WordPress\\Pay\\Fields\\SelectField' => array(
    4326         'version' => '4.26.0.0',
     4326        'version' => '4.26.0.1',
    43274327        'path'    => $baseDir . '/packages/wp-pay/core/src/Fields/SelectField.php'
    43284328    ),
    43294329    'Pronamic\\WordPress\\Pay\\Fields\\SelectFieldOption' => array(
    4330         'version' => '4.26.0.0',
     4330        'version' => '4.26.0.1',
    43314331        'path'    => $baseDir . '/packages/wp-pay/core/src/Fields/SelectFieldOption.php'
    43324332    ),
    43334333    'Pronamic\\WordPress\\Pay\\Fields\\SelectFieldOptionGroup' => array(
    4334         'version' => '4.26.0.0',
     4334        'version' => '4.26.0.1',
    43354335        'path'    => $baseDir . '/packages/wp-pay/core/src/Fields/SelectFieldOptionGroup.php'
    43364336    ),
    43374337    'Pronamic\\WordPress\\Pay\\Fields\\TextField' => array(
    4338         'version' => '4.26.0.0',
     4338        'version' => '4.26.0.1',
    43394339        'path'    => $baseDir . '/packages/wp-pay/core/src/Fields/TextField.php'
    43404340    ),
    43414341    'Pronamic\\WordPress\\Pay\\GatewayIntegrations' => array(
    4342         'version' => '4.26.0.0',
     4342        'version' => '4.26.0.1',
    43434343        'path'    => $baseDir . '/packages/wp-pay/core/src/GatewayIntegrations.php'
    43444344    ),
    43454345    'Pronamic\\WordPress\\Pay\\GatewayPostType' => array(
    4346         'version' => '4.26.0.0',
     4346        'version' => '4.26.0.1',
    43474347        'path'    => $baseDir . '/packages/wp-pay/core/src/GatewayPostType.php'
    43484348    ),
    43494349    'Pronamic\\WordPress\\Pay\\Gateways\\GatewaysDataStoreCPT' => array(
    4350         'version' => '4.26.0.0',
     4350        'version' => '4.26.0.1',
    43514351        'path'    => $baseDir . '/packages/wp-pay/core/src/Gateways/GatewaysDataStoreCPT.php'
    43524352    ),
    43534353    'Pronamic\\WordPress\\Pay\\Gender' => array(
    4354         'version' => '4.26.0.0',
     4354        'version' => '4.26.0.1',
    43554355        'path'    => $baseDir . '/packages/wp-pay/core/src/Gender.php'
    43564356    ),
    43574357    'Pronamic\\WordPress\\Pay\\HomeUrlController' => array(
    4358         'version' => '4.26.0.0',
     4358        'version' => '4.26.0.1',
    43594359        'path'    => $baseDir . '/packages/wp-pay/core/src/HomeUrlController.php'
    43604360    ),
    43614361    'Pronamic\\WordPress\\Pay\\HouseNumber' => array(
    4362         'version' => '4.26.0.0',
     4362        'version' => '4.26.0.1',
    43634363        'path'    => $baseDir . '/packages/wp-pay/core/src/HouseNumber.php'
    43644364    ),
    43654365    'Pronamic\\WordPress\\Pay\\LicenseManager' => array(
    4366         'version' => '4.26.0.0',
     4366        'version' => '4.26.0.1',
    43674367        'path'    => $baseDir . '/packages/wp-pay/core/src/LicenseManager.php'
    43684368    ),
    43694369    'Pronamic\\WordPress\\Pay\\MergeTags\\MergeTag' => array(
    4370         'version' => '4.26.0.0',
     4370        'version' => '4.26.0.1',
    43714371        'path'    => $baseDir . '/packages/wp-pay/core/src/MergeTags/MergeTag.php'
    43724372    ),
    43734373    'Pronamic\\WordPress\\Pay\\MergeTags\\MergeTagsController' => array(
    4374         'version' => '4.26.0.0',
     4374        'version' => '4.26.0.1',
    43754375        'path'    => $baseDir . '/packages/wp-pay/core/src/MergeTags/MergeTagsController.php'
    43764376    ),
    43774377    'Pronamic\\WordPress\\Pay\\MoneyJsonTransformer' => array(
    4378         'version' => '4.26.0.0',
     4378        'version' => '4.26.0.1',
    43794379        'path'    => $baseDir . '/packages/wp-pay/core/src/MoneyJsonTransformer.php'
    43804380    ),
    43814381    'Pronamic\\WordPress\\Pay\\PagesController' => array(
    4382         'version' => '4.26.0.0',
     4382        'version' => '4.26.0.1',
    43834383        'path'    => $baseDir . '/packages/wp-pay/core/src/PagesController.php'
    43844384    ),
    43854385    'Pronamic\\WordPress\\Pay\\Payments\\FailureReason' => array(
    4386         'version' => '4.26.0.0',
     4386        'version' => '4.26.0.1',
    43874387        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/FailureReason.php'
    43884388    ),
    43894389    'Pronamic\\WordPress\\Pay\\Payments\\LegacyPaymentsDataStoreCPT' => array(
    4390         'version' => '4.26.0.0',
     4390        'version' => '4.26.0.1',
    43914391        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/LegacyPaymentsDataStoreCPT.php'
    43924392    ),
    43934393    'Pronamic\\WordPress\\Pay\\Payments\\Payment' => array(
    4394         'version' => '4.26.0.0',
     4394        'version' => '4.26.0.1',
    43954395        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/Payment.php'
    43964396    ),
    43974397    'Pronamic\\WordPress\\Pay\\Payments\\PaymentInfo' => array(
    4398         'version' => '4.26.0.0',
     4398        'version' => '4.26.0.1',
    43994399        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/PaymentInfo.php'
    44004400    ),
    44014401    'Pronamic\\WordPress\\Pay\\Payments\\PaymentInfoHelper' => array(
    4402         'version' => '4.26.0.0',
     4402        'version' => '4.26.0.1',
    44034403        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/PaymentInfoHelper.php'
    44044404    ),
    44054405    'Pronamic\\WordPress\\Pay\\Payments\\PaymentInfoTrait' => array(
    4406         'version' => '4.26.0.0',
     4406        'version' => '4.26.0.1',
    44074407        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/PaymentInfoTrait.php'
    44084408    ),
    44094409    'Pronamic\\WordPress\\Pay\\Payments\\PaymentLine' => array(
    4410         'version' => '4.26.0.0',
     4410        'version' => '4.26.0.1',
    44114411        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/PaymentLine.php'
    44124412    ),
    44134413    'Pronamic\\WordPress\\Pay\\Payments\\PaymentLineType' => array(
    4414         'version' => '4.26.0.0',
     4414        'version' => '4.26.0.1',
    44154415        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/PaymentLineType.php'
    44164416    ),
    44174417    'Pronamic\\WordPress\\Pay\\Payments\\PaymentLines' => array(
    4418         'version' => '4.26.0.0',
     4418        'version' => '4.26.0.1',
    44194419        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/PaymentLines.php'
    44204420    ),
    44214421    'Pronamic\\WordPress\\Pay\\Payments\\PaymentMergeTagsController' => array(
    4422         'version' => '4.26.0.0',
     4422        'version' => '4.26.0.1',
    44234423        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/PaymentMergeTagsController.php'
    44244424    ),
    44254425    'Pronamic\\WordPress\\Pay\\Payments\\PaymentPostType' => array(
    4426         'version' => '4.26.0.0',
     4426        'version' => '4.26.0.1',
    44274427        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/PaymentPostType.php'
    44284428    ),
    44294429    'Pronamic\\WordPress\\Pay\\Payments\\PaymentStatus' => array(
    4430         'version' => '4.26.0.0',
     4430        'version' => '4.26.0.1',
    44314431        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/PaymentStatus.php'
    44324432    ),
    44334433    'Pronamic\\WordPress\\Pay\\Payments\\PaymentsDataStoreCPT' => array(
    4434         'version' => '4.26.0.0',
     4434        'version' => '4.26.0.1',
    44354435        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/PaymentsDataStoreCPT.php'
    44364436    ),
    44374437    'Pronamic\\WordPress\\Pay\\Payments\\PaymentsModule' => array(
    4438         'version' => '4.26.0.0',
     4438        'version' => '4.26.0.1',
    44394439        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/PaymentsModule.php'
    44404440    ),
    44414441    'Pronamic\\WordPress\\Pay\\Payments\\PaymentsPrivacy' => array(
    4442         'version' => '4.26.0.0',
     4442        'version' => '4.26.0.1',
    44434443        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/PaymentsPrivacy.php'
    44444444    ),
    44454445    'Pronamic\\WordPress\\Pay\\Payments\\SourceTrait' => array(
    4446         'version' => '4.26.0.0',
     4446        'version' => '4.26.0.1',
    44474447        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/SourceTrait.php'
    44484448    ),
    44494449    'Pronamic\\WordPress\\Pay\\Payments\\StatusChecker' => array(
    4450         'version' => '4.26.0.0',
     4450        'version' => '4.26.0.1',
    44514451        'path'    => $baseDir . '/packages/wp-pay/core/src/Payments/StatusChecker.php'
    44524452    ),
    44534453    'Pronamic\\WordPress\\Pay\\Plugin' => array(
    4454         'version' => '4.26.0.0',
     4454        'version' => '4.26.0.1',
    44554455        'path'    => $baseDir . '/packages/wp-pay/core/src/Plugin.php'
    44564456    ),
    44574457    'Pronamic\\WordPress\\Pay\\PrivacyManager' => array(
    4458         'version' => '4.26.0.0',
     4458        'version' => '4.26.0.1',
    44594459        'path'    => $baseDir . '/packages/wp-pay/core/src/PrivacyManager.php'
    44604460    ),
    44614461    'Pronamic\\WordPress\\Pay\\Privacy\\AnonymizedTrait' => array(
    4462         'version' => '4.26.0.0',
     4462        'version' => '4.26.0.1',
    44634463        'path'    => $baseDir . '/packages/wp-pay/core/src/Privacy/AnonymizedTrait.php'
    44644464    ),
    44654465    'Pronamic\\WordPress\\Pay\\Refunds\\Refund' => array(
    4466         'version' => '4.26.0.0',
     4466        'version' => '4.26.0.1',
    44674467        'path'    => $baseDir . '/packages/wp-pay/core/src/Refunds/Refund.php'
    44684468    ),
    44694469    'Pronamic\\WordPress\\Pay\\Refunds\\RefundLine' => array(
    4470         'version' => '4.26.0.0',
     4470        'version' => '4.26.0.1',
    44714471        'path'    => $baseDir . '/packages/wp-pay/core/src/Refunds/RefundLine.php'
    44724472    ),
    44734473    'Pronamic\\WordPress\\Pay\\Refunds\\RefundLines' => array(
    4474         'version' => '4.26.0.0',
     4474        'version' => '4.26.0.1',
    44754475        'path'    => $baseDir . '/packages/wp-pay/core/src/Refunds/RefundLines.php'
    44764476    ),
    44774477    'Pronamic\\WordPress\\Pay\\Region' => array(
    4478         'version' => '4.26.0.0',
     4478        'version' => '4.26.0.1',
    44794479        'path'    => $baseDir . '/packages/wp-pay/core/src/Region.php'
    44804480    ),
    44814481    'Pronamic\\WordPress\\Pay\\Settings' => array(
    4482         'version' => '4.26.0.0',
     4482        'version' => '4.26.0.1',
    44834483        'path'    => $baseDir . '/packages/wp-pay/core/src/Settings.php'
    44844484    ),
    44854485    'Pronamic\\WordPress\\Pay\\Subscriptions\\AlignmentRule' => array(
    4486         'version' => '4.26.0.0',
     4486        'version' => '4.26.0.1',
    44874487        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/AlignmentRule.php'
    44884488    ),
    44894489    'Pronamic\\WordPress\\Pay\\Subscriptions\\Subscription' => array(
    4490         'version' => '4.26.0.0',
     4490        'version' => '4.26.0.1',
    44914491        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/Subscription.php'
    44924492    ),
    44934493    'Pronamic\\WordPress\\Pay\\Subscriptions\\SubscriptionHelper' => array(
    4494         'version' => '4.26.0.0',
     4494        'version' => '4.26.0.1',
    44954495        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/SubscriptionHelper.php'
    44964496    ),
    44974497    'Pronamic\\WordPress\\Pay\\Subscriptions\\SubscriptionInterval' => array(
    4498         'version' => '4.26.0.0',
     4498        'version' => '4.26.0.1',
    44994499        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/SubscriptionInterval.php'
    45004500    ),
    45014501    'Pronamic\\WordPress\\Pay\\Subscriptions\\SubscriptionPeriod' => array(
    4502         'version' => '4.26.0.0',
     4502        'version' => '4.26.0.1',
    45034503        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/SubscriptionPeriod.php'
    45044504    ),
    45054505    'Pronamic\\WordPress\\Pay\\Subscriptions\\SubscriptionPhase' => array(
    4506         'version' => '4.26.0.0',
     4506        'version' => '4.26.0.1',
    45074507        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/SubscriptionPhase.php'
    45084508    ),
    45094509    'Pronamic\\WordPress\\Pay\\Subscriptions\\SubscriptionPostType' => array(
    4510         'version' => '4.26.0.0',
     4510        'version' => '4.26.0.1',
    45114511        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/SubscriptionPostType.php'
    45124512    ),
    45134513    'Pronamic\\WordPress\\Pay\\Subscriptions\\SubscriptionStatus' => array(
    4514         'version' => '4.26.0.0',
     4514        'version' => '4.26.0.1',
    45154515        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/SubscriptionStatus.php'
    45164516    ),
    45174517    'Pronamic\\WordPress\\Pay\\Subscriptions\\SubscriptionsCompletionController' => array(
    4518         'version' => '4.26.0.0',
     4518        'version' => '4.26.0.1',
    45194519        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/SubscriptionsCompletionController.php'
    45204520    ),
    45214521    'Pronamic\\WordPress\\Pay\\Subscriptions\\SubscriptionsDataStoreCPT' => array(
    4522         'version' => '4.26.0.0',
     4522        'version' => '4.26.0.1',
    45234523        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/SubscriptionsDataStoreCPT.php'
    45244524    ),
    45254525    'Pronamic\\WordPress\\Pay\\Subscriptions\\SubscriptionsFollowUpPaymentsController' => array(
    4526         'version' => '4.26.0.0',
     4526        'version' => '4.26.0.1',
    45274527        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/SubscriptionsFollowUpPaymentsController.php'
    45284528    ),
    45294529    'Pronamic\\WordPress\\Pay\\Subscriptions\\SubscriptionsModule' => array(
    4530         'version' => '4.26.0.0',
     4530        'version' => '4.26.0.1',
    45314531        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/SubscriptionsModule.php'
    45324532    ),
    45334533    'Pronamic\\WordPress\\Pay\\Subscriptions\\SubscriptionsNotificationsController' => array(
    4534         'version' => '4.26.0.0',
     4534        'version' => '4.26.0.1',
    45354535        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/SubscriptionsNotificationsController.php'
    45364536    ),
    45374537    'Pronamic\\WordPress\\Pay\\Subscriptions\\SubscriptionsPrivacy' => array(
    4538         'version' => '4.26.0.0',
     4538        'version' => '4.26.0.1',
    45394539        'path'    => $baseDir . '/packages/wp-pay/core/src/Subscriptions/SubscriptionsPrivacy.php'
    45404540    ),
    45414541    'Pronamic\\WordPress\\Pay\\TrackingModule' => array(
    4542         'version' => '4.26.0.0',
     4542        'version' => '4.26.0.1',
    45434543        'path'    => $baseDir . '/packages/wp-pay/core/src/TrackingModule.php'
    45444544    ),
    45454545    'Pronamic\\WordPress\\Pay\\Upgrades\\Upgrade' => array(
    4546         'version' => '4.26.0.0',
     4546        'version' => '4.26.0.1',
    45474547        'path'    => $baseDir . '/packages/wp-pay/core/src/Upgrades/Upgrade.php'
    45484548    ),
    45494549    'Pronamic\\WordPress\\Pay\\Upgrades\\Upgrades' => array(
    4550         'version' => '4.26.0.0',
     4550        'version' => '4.26.0.1',
    45514551        'path'    => $baseDir . '/packages/wp-pay/core/src/Upgrades/Upgrades.php'
    45524552    ),
    45534553    'Pronamic\\WordPress\\Pay\\Util' => array(
    4554         'version' => '4.26.0.0',
     4554        'version' => '4.26.0.1',
    45554555        'path'    => $baseDir . '/packages/wp-pay/core/src/Util.php'
    45564556    ),
    45574557    'Pronamic\\WordPress\\Pay\\VatNumbers\\VatNumber' => array(
    4558         'version' => '4.26.0.0',
     4558        'version' => '4.26.0.1',
    45594559        'path'    => $baseDir . '/packages/wp-pay/core/src/VatNumbers/VatNumber.php'
    45604560    ),
    45614561    'Pronamic\\WordPress\\Pay\\VatNumbers\\VatNumberValidationService' => array(
    4562         'version' => '4.26.0.0',
     4562        'version' => '4.26.0.1',
    45634563        'path'    => $baseDir . '/packages/wp-pay/core/src/VatNumbers/VatNumberValidationService.php'
    45644564    ),
    45654565    'Pronamic\\WordPress\\Pay\\VatNumbers\\VatNumberValidity' => array(
    4566         'version' => '4.26.0.0',
     4566        'version' => '4.26.0.1',
    45674567        'path'    => $baseDir . '/packages/wp-pay/core/src/VatNumbers/VatNumberValidity.php'
    45684568    ),
    45694569    'Pronamic\\WordPress\\Pay\\VatRates' => array(
    4570         'version' => '4.26.0.0',
     4570        'version' => '4.26.0.1',
    45714571        'path'    => $baseDir . '/packages/wp-pay/core/src/VatRates.php'
    45724572    ),
    45734573    'Pronamic\\WordPress\\Pay\\Webhooks\\WebhookLogger' => array(
    4574         'version' => '4.26.0.0',
     4574        'version' => '4.26.0.1',
    45754575        'path'    => $baseDir . '/packages/wp-pay/core/src/Webhooks/WebhookLogger.php'
    45764576    ),
    45774577    'Pronamic\\WordPress\\Pay\\Webhooks\\WebhookRequestInfo' => array(
    4578         'version' => '4.26.0.0',
     4578        'version' => '4.26.0.1',
    45794579        'path'    => $baseDir . '/packages/wp-pay/core/src/Webhooks/WebhookRequestInfo.php'
    45804580    ),
  • knit-pay/trunk/vendor/composer/jetpack_autoload_filemap.php

    r3461336 r3468325  
    88return array(
    99    '509f66d930a3f0b7d9b65b22aa319565' => array(
    10         'version' => '4.26.0.0',
     10        'version' => '4.26.0.1',
    1111        'path'    => $baseDir . '/packages/wp-pay/core/includes/functions.php'
    1212    ),
Note: See TracChangeset for help on using the changeset viewer.