Plugin Directory

Changeset 3301881


Ignore:
Timestamp:
05/28/2025 01:54:28 AM (10 months ago)
Author:
withflex
Message:

Add 2.2.0

Location:
pay-with-flex/trunk
Files:
4 added
10 edited

Legend:

Unmodified
Added
Removed
  • pay-with-flex/trunk/composer.lock

    r3299082 r3301881  
    541541        {
    542542            "name": "symfony/deprecation-contracts",
    543             "version": "v3.5.1",
     543            "version": "v3.6.0",
    544544            "source": {
    545545                "type": "git",
    546546                "url": "https://github.com/symfony/deprecation-contracts.git",
    547                 "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
    548             },
    549             "dist": {
    550                 "type": "zip",
    551                 "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
    552                 "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
     547                "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
     548            },
     549            "dist": {
     550                "type": "zip",
     551                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
     552                "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
    553553                "shasum": ""
    554554            },
     
    563563                },
    564564                "branch-alias": {
    565                     "dev-main": "3.5-dev"
     565                    "dev-main": "3.6-dev"
    566566                }
    567567            },
     
    588588            "homepage": "https://symfony.com",
    589589            "support": {
    590                 "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
     590                "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
    591591            },
    592592            "funding": [
     
    604604                }
    605605            ],
    606             "time": "2024-09-25T14:20:29+00:00"
     606            "time": "2024-09-25T14:21:43+00:00"
    607607        },
    608608        {
  • pay-with-flex/trunk/pay-with-flex.php

    r3299082 r3301881  
    33 * Plugin Name:      Flex HSA/FSA Payments
    44 * Description:      Accept HSA/FSA payments directly in the checkout flow.
    5  * Version:          2.1.3
     5 * Version:          2.2.0
    66 * Plugin URI:       https://wordpress.org/plugins/pay-with-flex/
    77 * Author:           Flex
     
    1010 * Requires PHP:     8.1
    1111 * Requires Plugins: woocommerce
     12 * Text Domain:      pay-with-flex
    1213 *
    1314 * @package Flex
     
    4344require_once plugin_dir_path( __FILE__ ) . '/vendor/autoload_packages.php';
    4445
     46const PLUGIN_FILE = __FILE__;
     47
    4548/**
    4649 * Flex Payment Gateway
     
    6467        $client = ClientBuilder::create(
    6568            array(
    66                 'dsn'            => 'https://7d4678d6fe3174eb2a6817500256e5d3@o4505602776694784.ingest.us.sentry.io/4509358008958976',
    67                 'environment'    => wp_get_environment_type(),
    68                 'release'        => $data['Version'],
    69                 'in_app_include' => array( __DIR__ ),
     69                'dsn'                  => 'https://7d4678d6fe3174eb2a6817500256e5d3@o4505602776694784.ingest.us.sentry.io/4509358008958976',
     70                'environment'          => wp_get_environment_type(),
     71                'release'              => $data['Version'],
     72                'in_app_include'       => array( __DIR__ ),
     73                'default_integrations' => false,
    7074                // Exclude any events that are not "in app" as defined above.
    71                 'before_send'    => function ( Event $event ): ?Event {
     75                'before_send'          => function ( Event $event ): ?Event {
    7276                    $trace = $event->getStacktrace();
    7377                    $exceptions = $event->getExceptions();
     
    679683
    680684/**
     685 * Add the Payment Method.
     686 *
     687 * @param string[] $methods An array of Payment method classes.
     688 */
     689add_filter(
     690    hook_name: 'woocommerce_blocks_payment_method_type_registration',
     691    callback: array( PaymentMethod::class, 'wc_blocks_payment_method_type_registration' ),
     692);
     693
     694/**
    681695 * Register Routes.
    682696 */
  • pay-with-flex/trunk/readme.txt

    r3299082 r3301881  
    44Requires at least: 6.8
    55Tested up to: 6.8
    6 Stable tag: 2.1.3
     6Stable tag: 2.2.0
    77Requires PHP: 8.1
    88License: GPLv3 or later
     
    5656== Changelog ==
    5757
     58= 2.2.0 =
     59* Added support for [WooCommerce block-based checkout](https://woocommerce.com/checkout-blocks/).
     60
    5861= 2.1.3 =
    5962* Fixed a critical error with PHP < 8.4
  • pay-with-flex/trunk/vendor/composer/autoload_classmap.php

    r3299082 r3301881  
    2020    'Flex\\Exception\\FlexResponseException' => $baseDir . '/src/Exception/FlexResponseException.php',
    2121    'Flex\\PaymentGateway' => $baseDir . '/src/PaymentGateway.php',
     22    'Flex\\PaymentMethod' => $baseDir . '/src/PaymentMethod.php',
    2223    'Flex\\Resource\\CheckoutSession' => $baseDir . '/src/Resource/CheckoutSession.php',
    2324    'Flex\\Resource\\CheckoutSessionMode' => $baseDir . '/src/Resource/CheckoutSessionMode.php',
  • pay-with-flex/trunk/vendor/composer/autoload_static.php

    r3299082 r3301881  
    9898        'Flex\\Exception\\FlexResponseException' => __DIR__ . '/../..' . '/src/Exception/FlexResponseException.php',
    9999        'Flex\\PaymentGateway' => __DIR__ . '/../..' . '/src/PaymentGateway.php',
     100        'Flex\\PaymentMethod' => __DIR__ . '/../..' . '/src/PaymentMethod.php',
    100101        'Flex\\Resource\\CheckoutSession' => __DIR__ . '/../..' . '/src/Resource/CheckoutSession.php',
    101102        'Flex\\Resource\\CheckoutSessionMode' => __DIR__ . '/../..' . '/src/Resource/CheckoutSessionMode.php',
  • pay-with-flex/trunk/vendor/composer/installed.json

    r3299082 r3301881  
    559559        {
    560560            "name": "symfony/deprecation-contracts",
    561             "version": "v3.5.1",
    562             "version_normalized": "3.5.1.0",
     561            "version": "v3.6.0",
     562            "version_normalized": "3.6.0.0",
    563563            "source": {
    564564                "type": "git",
    565565                "url": "https://github.com/symfony/deprecation-contracts.git",
    566                 "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
    567             },
    568             "dist": {
    569                 "type": "zip",
    570                 "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
    571                 "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
     566                "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
     567            },
     568            "dist": {
     569                "type": "zip",
     570                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
     571                "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
    572572                "shasum": ""
    573573            },
     
    575575                "php": ">=8.1"
    576576            },
    577             "time": "2024-09-25T14:20:29+00:00",
     577            "time": "2024-09-25T14:21:43+00:00",
    578578            "type": "library",
    579579            "extra": {
     
    583583                },
    584584                "branch-alias": {
    585                     "dev-main": "3.5-dev"
     585                    "dev-main": "3.6-dev"
    586586                }
    587587            },
     
    609609            "homepage": "https://symfony.com",
    610610            "support": {
    611                 "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
     611                "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
    612612            },
    613613            "funding": [
  • pay-with-flex/trunk/vendor/composer/installed.php

    r3299082 r3301881  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '6c5202188e9408b5b0678480a6af981de033af1c',
     6        'reference' => 'cc4788f82da3cf84ab509a01c85acd3dd14841e4',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => '6c5202188e9408b5b0678480a6af981de033af1c',
     16            'reference' => 'cc4788f82da3cf84ab509a01c85acd3dd14841e4',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
     
    105105        ),
    106106        'symfony/deprecation-contracts' => array(
    107             'pretty_version' => 'v3.5.1',
    108             'version' => '3.5.1.0',
    109             'reference' => '74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6',
     107            'pretty_version' => 'v3.6.0',
     108            'version' => '3.6.0.0',
     109            'reference' => '63afe740e99a13ba87ec199bb07bbdee937a5b62',
    110110            'type' => 'library',
    111111            'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
  • pay-with-flex/trunk/vendor/composer/jetpack_autoload_classmap.php

    r3299082 r3301881  
    7171        'path'    => $baseDir . '/src/PaymentGateway.php'
    7272    ),
     73    'Flex\\PaymentMethod' => array(
     74        'version' => 'dev-main',
     75        'path'    => $baseDir . '/src/PaymentMethod.php'
     76    ),
    7377    'Flex\\Resource\\CheckoutSession' => array(
    7478        'version' => 'dev-main',
  • pay-with-flex/trunk/vendor/composer/jetpack_autoload_filemap.php

    r3299082 r3301881  
    1212    ),
    1313    '6e3fae29631ef280660b3cdad06f25a8' => array(
    14         'version' => '3.5.1.0',
     14        'version' => '3.6.0.0',
    1515        'path'    => $vendorDir . '/symfony/deprecation-contracts/function.php'
    1616    ),
  • pay-with-flex/trunk/vendor/symfony/deprecation-contracts/composer.json

    r3299085 r3301881  
    2626    "extra": {
    2727        "branch-alias": {
    28             "dev-main": "3.5-dev"
     28            "dev-main": "3.6-dev"
    2929        },
    3030        "thanks": {
Note: See TracChangeset for help on using the changeset viewer.