Plugin Directory

Changeset 3427957


Ignore:
Timestamp:
12/26/2025 07:44:45 PM (8 weeks ago)
Author:
tygalive
Message:

Refactor code structure for improved readability and maintainability

Location:
woo-custom-gateway
Files:
498 added
1 deleted
15 edited

Legend:

Unmodified
Added
Removed
  • woo-custom-gateway/trunk/composer.json

    r3427755 r3427957  
    11{
    22  "name": "richardmuvirimi/woo-custom-gateway",
    3   "version" : "1.6.3",
     3  "version" : "1.6.4",
    44  "description": "Add multiple custom payment gateways to WooCommerce e-commerce plugin.",
    55  "type": "wordpress-plugin",
     
    2121  },
    2222  "config": {
     23    "optimize-autoloader": true,
     24    "preferred-install": "dist",
     25    "sort-packages": true,
    2326    "platform": {
    2427      "php": "7.3"
     
    3336      "@phpcs",
    3437      "@test"
     38    ],
     39    "bump-version": [
     40      "@php bump-version.php"
    3541    ],
    3642    "phpcs": [
     
    8692  "require": {
    8793    "php": ">=7.3",
    88     "symfony/polyfill-php74": "^1.29",
    89     "symfony/polyfill-php80": "^1.29",
    90     "symfony/polyfill-php81": "^1.29",
    91     "symfony/polyfill-php82": "^1.29",
     94    "ext-json": "*",
    9295    "br33f/php-ga4-mp": "^0.1.4",
    93     "yidas/client-ip": "^1.0",
    94     "ext-json": "*"
     96    "symfony/polyfill-php74": "^1.33",
     97    "symfony/polyfill-php80": "^1.33",
     98    "symfony/polyfill-php81": "^1.33",
     99    "symfony/polyfill-php82": "^1.33",
     100    "symfony/polyfill-php83": "^1.33",
     101    "symfony/polyfill-php84": "^1.33",
     102    "symfony/polyfill-php85": "^1.33",
     103    "yidas/client-ip": "^1.0"
    95104  },
    96105  "require-dev": {
  • woo-custom-gateway/trunk/readme.md

    r3427755 r3427957  
    55- **_ Donate link: _** [Buy Me A Coffee](https://buymeacoffee.com/fpjyrXk)
    66- **_ Requires at least: _** 4.0.0
    7 - **_ Tested up to: _** 6.8
     7- **_ Tested up to: _** 6.9
    88- **_ Requires PHP: _** 7.3
    9 - **_ WC tested up to: _** 10.3
     9- **_ WC tested up to: _** 10.4
    1010- **_ Stable tag: _** 1.6.3
    1111- **_ License: _** GPLv2 or later
     
    7777## Changelog
    7878
     79**_ 1.6.4 _**
     80- Add WooCommerce Blocks checkout support
     81- Optimize package dependencies and remove unused imports
     82- Improve TypeScript configuration and type definitions
     83- Replace unreliable current() function with array_key_first()
     84- Add automated version tagging in deployment workflow
     85- Update to latest PHP polyfills (7.4-8.5)
     86
    7987**_ 1.6.3 _**
    8088
  • woo-custom-gateway/trunk/readme.txt

    r3427755 r3427957  
    11=== Custom Payment Gateways for WooCommerce ===
    22Contributors: tygalive
    3 Tags: woocommerce, custom, woocommerce gateway, gateway, payment, gateways, payment gateways, payment gateway, woocommerce payment gateway, woocommerce payment gateways, custom gateway
     3Tags: woocommerce, payment, gateway, custom, payment-gateway
    44Donate link: https://buymeacoffee.com/fpjyrXk
    55Requires at least: 4.0.0
    6 Tested up to: 6.8
     6Tested up to: 6.9
    77Requires PHP: 7.3
    8 WC tested up to: 10.3
    9 Stable tag: 1.6.3
     8WC tested up to: 10.4
     9Stable tag: 1.6.4
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6565
    6666== Changelog ==
     67= 1.6.4 =
     68* Add WooCommerce Blocks checkout support.
     69* Optimize package dependencies and remove unused imports.
     70* Improve TypeScript configuration and type definitions.
     71* Replace unreliable current() function with array_key_first().
     72* Add automated version tagging in deployment workflow.
     73* Update to latest PHP polyfills (7.4-8.5).
     74
    6775= 1.6.3 =
    6876* Rename plugin to comply with WooCommerce trademark guidelines.
  • woo-custom-gateway/trunk/src/Controller/Admin.php

    r3427755 r3427957  
    1717use RichardMuvirimi\WooCustomGateway\Helpers\Template;
    1818use RichardMuvirimi\WooCustomGateway\Model\Gateway;
     19use RichardMuvirimi\WooCustomGateway\Model\GatewayBlockSupport;
     20use Automattic\WooCommerce\Blocks\Payments\PaymentMethodRegistry;
    1921use WP_Post;
    2022
     
    5860
    5961        return $gateways;
     62    }
     63
     64    /**
     65     * Register payment method blocks for WooCommerce Blocks
     66     *
     67     * @param PaymentMethodRegistry $payment_method_registry
     68     * @return void
     69     * @since 1.6.4
     70     * @version 1.6.4
     71     */
     72    public function register_payment_method_blocks(PaymentMethodRegistry $payment_method_registry): void
     73    {
     74        // Check if WooCommerce Blocks is available
     75        if (!class_exists('Automattic\WooCommerce\Blocks\Payments\Integrations\AbstractPaymentMethodType')) {
     76            return;
     77        }
     78
     79        $args = array(
     80            'post_type' => Functions::gateway_slug(),
     81            'fields' => 'ids',
     82            'no_found_rows' => true,
     83            'post_status' => 'publish',
     84            'numberposts' => -1,
     85        );
     86
     87        $posts = get_posts($args);
     88
     89        foreach ($posts as $id) {
     90            $payment_method_registry->register(new GatewayBlockSupport($id));
     91        }
    6092    }
    6193
     
    446478        }
    447479    }
    448 
    449480    /**
    450481     * Add custom post thumbnail column
  • woo-custom-gateway/trunk/src/Helpers/Functions.php

    r2924371 r3427957  
    1515
    1616use RichardMuvirimi\WooCustomGateway\Model\Gateway;
     17use WC_Order;
    1718
    1819/**
     
    126127    }
    127128
     129    /**
     130     * Get payment note field name for a gateway
     131     *
     132     * @param string $gateway_id Gateway ID
     133     *
     134     * @return string
     135     * @since 1.6.4
     136     * @version 1.6.4
     137     *
     138     * @author Richard Muvirimi <[email protected]>
     139     */
     140    public static function get_payment_note_field_name(string $gateway_id): string
     141    {
     142        return self::get_plugin_slug('-note-' . $gateway_id);
     143    }
     144
     145    /**
     146     * Save payment note to order
     147     *
     148     * Sanitizes and adds payment proof/note as a customer-visible order note
     149     *
     150     * @param WC_Order $order Order object
     151     * @param string $note Payment note/proof text
     152     *
     153     * @return void
     154     * @since 1.6.4
     155     * @version 1.6.4
     156     *
     157     * @author Richard Muvirimi <[email protected]>
     158     */
     159    public static function save_payment_note_to_order(WC_Order $order, string $note): void
     160    {
     161        $note = sanitize_textarea_field($note);
     162       
     163        if (!empty($note)) {
     164            $order->add_order_note(esc_html($note), 1, true);
     165        }
     166    }
     167
    128168}
  • woo-custom-gateway/trunk/src/Helpers/Template.php

    r2922480 r3427957  
    197197        return $prefix . base64_encode(file_get_contents($path));
    198198    }
     199
     200    /**
     201     * Get the list of npm dependencies to load
     202     *
     203     * @param string $path
     204     * @return array
     205     * @version 1.6.4
     206     * @see     https://www.npmjs.com/package/@wordpress/dependency-extraction-webpack-plugin#user-content-wordpress
     207     *
     208     * @author  Richard Muvirimi <[email protected]>
     209     * @since   1.6.4
     210     */
     211    public static function get_script_dependencies(string $path): array
     212    {
     213
     214        $contents = wp_cache_get($path, Functions::get_plugin_slug("-files"));
     215
     216        if ($contents === false) {
     217            if (file_exists($path)) {
     218                try {
     219                    $contents = include $path;
     220
     221                    // Ensure it's an array
     222                    if (!is_array($contents)) {
     223                        $contents = [
     224                            'dependencies' => [],
     225                            'version' => filemtime(WOO_CUSTOM_GATEWAY_FILE),
     226                        ];
     227                    }
     228
     229                    wp_cache_set($path, $contents, Functions::get_plugin_slug("-files"), DAY_IN_SECONDS);
     230                } catch (\Exception $exception) {
     231                    $contents = [
     232                        'dependencies' => [],
     233                        'version' => filemtime(WOO_CUSTOM_GATEWAY_FILE),
     234                    ];
     235                }
     236            } else {
     237                // File doesn't exist yet (needs to be built)
     238                $contents = [
     239                    'dependencies' => [],
     240                    'version' => filemtime(WOO_CUSTOM_GATEWAY_FILE),
     241                ];
     242            }
     243        }
     244
     245        return $contents;
     246    }
     247
     248    /**
     249     * Get JSON file contents
     250     *
     251     * @param string $path
     252     * @return array
     253     * @since 1.6.4
     254     * @version 1.6.4
     255     *
     256     * @author Richard Muvirimi <[email protected]>
     257     */
     258    public static function get_json_file(string $path): array
     259    {
     260        $contents = wp_cache_get($path, Functions::get_plugin_slug("-files"));
     261
     262        if ($contents === false) {
     263            if (function_exists("wp_json_file_decode")) {
     264                $contents = wp_json_file_decode($path, ["associative" => true]);
     265            } else {
     266                $contents = json_decode(file_get_contents($path), true);
     267            }
     268
     269            wp_cache_set($path, $contents, Functions::get_plugin_slug("-files"), DAY_IN_SECONDS);
     270        }
     271
     272        return $contents;
     273    }
    199274}
  • woo-custom-gateway/trunk/src/Model/Gateway.php

    r3427755 r3427957  
    2020use WC_Order;
    2121use WC_Payment_Gateway;
    22 use function current as array_first;
    2322
    2423/**
     
    194193        $pending = array_map(array(Functions::class, "prefix_order_status"), wc_get_is_pending_statuses());
    195194
    196         return empty($pending) ? array_first(wc_get_order_statuses()) : array_first($pending);
     195        if (!empty($pending)) {
     196            return $pending[array_key_first($pending)];
     197        }
     198       
     199        $statuses = wc_get_order_statuses();
     200        return $statuses[array_key_first($statuses)];
    197201    }
    198202
     
    248252        wc_reduce_stock_levels($order_id);
    249253
    250         if ($this->has_fields) {
    251             $note = filter_input(INPUT_POST, Functions::get_plugin_slug('-note-' . $this->id));
    252 
    253             $note = sanitize_textarea_field($note);
    254             if (strlen($note) != 0) {
    255                 $order->add_order_note(esc_html($note), 1, true);
     254        // Handle payment note for classic checkout only
     255        // Block checkout is handled by GatewayBlockSupport::process_payment_with_context
     256        if ($this->has_fields && !defined('REST_REQUEST')) {
     257            $field_name = Functions::get_payment_note_field_name($this->id);
     258            $note = filter_input(INPUT_POST, $field_name);
     259           
     260            if ($note) {
     261                Functions::save_payment_note_to_order($order, $note);
    256262            }
    257263        }
  • woo-custom-gateway/trunk/src/WooCustomGateway.php

    r3427755 r3427957  
    9999        $this->define_site_hooks();
    100100        $this->define_ajax_hooks();
     101        $this->define_blocks_hooks();
    101102    }
    102103
     
    196197        $this->add_action('wp_ajax_' . Functions::get_plugin_slug('-analytics-cancel'), $controller, 'ajaxDoCancelAnalytics');
    197198
     199    }
     200
     201    /**
     202     * Register hooks for WooCommerce Blocks integration
     203     *
     204     * @return void
     205     * @version 1.6.4
     206     * @since 1.6.4
     207     */
     208    public function define_blocks_hooks(): void
     209    {
     210        $controller = new Admin();
     211
     212        $this->add_action('woocommerce_blocks_payment_method_type_registration', $controller, 'register_payment_method_blocks');
    198213    }
    199214
  • woo-custom-gateway/trunk/vendor/autoload.php

    r3427755 r3427957  
    2020require_once __DIR__ . '/composer/autoload_real.php';
    2121
    22 return ComposerAutoloaderInit8be2b4f4fb0bf569fe189bd8c13c2421::getLoader();
     22return ComposerAutoloaderInit1698ce19672fb215643e58e7e9c329eb::getLoader();
  • woo-custom-gateway/trunk/vendor/composer/autoload_classmap.php

    r3427539 r3427957  
    1414    'Random\\RandomError' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php',
    1515    'Random\\RandomException' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php',
     16    'RichardMuvirimi\\WooCustomGateway\\Controller\\Admin' => $baseDir . '/src/Controller/Admin.php',
     17    'RichardMuvirimi\\WooCustomGateway\\Controller\\Ajax' => $baseDir . '/src/Controller/Ajax.php',
     18    'RichardMuvirimi\\WooCustomGateway\\Controller\\BaseController' => $baseDir . '/src/Controller/BaseController.php',
     19    'RichardMuvirimi\\WooCustomGateway\\Controller\\Plugin' => $baseDir . '/src/Controller/Plugin.php',
     20    'RichardMuvirimi\\WooCustomGateway\\Controller\\Site' => $baseDir . '/src/Controller/Site.php',
     21    'RichardMuvirimi\\WooCustomGateway\\Helpers\\Functions' => $baseDir . '/src/Helpers/Functions.php',
     22    'RichardMuvirimi\\WooCustomGateway\\Helpers\\Logger' => $baseDir . '/src/Helpers/Logger.php',
     23    'RichardMuvirimi\\WooCustomGateway\\Helpers\\Template' => $baseDir . '/src/Helpers/Template.php',
     24    'RichardMuvirimi\\WooCustomGateway\\Locale\\I18n' => $baseDir . '/src/Locale/I18n.php',
     25    'RichardMuvirimi\\WooCustomGateway\\Model\\Gateway' => $baseDir . '/src/Model/Gateway.php',
     26    'RichardMuvirimi\\WooCustomGateway\\Model\\GatewayBlockSupport' => $baseDir . '/src/Model/GatewayBlockSupport.php',
     27    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\ConsentProperty' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/ConsentProperty.php',
     28    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\EventCollection' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/EventCollection.php',
     29    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\UserAddress' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/UserAddress.php',
     30    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\UserData' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/UserData.php',
     31    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\UserDataItem' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/UserDataItem.php',
     32    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\UserProperties' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/UserProperties.php',
     33    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\UserProperty' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/UserProperty.php',
     34    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\ValidationMessage' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/ValidationMessage.php',
     35    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\AbstractEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/AbstractEvent.php',
     36    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\AddPaymentInfoEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/AddPaymentInfoEvent.php',
     37    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\AddShippingInfoEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/AddShippingInfoEvent.php',
     38    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\AddToCartEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/AddToCartEvent.php',
     39    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\AddToWishlistEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/AddToWishlistEvent.php',
     40    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\BaseEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/BaseEvent.php',
     41    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\BeginCheckoutEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/BeginCheckoutEvent.php',
     42    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\ItemBaseEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/ItemBaseEvent.php',
     43    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\LoginEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/LoginEvent.php',
     44    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\PurchaseEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/PurchaseEvent.php',
     45    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\RefundEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/RefundEvent.php',
     46    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\RemoveFromCartEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/RemoveFromCartEvent.php',
     47    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\SearchEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/SearchEvent.php',
     48    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\SelectItemEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/SelectItemEvent.php',
     49    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\SignUpEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/SignUpEvent.php',
     50    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\ViewCartEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/ViewCartEvent.php',
     51    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\ViewItemEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/ViewItemEvent.php',
     52    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\ViewItemListEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/ViewItemListEvent.php',
     53    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\ViewSearchResultsEvent' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/ViewSearchResultsEvent.php',
     54    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\ExportableInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/ExportableInterface.php',
     55    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\HydratableInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/HydratableInterface.php',
     56    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Parameter\\AbstractParameter' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Parameter/AbstractParameter.php',
     57    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Parameter\\BaseParameter' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Parameter/BaseParameter.php',
     58    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Parameter\\ItemCollectionParameter' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Parameter/ItemCollectionParameter.php',
     59    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Parameter\\ItemParameter' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Parameter/ItemParameter.php',
     60    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\RequestValidateInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/RequestValidateInterface.php',
     61    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Request\\AbstractRequest' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Request/AbstractRequest.php',
     62    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Request\\BaseRequest' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Request/BaseRequest.php',
     63    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Response\\AbstractResponse' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Response/AbstractResponse.php',
     64    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Response\\BaseResponse' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Response/BaseResponse.php',
     65    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Response\\DebugResponse' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Response/DebugResponse.php',
     66    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Response\\StreamResponse' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Response/StreamResponse.php',
     67    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\ValidateInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/ValidateInterface.php',
     68    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Enum\\ConsentCode' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Enum/ConsentCode.php',
     69    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Enum\\ErrorCode' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Enum/ErrorCode.php',
     70    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Enum\\ValidationCode' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Enum/ValidationCode.php',
     71    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Exception\\AnalyticsException' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Exception/AnalyticsException.php',
     72    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Exception\\HydrationException' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Exception/HydrationException.php',
     73    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Exception\\MisconfigurationException' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Exception/MisconfigurationException.php',
     74    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Exception\\ValidationException' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Exception/ValidationException.php',
     75    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\HttpClient' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/HttpClient.php',
     76    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Service' => $vendorDir . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Service.php',
     77    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\BodySummarizer' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/BodySummarizer.php',
     78    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\BodySummarizerInterface' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/BodySummarizerInterface.php',
     79    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Client' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Client.php',
     80    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\ClientInterface' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/ClientInterface.php',
     81    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\ClientTrait' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/ClientTrait.php',
     82    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Cookie/CookieJar.php',
     83    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Cookie\\CookieJarInterface' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Cookie/CookieJarInterface.php',
     84    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Cookie\\FileCookieJar' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Cookie/FileCookieJar.php',
     85    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Cookie\\SessionCookieJar' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Cookie/SessionCookieJar.php',
     86    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Cookie\\SetCookie' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Cookie/SetCookie.php',
     87    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\BadResponseException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/BadResponseException.php',
     88    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\ClientException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/ClientException.php',
     89    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\ConnectException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/ConnectException.php',
     90    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\GuzzleException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/GuzzleException.php',
     91    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\InvalidArgumentException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/InvalidArgumentException.php',
     92    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\RequestException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/RequestException.php',
     93    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\ServerException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/ServerException.php',
     94    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\TooManyRedirectsException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/TooManyRedirectsException.php',
     95    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\TransferException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/TransferException.php',
     96    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\HandlerStack' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/HandlerStack.php',
     97    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\CurlFactory' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/CurlFactory.php',
     98    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\CurlFactoryInterface' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/CurlFactoryInterface.php',
     99    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\CurlHandler' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/CurlHandler.php',
     100    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\CurlMultiHandler' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/CurlMultiHandler.php',
     101    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\EasyHandle' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/EasyHandle.php',
     102    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\HeaderProcessor' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/HeaderProcessor.php',
     103    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\MockHandler' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/MockHandler.php',
     104    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\Proxy' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/Proxy.php',
     105    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\StreamHandler' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/StreamHandler.php',
     106    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\MessageFormatter' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/MessageFormatter.php',
     107    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\MessageFormatterInterface' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/MessageFormatterInterface.php',
     108    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Middleware' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Middleware.php',
     109    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Pool' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Pool.php',
     110    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\PrepareBodyMiddleware' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/PrepareBodyMiddleware.php',
     111    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/AggregateException.php',
     112    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/CancellationException.php',
     113    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/Coroutine.php',
     114    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\Create' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/Create.php',
     115    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\Each' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/Each.php',
     116    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/EachPromise.php',
     117    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/FulfilledPromise.php',
     118    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\Is' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/Is.php',
     119    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\Promise' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/Promise.php',
     120    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/PromiseInterface.php',
     121    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/PromisorInterface.php',
     122    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\RejectedPromise' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/RejectedPromise.php',
     123    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/RejectionException.php',
     124    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/TaskQueue.php',
     125    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/TaskQueueInterface.php',
     126    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\Utils' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/Utils.php',
     127    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/AppendStream.php',
     128    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/BufferStream.php',
     129    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/CachingStream.php',
     130    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/DroppingStream.php',
     131    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Exception\\MalformedUriException' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Exception/MalformedUriException.php',
     132    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/FnStream.php',
     133    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Header' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Header.php',
     134    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\HttpFactory' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/HttpFactory.php',
     135    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/InflateStream.php',
     136    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/LazyOpenStream.php',
     137    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/LimitStream.php',
     138    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Message' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Message.php',
     139    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/MessageTrait.php',
     140    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\MimeType' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/MimeType.php',
     141    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/MultipartStream.php',
     142    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/NoSeekStream.php',
     143    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/PumpStream.php',
     144    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Query' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Query.php',
     145    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Request' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Request.php',
     146    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Response' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Response.php',
     147    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Rfc7230' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Rfc7230.php',
     148    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\ServerRequest' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/ServerRequest.php',
     149    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Stream' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Stream.php',
     150    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\StreamDecoratorTrait' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/StreamDecoratorTrait.php',
     151    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/StreamWrapper.php',
     152    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/UploadedFile.php',
     153    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Uri.php',
     154    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\UriComparator' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/UriComparator.php',
     155    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/UriNormalizer.php',
     156    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/UriResolver.php',
     157    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Utils' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Utils.php',
     158    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/RedirectMiddleware.php',
     159    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\RequestOptions' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/RequestOptions.php',
     160    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\RetryMiddleware' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/RetryMiddleware.php',
     161    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\TransferStats' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/TransferStats.php',
     162    'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Utils' => $vendorDir . '/woo-custom-gateway/psr-4/GuzzleHttp/Utils.php',
     163    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Client\\ClientExceptionInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Client/ClientExceptionInterface.php',
     164    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Client\\ClientInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Client/ClientInterface.php',
     165    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Client\\NetworkExceptionInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Client/NetworkExceptionInterface.php',
     166    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Client\\RequestExceptionInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Client/RequestExceptionInterface.php',
     167    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/MessageInterface.php',
     168    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\RequestFactoryInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/RequestFactoryInterface.php',
     169    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/RequestInterface.php',
     170    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\ResponseFactoryInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/ResponseFactoryInterface.php',
     171    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/ResponseInterface.php',
     172    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\ServerRequestFactoryInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/ServerRequestFactoryInterface.php',
     173    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/ServerRequestInterface.php',
     174    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\StreamFactoryInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/StreamFactoryInterface.php',
     175    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/StreamInterface.php',
     176    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\UploadedFileFactoryInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/UploadedFileFactoryInterface.php',
     177    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/UploadedFileInterface.php',
     178    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\UriFactoryInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/UriFactoryInterface.php',
     179    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\UriInterface' => $vendorDir . '/woo-custom-gateway/psr-4/Psr/Http/Message/UriInterface.php',
     180    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php74\\Php74' => $vendorDir . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php74/Php74.php',
     181    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php80\\Php80' => $vendorDir . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php80/Php80.php',
     182    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php80\\PhpToken' => $vendorDir . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php80/PhpToken.php',
     183    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php81\\Php81' => $vendorDir . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php81/Php81.php',
     184    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php82\\NoDynamicProperties' => $vendorDir . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php82/NoDynamicProperties.php',
     185    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php82\\Php82' => $vendorDir . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php82/Php82.php',
     186    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php82\\Random\\Engine\\Secure' => $vendorDir . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php82/Random/Engine/Secure.php',
     187    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php82\\SensitiveParameterValue' => $vendorDir . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php82/SensitiveParameterValue.php',
     188    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php83\\Php83' => $vendorDir . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php83/Php83.php',
     189    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php84\\Php84' => $vendorDir . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php84/Php84.php',
     190    'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php85\\Php85' => $vendorDir . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php85/Php85.php',
     191    'RichardMuvirimi\\WooCustomGateway\\WooCustomGateway' => $baseDir . '/src/WooCustomGateway.php',
    16192    'WooCustomGateway_AllowDynamicProperties' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php82/Resources/stubs/AllowDynamicProperties.php',
    17193    'WooCustomGateway_Attribute' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php80/Resources/stubs/Attribute.php',
    18194    'WooCustomGateway_CURLStringFile' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php',
    19195    'WooCustomGateway_ClientIP' => $vendorDir . '/woo-custom-gateway/classes/yidas/client-ip/src/ClientIP.php',
     196    'WooCustomGateway_DateError' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateError.php',
     197    'WooCustomGateway_DateException' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateException.php',
     198    'WooCustomGateway_DateInvalidOperationException' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php',
     199    'WooCustomGateway_DateInvalidTimeZoneException' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php',
     200    'WooCustomGateway_DateMalformedIntervalStringException' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php',
     201    'WooCustomGateway_DateMalformedPeriodStringException' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php',
     202    'WooCustomGateway_DateMalformedStringException' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php',
     203    'WooCustomGateway_DateObjectError' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateObjectError.php',
     204    'WooCustomGateway_DateRangeError' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateRangeError.php',
     205    'WooCustomGateway_Deprecated' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php84/Resources/stubs/Deprecated.php',
     206    'WooCustomGateway_NoDiscard' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php85/Resources/stubs/NoDiscard.php',
     207    'WooCustomGateway_Override' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/Override.php',
    20208    'WooCustomGateway_PhpToken' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
     209    'WooCustomGateway_ReflectionConstant' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php84/Resources/stubs/ReflectionConstant.php',
    21210    'WooCustomGateway_ReturnTypeWillChange' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php',
     211    'WooCustomGateway_SQLite3Exception' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/SQLite3Exception.php',
    22212    'WooCustomGateway_SensitiveParameter' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php',
    23213    'WooCustomGateway_SensitiveParameterValue' => $vendorDir . '/woo-custom-gateway/classes/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php',
  • woo-custom-gateway/trunk/vendor/composer/autoload_real.php

    r3427755 r3427957  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit8be2b4f4fb0bf569fe189bd8c13c2421
     5class ComposerAutoloaderInit1698ce19672fb215643e58e7e9c329eb
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit8be2b4f4fb0bf569fe189bd8c13c2421', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit1698ce19672fb215643e58e7e9c329eb', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit8be2b4f4fb0bf569fe189bd8c13c2421', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit1698ce19672fb215643e58e7e9c329eb', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit8be2b4f4fb0bf569fe189bd8c13c2421::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit1698ce19672fb215643e58e7e9c329eb::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • woo-custom-gateway/trunk/vendor/composer/autoload_static.php

    r3427755 r3427957  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit8be2b4f4fb0bf569fe189bd8c13c2421
     7class ComposerStaticInit1698ce19672fb215643e58e7e9c329eb
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    3434        'Random\\RandomError' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php',
    3535        'Random\\RandomException' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php',
     36        'RichardMuvirimi\\WooCustomGateway\\Controller\\Admin' => __DIR__ . '/../..' . '/src/Controller/Admin.php',
     37        'RichardMuvirimi\\WooCustomGateway\\Controller\\Ajax' => __DIR__ . '/../..' . '/src/Controller/Ajax.php',
     38        'RichardMuvirimi\\WooCustomGateway\\Controller\\BaseController' => __DIR__ . '/../..' . '/src/Controller/BaseController.php',
     39        'RichardMuvirimi\\WooCustomGateway\\Controller\\Plugin' => __DIR__ . '/../..' . '/src/Controller/Plugin.php',
     40        'RichardMuvirimi\\WooCustomGateway\\Controller\\Site' => __DIR__ . '/../..' . '/src/Controller/Site.php',
     41        'RichardMuvirimi\\WooCustomGateway\\Helpers\\Functions' => __DIR__ . '/../..' . '/src/Helpers/Functions.php',
     42        'RichardMuvirimi\\WooCustomGateway\\Helpers\\Logger' => __DIR__ . '/../..' . '/src/Helpers/Logger.php',
     43        'RichardMuvirimi\\WooCustomGateway\\Helpers\\Template' => __DIR__ . '/../..' . '/src/Helpers/Template.php',
     44        'RichardMuvirimi\\WooCustomGateway\\Locale\\I18n' => __DIR__ . '/../..' . '/src/Locale/I18n.php',
     45        'RichardMuvirimi\\WooCustomGateway\\Model\\Gateway' => __DIR__ . '/../..' . '/src/Model/Gateway.php',
     46        'RichardMuvirimi\\WooCustomGateway\\Model\\GatewayBlockSupport' => __DIR__ . '/../..' . '/src/Model/GatewayBlockSupport.php',
     47        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\ConsentProperty' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/ConsentProperty.php',
     48        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\EventCollection' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/EventCollection.php',
     49        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\UserAddress' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/UserAddress.php',
     50        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\UserData' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/UserData.php',
     51        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\UserDataItem' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/UserDataItem.php',
     52        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\UserProperties' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/UserProperties.php',
     53        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\UserProperty' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/UserProperty.php',
     54        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Common\\ValidationMessage' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Common/ValidationMessage.php',
     55        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\AbstractEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/AbstractEvent.php',
     56        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\AddPaymentInfoEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/AddPaymentInfoEvent.php',
     57        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\AddShippingInfoEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/AddShippingInfoEvent.php',
     58        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\AddToCartEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/AddToCartEvent.php',
     59        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\AddToWishlistEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/AddToWishlistEvent.php',
     60        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\BaseEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/BaseEvent.php',
     61        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\BeginCheckoutEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/BeginCheckoutEvent.php',
     62        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\ItemBaseEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/ItemBaseEvent.php',
     63        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\LoginEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/LoginEvent.php',
     64        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\PurchaseEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/PurchaseEvent.php',
     65        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\RefundEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/RefundEvent.php',
     66        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\RemoveFromCartEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/RemoveFromCartEvent.php',
     67        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\SearchEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/SearchEvent.php',
     68        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\SelectItemEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/SelectItemEvent.php',
     69        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\SignUpEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/SignUpEvent.php',
     70        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\ViewCartEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/ViewCartEvent.php',
     71        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\ViewItemEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/ViewItemEvent.php',
     72        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\ViewItemListEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/ViewItemListEvent.php',
     73        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Event\\ViewSearchResultsEvent' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Event/ViewSearchResultsEvent.php',
     74        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\ExportableInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/ExportableInterface.php',
     75        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\HydratableInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/HydratableInterface.php',
     76        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Parameter\\AbstractParameter' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Parameter/AbstractParameter.php',
     77        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Parameter\\BaseParameter' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Parameter/BaseParameter.php',
     78        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Parameter\\ItemCollectionParameter' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Parameter/ItemCollectionParameter.php',
     79        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Parameter\\ItemParameter' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Parameter/ItemParameter.php',
     80        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\RequestValidateInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/RequestValidateInterface.php',
     81        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Request\\AbstractRequest' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Request/AbstractRequest.php',
     82        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Request\\BaseRequest' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Request/BaseRequest.php',
     83        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Response\\AbstractResponse' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Response/AbstractResponse.php',
     84        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Response\\BaseResponse' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Response/BaseResponse.php',
     85        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Response\\DebugResponse' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Response/DebugResponse.php',
     86        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\Response\\StreamResponse' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/Response/StreamResponse.php',
     87        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Dto\\ValidateInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Dto/ValidateInterface.php',
     88        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Enum\\ConsentCode' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Enum/ConsentCode.php',
     89        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Enum\\ErrorCode' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Enum/ErrorCode.php',
     90        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Enum\\ValidationCode' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Enum/ValidationCode.php',
     91        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Exception\\AnalyticsException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Exception/AnalyticsException.php',
     92        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Exception\\HydrationException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Exception/HydrationException.php',
     93        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Exception\\MisconfigurationException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Exception/MisconfigurationException.php',
     94        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Exception\\ValidationException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Exception/ValidationException.php',
     95        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\HttpClient' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/HttpClient.php',
     96        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Br33f\\Ga4\\MeasurementProtocol\\Service' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Br33f/Ga4/MeasurementProtocol/Service.php',
     97        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\BodySummarizer' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/BodySummarizer.php',
     98        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\BodySummarizerInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/BodySummarizerInterface.php',
     99        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Client' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Client.php',
     100        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\ClientInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/ClientInterface.php',
     101        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\ClientTrait' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/ClientTrait.php',
     102        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Cookie\\CookieJar' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Cookie/CookieJar.php',
     103        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Cookie\\CookieJarInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Cookie/CookieJarInterface.php',
     104        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Cookie\\FileCookieJar' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Cookie/FileCookieJar.php',
     105        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Cookie\\SessionCookieJar' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Cookie/SessionCookieJar.php',
     106        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Cookie\\SetCookie' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Cookie/SetCookie.php',
     107        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\BadResponseException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/BadResponseException.php',
     108        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\ClientException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/ClientException.php',
     109        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\ConnectException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/ConnectException.php',
     110        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\GuzzleException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/GuzzleException.php',
     111        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/InvalidArgumentException.php',
     112        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\RequestException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/RequestException.php',
     113        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\ServerException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/ServerException.php',
     114        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\TooManyRedirectsException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/TooManyRedirectsException.php',
     115        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Exception\\TransferException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Exception/TransferException.php',
     116        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\HandlerStack' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/HandlerStack.php',
     117        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\CurlFactory' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/CurlFactory.php',
     118        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\CurlFactoryInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/CurlFactoryInterface.php',
     119        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\CurlHandler' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/CurlHandler.php',
     120        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\CurlMultiHandler' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/CurlMultiHandler.php',
     121        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\EasyHandle' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/EasyHandle.php',
     122        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\HeaderProcessor' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/HeaderProcessor.php',
     123        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\MockHandler' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/MockHandler.php',
     124        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\Proxy' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/Proxy.php',
     125        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Handler\\StreamHandler' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Handler/StreamHandler.php',
     126        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\MessageFormatter' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/MessageFormatter.php',
     127        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\MessageFormatterInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/MessageFormatterInterface.php',
     128        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Middleware' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Middleware.php',
     129        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Pool' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Pool.php',
     130        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\PrepareBodyMiddleware' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/PrepareBodyMiddleware.php',
     131        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\AggregateException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/AggregateException.php',
     132        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\CancellationException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/CancellationException.php',
     133        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\Coroutine' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/Coroutine.php',
     134        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\Create' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/Create.php',
     135        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\Each' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/Each.php',
     136        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\EachPromise' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/EachPromise.php',
     137        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\FulfilledPromise' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/FulfilledPromise.php',
     138        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\Is' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/Is.php',
     139        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\Promise' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/Promise.php',
     140        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/PromiseInterface.php',
     141        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\PromisorInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/PromisorInterface.php',
     142        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\RejectedPromise' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/RejectedPromise.php',
     143        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\RejectionException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/RejectionException.php',
     144        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\TaskQueue' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/TaskQueue.php',
     145        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\TaskQueueInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/TaskQueueInterface.php',
     146        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Promise\\Utils' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Promise/Utils.php',
     147        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\AppendStream' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/AppendStream.php',
     148        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\BufferStream' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/BufferStream.php',
     149        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\CachingStream' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/CachingStream.php',
     150        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\DroppingStream' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/DroppingStream.php',
     151        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Exception\\MalformedUriException' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Exception/MalformedUriException.php',
     152        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\FnStream' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/FnStream.php',
     153        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Header' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Header.php',
     154        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\HttpFactory' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/HttpFactory.php',
     155        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\InflateStream' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/InflateStream.php',
     156        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\LazyOpenStream' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/LazyOpenStream.php',
     157        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\LimitStream' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/LimitStream.php',
     158        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Message' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Message.php',
     159        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\MessageTrait' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/MessageTrait.php',
     160        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\MimeType' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/MimeType.php',
     161        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\MultipartStream' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/MultipartStream.php',
     162        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\NoSeekStream' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/NoSeekStream.php',
     163        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\PumpStream' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/PumpStream.php',
     164        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Query' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Query.php',
     165        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Request' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Request.php',
     166        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Response' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Response.php',
     167        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Rfc7230' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Rfc7230.php',
     168        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\ServerRequest' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/ServerRequest.php',
     169        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Stream' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Stream.php',
     170        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\StreamDecoratorTrait' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/StreamDecoratorTrait.php',
     171        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\StreamWrapper' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/StreamWrapper.php',
     172        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\UploadedFile' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/UploadedFile.php',
     173        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Uri' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Uri.php',
     174        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\UriComparator' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/UriComparator.php',
     175        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\UriNormalizer' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/UriNormalizer.php',
     176        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\UriResolver' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/UriResolver.php',
     177        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Psr7\\Utils' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Psr7/Utils.php',
     178        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\RedirectMiddleware' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/RedirectMiddleware.php',
     179        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\RequestOptions' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/RequestOptions.php',
     180        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\RetryMiddleware' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/RetryMiddleware.php',
     181        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\TransferStats' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/TransferStats.php',
     182        'RichardMuvirimi\\WooCustomGateway\\Vendor\\GuzzleHttp\\Utils' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/GuzzleHttp/Utils.php',
     183        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Client\\ClientExceptionInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Client/ClientExceptionInterface.php',
     184        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Client\\ClientInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Client/ClientInterface.php',
     185        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Client\\NetworkExceptionInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Client/NetworkExceptionInterface.php',
     186        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Client\\RequestExceptionInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Client/RequestExceptionInterface.php',
     187        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\MessageInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/MessageInterface.php',
     188        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\RequestFactoryInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/RequestFactoryInterface.php',
     189        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\RequestInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/RequestInterface.php',
     190        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\ResponseFactoryInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/ResponseFactoryInterface.php',
     191        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\ResponseInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/ResponseInterface.php',
     192        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\ServerRequestFactoryInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/ServerRequestFactoryInterface.php',
     193        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\ServerRequestInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/ServerRequestInterface.php',
     194        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\StreamFactoryInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/StreamFactoryInterface.php',
     195        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/StreamInterface.php',
     196        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\UploadedFileFactoryInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/UploadedFileFactoryInterface.php',
     197        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/UploadedFileInterface.php',
     198        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\UriFactoryInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/UriFactoryInterface.php',
     199        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Psr/Http/Message/UriInterface.php',
     200        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php74\\Php74' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php74/Php74.php',
     201        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php80\\Php80' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php80/Php80.php',
     202        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php80\\PhpToken' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php80/PhpToken.php',
     203        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php81\\Php81' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php81/Php81.php',
     204        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php82\\NoDynamicProperties' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php82/NoDynamicProperties.php',
     205        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php82\\Php82' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php82/Php82.php',
     206        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php82\\Random\\Engine\\Secure' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php82/Random/Engine/Secure.php',
     207        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php82\\SensitiveParameterValue' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php82/SensitiveParameterValue.php',
     208        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php83\\Php83' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php83/Php83.php',
     209        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php84\\Php84' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php84/Php84.php',
     210        'RichardMuvirimi\\WooCustomGateway\\Vendor\\Symfony\\Polyfill\\Php85\\Php85' => __DIR__ . '/..' . '/woo-custom-gateway/psr-4/Symfony/Polyfill/Php85/Php85.php',
     211        'RichardMuvirimi\\WooCustomGateway\\WooCustomGateway' => __DIR__ . '/../..' . '/src/WooCustomGateway.php',
    36212        'WooCustomGateway_AllowDynamicProperties' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php82/Resources/stubs/AllowDynamicProperties.php',
    37213        'WooCustomGateway_Attribute' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php80/Resources/stubs/Attribute.php',
    38214        'WooCustomGateway_CURLStringFile' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php',
    39215        'WooCustomGateway_ClientIP' => __DIR__ . '/..' . '/woo-custom-gateway/classes/yidas/client-ip/src/ClientIP.php',
     216        'WooCustomGateway_DateError' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateError.php',
     217        'WooCustomGateway_DateException' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateException.php',
     218        'WooCustomGateway_DateInvalidOperationException' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php',
     219        'WooCustomGateway_DateInvalidTimeZoneException' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php',
     220        'WooCustomGateway_DateMalformedIntervalStringException' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php',
     221        'WooCustomGateway_DateMalformedPeriodStringException' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php',
     222        'WooCustomGateway_DateMalformedStringException' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php',
     223        'WooCustomGateway_DateObjectError' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateObjectError.php',
     224        'WooCustomGateway_DateRangeError' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/DateRangeError.php',
     225        'WooCustomGateway_Deprecated' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php84/Resources/stubs/Deprecated.php',
     226        'WooCustomGateway_NoDiscard' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php85/Resources/stubs/NoDiscard.php',
     227        'WooCustomGateway_Override' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/Override.php',
    40228        'WooCustomGateway_PhpToken' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
     229        'WooCustomGateway_ReflectionConstant' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php84/Resources/stubs/ReflectionConstant.php',
    41230        'WooCustomGateway_ReturnTypeWillChange' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php',
     231        'WooCustomGateway_SQLite3Exception' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php83/Resources/stubs/SQLite3Exception.php',
    42232        'WooCustomGateway_SensitiveParameter' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php',
    43233        'WooCustomGateway_SensitiveParameterValue' => __DIR__ . '/..' . '/woo-custom-gateway/classes/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php',
     
    50240    {
    51241        return \Closure::bind(function () use ($loader) {
    52             $loader->prefixLengthsPsr4 = ComposerStaticInit8be2b4f4fb0bf569fe189bd8c13c2421::$prefixLengthsPsr4;
    53             $loader->prefixDirsPsr4 = ComposerStaticInit8be2b4f4fb0bf569fe189bd8c13c2421::$prefixDirsPsr4;
    54             $loader->classMap = ComposerStaticInit8be2b4f4fb0bf569fe189bd8c13c2421::$classMap;
     242            $loader->prefixLengthsPsr4 = ComposerStaticInit1698ce19672fb215643e58e7e9c329eb::$prefixLengthsPsr4;
     243            $loader->prefixDirsPsr4 = ComposerStaticInit1698ce19672fb215643e58e7e9c329eb::$prefixDirsPsr4;
     244            $loader->classMap = ComposerStaticInit1698ce19672fb215643e58e7e9c329eb::$classMap;
    55245
    56246        }, null, ClassLoader::class);
  • woo-custom-gateway/trunk/vendor/composer/installed.json

    r3427755 r3427957  
    10091009        },
    10101010        {
     1011            "name": "symfony/polyfill-php83",
     1012            "version": "v1.33.0",
     1013            "version_normalized": "1.33.0.0",
     1014            "source": {
     1015                "type": "git",
     1016                "url": "https://github.com/symfony/polyfill-php83.git",
     1017                "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
     1018            },
     1019            "dist": {
     1020                "type": "zip",
     1021                "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
     1022                "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
     1023                "shasum": ""
     1024            },
     1025            "require": {
     1026                "php": ">=7.2"
     1027            },
     1028            "time": "2025-07-08T02:45:35+00:00",
     1029            "type": "library",
     1030            "extra": {
     1031                "thanks": {
     1032                    "url": "https://github.com/symfony/polyfill",
     1033                    "name": "symfony/polyfill"
     1034                }
     1035            },
     1036            "installation-source": "dist",
     1037            "autoload": {
     1038                "files": [
     1039                    "bootstrap.php"
     1040                ],
     1041                "psr-4": {
     1042                    "Symfony\\Polyfill\\Php83\\": ""
     1043                },
     1044                "classmap": [
     1045                    "Resources/stubs"
     1046                ]
     1047            },
     1048            "notification-url": "https://packagist.org/downloads/",
     1049            "license": [
     1050                "MIT"
     1051            ],
     1052            "authors": [
     1053                {
     1054                    "name": "Nicolas Grekas",
     1055                    "email": "[email protected]"
     1056                },
     1057                {
     1058                    "name": "Symfony Community",
     1059                    "homepage": "https://symfony.com/contributors"
     1060                }
     1061            ],
     1062            "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
     1063            "homepage": "https://symfony.com",
     1064            "keywords": [
     1065                "compatibility",
     1066                "polyfill",
     1067                "portable",
     1068                "shim"
     1069            ],
     1070            "support": {
     1071                "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
     1072            },
     1073            "funding": [
     1074                {
     1075                    "url": "https://symfony.com/sponsor",
     1076                    "type": "custom"
     1077                },
     1078                {
     1079                    "url": "https://github.com/fabpot",
     1080                    "type": "github"
     1081                },
     1082                {
     1083                    "url": "https://github.com/nicolas-grekas",
     1084                    "type": "github"
     1085                },
     1086                {
     1087                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     1088                    "type": "tidelift"
     1089                }
     1090            ],
     1091            "install-path": "../symfony/polyfill-php83"
     1092        },
     1093        {
     1094            "name": "symfony/polyfill-php84",
     1095            "version": "v1.33.0",
     1096            "version_normalized": "1.33.0.0",
     1097            "source": {
     1098                "type": "git",
     1099                "url": "https://github.com/symfony/polyfill-php84.git",
     1100                "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
     1101            },
     1102            "dist": {
     1103                "type": "zip",
     1104                "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
     1105                "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
     1106                "shasum": ""
     1107            },
     1108            "require": {
     1109                "php": ">=7.2"
     1110            },
     1111            "time": "2025-06-24T13:30:11+00:00",
     1112            "type": "library",
     1113            "extra": {
     1114                "thanks": {
     1115                    "url": "https://github.com/symfony/polyfill",
     1116                    "name": "symfony/polyfill"
     1117                }
     1118            },
     1119            "installation-source": "dist",
     1120            "autoload": {
     1121                "files": [
     1122                    "bootstrap.php"
     1123                ],
     1124                "psr-4": {
     1125                    "Symfony\\Polyfill\\Php84\\": ""
     1126                },
     1127                "classmap": [
     1128                    "Resources/stubs"
     1129                ]
     1130            },
     1131            "notification-url": "https://packagist.org/downloads/",
     1132            "license": [
     1133                "MIT"
     1134            ],
     1135            "authors": [
     1136                {
     1137                    "name": "Nicolas Grekas",
     1138                    "email": "[email protected]"
     1139                },
     1140                {
     1141                    "name": "Symfony Community",
     1142                    "homepage": "https://symfony.com/contributors"
     1143                }
     1144            ],
     1145            "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
     1146            "homepage": "https://symfony.com",
     1147            "keywords": [
     1148                "compatibility",
     1149                "polyfill",
     1150                "portable",
     1151                "shim"
     1152            ],
     1153            "support": {
     1154                "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
     1155            },
     1156            "funding": [
     1157                {
     1158                    "url": "https://symfony.com/sponsor",
     1159                    "type": "custom"
     1160                },
     1161                {
     1162                    "url": "https://github.com/fabpot",
     1163                    "type": "github"
     1164                },
     1165                {
     1166                    "url": "https://github.com/nicolas-grekas",
     1167                    "type": "github"
     1168                },
     1169                {
     1170                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     1171                    "type": "tidelift"
     1172                }
     1173            ],
     1174            "install-path": "../symfony/polyfill-php84"
     1175        },
     1176        {
     1177            "name": "symfony/polyfill-php85",
     1178            "version": "v1.33.0",
     1179            "version_normalized": "1.33.0.0",
     1180            "source": {
     1181                "type": "git",
     1182                "url": "https://github.com/symfony/polyfill-php85.git",
     1183                "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91"
     1184            },
     1185            "dist": {
     1186                "type": "zip",
     1187                "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
     1188                "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
     1189                "shasum": ""
     1190            },
     1191            "require": {
     1192                "php": ">=7.2"
     1193            },
     1194            "time": "2025-06-23T16:12:55+00:00",
     1195            "type": "library",
     1196            "extra": {
     1197                "thanks": {
     1198                    "url": "https://github.com/symfony/polyfill",
     1199                    "name": "symfony/polyfill"
     1200                }
     1201            },
     1202            "installation-source": "dist",
     1203            "autoload": {
     1204                "files": [
     1205                    "bootstrap.php"
     1206                ],
     1207                "psr-4": {
     1208                    "Symfony\\Polyfill\\Php85\\": ""
     1209                },
     1210                "classmap": [
     1211                    "Resources/stubs"
     1212                ]
     1213            },
     1214            "notification-url": "https://packagist.org/downloads/",
     1215            "license": [
     1216                "MIT"
     1217            ],
     1218            "authors": [
     1219                {
     1220                    "name": "Nicolas Grekas",
     1221                    "email": "[email protected]"
     1222                },
     1223                {
     1224                    "name": "Symfony Community",
     1225                    "homepage": "https://symfony.com/contributors"
     1226                }
     1227            ],
     1228            "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
     1229            "homepage": "https://symfony.com",
     1230            "keywords": [
     1231                "compatibility",
     1232                "polyfill",
     1233                "portable",
     1234                "shim"
     1235            ],
     1236            "support": {
     1237                "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0"
     1238            },
     1239            "funding": [
     1240                {
     1241                    "url": "https://symfony.com/sponsor",
     1242                    "type": "custom"
     1243                },
     1244                {
     1245                    "url": "https://github.com/fabpot",
     1246                    "type": "github"
     1247                },
     1248                {
     1249                    "url": "https://github.com/nicolas-grekas",
     1250                    "type": "github"
     1251                },
     1252                {
     1253                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
     1254                    "type": "tidelift"
     1255                }
     1256            ],
     1257            "install-path": "../symfony/polyfill-php85"
     1258        },
     1259        {
    10111260            "name": "yidas/client-ip",
    10121261            "version": "1.0.0",
  • woo-custom-gateway/trunk/vendor/composer/installed.php

    r3427755 r3427957  
    22    'root' => array(
    33        'name' => 'richardmuvirimi/woo-custom-gateway',
    4         'pretty_version' => '1.6.3',
    5         'version' => '1.6.3.0',
     4        'pretty_version' => '1.6.4',
     5        'version' => '1.6.4.0',
    66        'reference' => null,
    77        'type' => 'wordpress-plugin',
     
    102102        ),
    103103        'richardmuvirimi/woo-custom-gateway' => array(
    104             'pretty_version' => '1.6.3',
    105             'version' => '1.6.3.0',
     104            'pretty_version' => '1.6.4',
     105            'version' => '1.6.4.0',
    106106            'reference' => null,
    107107            'type' => 'wordpress-plugin',
     
    155155            'dev_requirement' => false,
    156156        ),
     157        'symfony/polyfill-php83' => array(
     158            'pretty_version' => 'v1.33.0',
     159            'version' => '1.33.0.0',
     160            'reference' => '17f6f9a6b1735c0f163024d959f700cfbc5155e5',
     161            'type' => 'library',
     162            'install_path' => __DIR__ . '/../symfony/polyfill-php83',
     163            'aliases' => array(),
     164            'dev_requirement' => false,
     165        ),
     166        'symfony/polyfill-php84' => array(
     167            'pretty_version' => 'v1.33.0',
     168            'version' => '1.33.0.0',
     169            'reference' => 'd8ced4d875142b6a7426000426b8abc631d6b191',
     170            'type' => 'library',
     171            'install_path' => __DIR__ . '/../symfony/polyfill-php84',
     172            'aliases' => array(),
     173            'dev_requirement' => false,
     174        ),
     175        'symfony/polyfill-php85' => array(
     176            'pretty_version' => 'v1.33.0',
     177            'version' => '1.33.0.0',
     178            'reference' => 'd4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91',
     179            'type' => 'library',
     180            'install_path' => __DIR__ . '/../symfony/polyfill-php85',
     181            'aliases' => array(),
     182            'dev_requirement' => false,
     183        ),
    157184        'yidas/client-ip' => array(
    158185            'pretty_version' => '1.0.0',
  • woo-custom-gateway/trunk/woo-custom-gateway.php

    r3427755 r3427957  
    88 * Plugin URI:        https://github.com/richard-muvirimi/wp-plugin-woo-custom-gateway
    99 * Description:       Add multiple custom payment gateways to WooCommerce e-commerce plugin.
    10  * Version:           1.6.3
     10 * Version:           1.6.4
    1111 * Author:            Richard Muvirimi
    1212 * Author URI:        https://richard.co.zw
     
    1717 * Requires Plugins:  woocommerce
    1818 * WC requires at least: 3.0.0
    19  * WC tested up to:   10.3
     19 * WC tested up to:   10.4
    2020 *
    2121 * @package WooCustomGateway
     
    4848 * Plugin version number
    4949 */
    50 const WOO_CUSTOM_GATEWAY_VERSION = '1.6.3';
     50const WOO_CUSTOM_GATEWAY_VERSION = '1.6.4';
    5151
    5252/**
Note: See TracChangeset for help on using the changeset viewer.