Plugin Directory

Changeset 3182242


Ignore:
Timestamp:
11/05/2024 11:50:59 AM (17 months ago)
Author:
multisafepayplugin
Message:

Update to version 6.6.2 from GitHub

Location:
multisafepay
Files:
6 deleted
32 edited
1 copied

Legend:

Unmodified
Added
Removed
  • multisafepay/tags/6.6.2/multisafepay.php

    r3146437 r3182242  
    55 * Plugin URI:              https://docs.multisafepay.com/docs/woocommerce
    66 * Description:             MultiSafepay Payment Plugin
    7  * Version:                 6.6.1
     7 * Version:                 6.6.2
    88 * Author:                  MultiSafepay
    99 * Author URI:              https://www.multisafepay.com
     
    1212 * License URI:             http://www.gnu.org/licenses/gpl-3.0.html
    1313 * Requires at least:       6.0
    14  * Tested up to:            6.6.1
     14 * Tested up to:            6.6.2
    1515 * WC requires at least:    6.0.0
    16  * WC tested up to:         9.2.3
     16 * WC tested up to:         9.3.3
    1717 * Requires PHP:            7.3
    1818 * Text Domain:             multisafepay
     
    2727 * Plugin version
    2828 */
    29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.6.1' );
     29define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.6.2' );
    3030
    3131/**
  • multisafepay/tags/6.6.2/readme.txt

    r3146437 r3182242  
    33Tags: multisafepay, payment gateway, credit cards, ideal, bnpl
    44Requires at least: 6.0
    5 Tested up to: 6.6.1
     5Tested up to: 6.6.2
    66Requires PHP: 7.3
    7 Stable tag: 6.6.1
     7Stable tag: 6.6.2
    88License: MIT
    99
     
    128128== Upgrade Notice ==
    129129
    130 = 6.6.1 =
     130= 6.6.2 =
    1311316.x.x is a major upgrade in which the MultiSafepay payment methods are registered dynamically via an API request to MultiSafepay. If you are upgrading from 5.X.X version, after the upgrade, please navigate to the MultiSafepay settings page, and to each one of the payment methods enabled in your account, and confirm the settings in each section are set up according to your preferences.
    132132
     
    144144
    145145== Changelog ==
     146= Release Notes - WooCommerce 6.6.2 (Nov 5th, 2024) =
     147
     148### Added
     149+ PLGWOOS-961: Add double-check before addDelivery() in the order request builder
     150
     151### Changed
     152+ PLGWOOS-953: Change label of the group cards setting field
     153
    146154= Release Notes - WooCommerce 6.6.1 (Sep 4th, 2024) =
    147155
  • multisafepay/tags/6.6.2/src/Services/OrderService.php

    r3114383 r3182242  
    6666            ->addData( array( 'var2' => $order->get_id() ) );
    6767
    68         if ( $order->needs_shipping_address() ) {
     68        if ( $order->needs_shipping_address() && $order->has_shipping_address() ) {
    6969            $order_request->addDelivery( $this->customer_service->create_delivery_details( $order ) );
    7070        }
  • multisafepay/tags/6.6.2/src/Settings/SettingsFields.php

    r3048898 r3182242  
    9090                array(
    9191                    'id'           => 'multisafepay_group_credit_cards',
    92                     'label'        => __( 'Group Credit Cards', 'multisafepay' ),
    93                     'description'  => __( 'If is enable, payment methods classified as credit cards (Amex, Maestro, Mastercard, and Visa) will shown grouped as a single payment method', 'multisafepay' ),
     92                    'label'        => __( 'Group debit and credit cards', 'multisafepay' ),
     93                    'description'  => __( 'If is enabled, payment methods classified as debit and credit cards (Amex, Maestro, Mastercard, and Visa) will shown grouped as a single payment method', 'multisafepay' ),
    9494                    'type'         => 'checkbox',
    9595                    'default'      => (bool) get_option(
     
    9797                        PaymentMethodService::is_multisafepay_credit_card_woocommerce_payment_gateway_enabled()
    9898                    ),
    99                     'placeholder'  => __( 'Group Credit Cards', 'multisafepay' ),
     99                    'placeholder'  => __( 'Group debit and credit cards', 'multisafepay' ),
    100100                    'tooltip'      => '',
    101101                    'callback'     => '',
  • multisafepay/tags/6.6.2/vendor/autoload.php

    r3146437 r3182242  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit68721a43f2665cbca96d07cf1de6e772::getLoader();
     25return ComposerAutoloaderInit9a3a8c00d82f2456a00be2ca473f5edb::getLoader();
  • multisafepay/tags/6.6.2/vendor/composer/autoload_real.php

    r3146437 r3182242  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit68721a43f2665cbca96d07cf1de6e772
     5class ComposerAutoloaderInit9a3a8c00d82f2456a00be2ca473f5edb
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit68721a43f2665cbca96d07cf1de6e772', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit9a3a8c00d82f2456a00be2ca473f5edb', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit68721a43f2665cbca96d07cf1de6e772', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit9a3a8c00d82f2456a00be2ca473f5edb', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit68721a43f2665cbca96d07cf1de6e772::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit9a3a8c00d82f2456a00be2ca473f5edb::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • multisafepay/tags/6.6.2/vendor/composer/autoload_static.php

    r3146437 r3182242  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit68721a43f2665cbca96d07cf1de6e772
     7class ComposerStaticInit9a3a8c00d82f2456a00be2ca473f5edb
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    6363    {
    6464        return \Closure::bind(function () use ($loader) {
    65             $loader->prefixLengthsPsr4 = ComposerStaticInit68721a43f2665cbca96d07cf1de6e772::$prefixLengthsPsr4;
    66             $loader->prefixDirsPsr4 = ComposerStaticInit68721a43f2665cbca96d07cf1de6e772::$prefixDirsPsr4;
    67             $loader->classMap = ComposerStaticInit68721a43f2665cbca96d07cf1de6e772::$classMap;
     65            $loader->prefixLengthsPsr4 = ComposerStaticInit9a3a8c00d82f2456a00be2ca473f5edb::$prefixLengthsPsr4;
     66            $loader->prefixDirsPsr4 = ComposerStaticInit9a3a8c00d82f2456a00be2ca473f5edb::$prefixDirsPsr4;
     67            $loader->classMap = ComposerStaticInit9a3a8c00d82f2456a00be2ca473f5edb::$classMap;
    6868
    6969        }, null, ClassLoader::class);
  • multisafepay/tags/6.6.2/vendor/composer/installed.json

    r3114383 r3182242  
    5959        {
    6060            "name": "nyholm/psr7",
    61             "version": "1.8.1",
    62             "version_normalized": "1.8.1.0",
     61            "version": "1.8.2",
     62            "version_normalized": "1.8.2.0",
    6363            "source": {
    6464                "type": "git",
    6565                "url": "https://github.com/Nyholm/psr7.git",
    66                 "reference": "aa5fc277a4f5508013d571341ade0c3886d4d00e"
    67             },
    68             "dist": {
    69                 "type": "zip",
    70                 "url": "https://api.github.com/repos/Nyholm/psr7/zipball/aa5fc277a4f5508013d571341ade0c3886d4d00e",
    71                 "reference": "aa5fc277a4f5508013d571341ade0c3886d4d00e",
     66                "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3"
     67            },
     68            "dist": {
     69                "type": "zip",
     70                "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
     71                "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
    7272                "shasum": ""
    7373            },
     
    8989                "symfony/error-handler": "^4.4"
    9090            },
    91             "time": "2023-11-13T09:31:12+00:00",
     91            "time": "2024-09-09T07:06:30+00:00",
    9292            "type": "library",
    9393            "extra": {
     
    124124            "support": {
    125125                "issues": "https://github.com/Nyholm/psr7/issues",
    126                 "source": "https://github.com/Nyholm/psr7/tree/1.8.1"
     126                "source": "https://github.com/Nyholm/psr7/tree/1.8.2"
    127127            },
    128128            "funding": [
     
    140140        {
    141141            "name": "php-http/discovery",
    142             "version": "1.19.4",
    143             "version_normalized": "1.19.4.0",
     142            "version": "1.20.0",
     143            "version_normalized": "1.20.0.0",
    144144            "source": {
    145145                "type": "git",
    146146                "url": "https://github.com/php-http/discovery.git",
    147                 "reference": "0700efda8d7526335132360167315fdab3aeb599"
    148             },
    149             "dist": {
    150                 "type": "zip",
    151                 "url": "https://api.github.com/repos/php-http/discovery/zipball/0700efda8d7526335132360167315fdab3aeb599",
    152                 "reference": "0700efda8d7526335132360167315fdab3aeb599",
     147                "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
     148            },
     149            "dist": {
     150                "type": "zip",
     151                "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
     152                "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
    153153                "shasum": ""
    154154            },
     
    177177                "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
    178178            },
    179             "time": "2024-03-29T13:00:05+00:00",
     179            "time": "2024-10-02T11:20:13+00:00",
    180180            "type": "composer-plugin",
    181181            "extra": {
     
    216216            "support": {
    217217                "issues": "https://github.com/php-http/discovery/issues",
    218                 "source": "https://github.com/php-http/discovery/tree/1.19.4"
     218                "source": "https://github.com/php-http/discovery/tree/1.20.0"
    219219            },
    220220            "install-path": "../php-http/discovery"
  • multisafepay/tags/6.6.2/vendor/composer/installed.php

    r3146437 r3182242  
    22    'root' => array(
    33        'name' => 'multisafepay/woocommerce',
    4         'pretty_version' => '6.6.1',
    5         'version' => '6.6.1.0',
     4        'pretty_version' => '6.6.2',
     5        'version' => '6.6.2.0',
    66        'reference' => null,
    77        'type' => 'wordpress-plugin',
     
    2121        ),
    2222        'multisafepay/woocommerce' => array(
    23             'pretty_version' => '6.6.1',
    24             'version' => '6.6.1.0',
     23            'pretty_version' => '6.6.2',
     24            'version' => '6.6.2.0',
    2525            'reference' => null,
    2626            'type' => 'wordpress-plugin',
     
    3030        ),
    3131        'nyholm/psr7' => array(
    32             'pretty_version' => '1.8.1',
    33             'version' => '1.8.1.0',
    34             'reference' => 'aa5fc277a4f5508013d571341ade0c3886d4d00e',
     32            'pretty_version' => '1.8.2',
     33            'version' => '1.8.2.0',
     34            'reference' => 'a71f2b11690f4b24d099d6b16690a90ae14fc6f3',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../nyholm/psr7',
     
    5151        ),
    5252        'php-http/discovery' => array(
    53             'pretty_version' => '1.19.4',
    54             'version' => '1.19.4.0',
    55             'reference' => '0700efda8d7526335132360167315fdab3aeb599',
     53            'pretty_version' => '1.20.0',
     54            'version' => '1.20.0.0',
     55            'reference' => '82fe4c73ef3363caed49ff8dd1539ba06044910d',
    5656            'type' => 'composer-plugin',
    5757            'install_path' => __DIR__ . '/../php-http/discovery',
  • multisafepay/tags/6.6.2/vendor/nyholm/psr7/CHANGELOG.md

    r2927749 r3182242  
    22
    33All notable changes to this project will be documented in this file, in reverse chronological order by release.
     4
     5## 1.8.2
     6
     7- Fix deprecation warnings in PHP 8.4
     8
     9## 1.8.1
     10
     11- Fix error handling in Stream::getContents()
    412
    513## 1.8.0
  • multisafepay/tags/6.6.2/vendor/nyholm/psr7/src/Factory/Psr17Factory.php

    r2698508 r3182242  
    5858    }
    5959
    60     public function createUploadedFile(StreamInterface $stream, int $size = null, int $error = \UPLOAD_ERR_OK, string $clientFilename = null, string $clientMediaType = null): UploadedFileInterface
     60    public function createUploadedFile(StreamInterface $stream, ?int $size = null, int $error = \UPLOAD_ERR_OK, ?string $clientFilename = null, ?string $clientMediaType = null): UploadedFileInterface
    6161    {
    6262        if (null === $size) {
  • multisafepay/tags/6.6.2/vendor/nyholm/psr7/src/Response.php

    r2927749 r3182242  
    4040     * @param string|null $reason Reason phrase (when empty a default will be used based on the status code)
    4141     */
    42     public function __construct(int $status = 200, array $headers = [], $body = null, string $version = '1.1', string $reason = null)
     42    public function __construct(int $status = 200, array $headers = [], $body = null, string $version = '1.1', ?string $reason = null)
    4343    {
    4444        // If we got no body, defer initialization of the stream until Response::getBody()
  • multisafepay/tags/6.6.2/vendor/php-http/discovery/.php-cs-fixer.php

    r2730349 r3182242  
    1010    ->setRules([
    1111        '@Symfony' => true,
     12        'trailing_comma_in_multiline' => false, // for methods this is incompatible with PHP 7
    1213    ])
    1314    ->setFinder($finder)
  • multisafepay/tags/6.6.2/vendor/php-http/discovery/CHANGELOG.md

    r3072171 r3182242  
    11# Change Log
     2
     3## 1.20.0 - 2024-10-02
     4
     5- [#268](https://github.com/php-http/discovery/pull/268) - Do not attempt to update lock file when it is not existing.
     6- [#267](https://github.com/php-http/discovery/pull/267) - Test with PHP 8.3 and 8.4
     7- [#266](https://github.com/php-http/discovery/pull/266) - If wrapped client implements factories, use those instead of discovering new factories.
    28
    39## 1.19.4 - 2024-03-29
  • multisafepay/tags/6.6.2/vendor/php-http/discovery/src/Composer/Plugin.php

    r2951435 r3182242  
    453453    private function updateComposerLock(Composer $composer, IOInterface $io)
    454454    {
     455        if (false === $composer->getConfig()->get('lock')) {
     456            return;
     457        }
     458
    455459        $lock = substr(Factory::getComposerFile(), 0, -4).'lock';
    456460        $composerJson = file_get_contents(Factory::getComposerFile());
     
    459463            ? new Locker($io, $lockFile, $composer->getInstallationManager(), $composerJson)
    460464            : new Locker($io, $lockFile, $composer->getRepositoryManager(), $composer->getInstallationManager(), $composerJson);
     465
     466        if (!$locker->isLocked()) {
     467            return;
     468        }
     469
    461470        $lockData = $locker->getLockData();
    462471        $lockData['content-hash'] = Locker::getContentHash($composerJson);
  • multisafepay/tags/6.6.2/vendor/php-http/discovery/src/Psr18Client.php

    r3072171 r3182242  
    3434        ?UriFactoryInterface $uriFactory = null
    3535    ) {
     36        $requestFactory ?? $requestFactory = $client instanceof RequestFactoryInterface ? $client : null;
     37        $responseFactory ?? $responseFactory = $client instanceof ResponseFactoryInterface ? $client : null;
     38        $serverRequestFactory ?? $serverRequestFactory = $client instanceof ServerRequestFactoryInterface ? $client : null;
     39        $streamFactory ?? $streamFactory = $client instanceof StreamFactoryInterface ? $client : null;
     40        $uploadedFileFactory ?? $uploadedFileFactory = $client instanceof UploadedFileFactoryInterface ? $client : null;
     41        $uriFactory ?? $uriFactory = $client instanceof UriFactoryInterface ? $client : null;
     42
    3643        parent::__construct($requestFactory, $responseFactory, $serverRequestFactory, $streamFactory, $uploadedFileFactory, $uriFactory);
    3744
  • multisafepay/trunk/multisafepay.php

    r3146437 r3182242  
    55 * Plugin URI:              https://docs.multisafepay.com/docs/woocommerce
    66 * Description:             MultiSafepay Payment Plugin
    7  * Version:                 6.6.1
     7 * Version:                 6.6.2
    88 * Author:                  MultiSafepay
    99 * Author URI:              https://www.multisafepay.com
     
    1212 * License URI:             http://www.gnu.org/licenses/gpl-3.0.html
    1313 * Requires at least:       6.0
    14  * Tested up to:            6.6.1
     14 * Tested up to:            6.6.2
    1515 * WC requires at least:    6.0.0
    16  * WC tested up to:         9.2.3
     16 * WC tested up to:         9.3.3
    1717 * Requires PHP:            7.3
    1818 * Text Domain:             multisafepay
     
    2727 * Plugin version
    2828 */
    29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.6.1' );
     29define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.6.2' );
    3030
    3131/**
  • multisafepay/trunk/readme.txt

    r3146437 r3182242  
    33Tags: multisafepay, payment gateway, credit cards, ideal, bnpl
    44Requires at least: 6.0
    5 Tested up to: 6.6.1
     5Tested up to: 6.6.2
    66Requires PHP: 7.3
    7 Stable tag: 6.6.1
     7Stable tag: 6.6.2
    88License: MIT
    99
     
    128128== Upgrade Notice ==
    129129
    130 = 6.6.1 =
     130= 6.6.2 =
    1311316.x.x is a major upgrade in which the MultiSafepay payment methods are registered dynamically via an API request to MultiSafepay. If you are upgrading from 5.X.X version, after the upgrade, please navigate to the MultiSafepay settings page, and to each one of the payment methods enabled in your account, and confirm the settings in each section are set up according to your preferences.
    132132
     
    144144
    145145== Changelog ==
     146= Release Notes - WooCommerce 6.6.2 (Nov 5th, 2024) =
     147
     148### Added
     149+ PLGWOOS-961: Add double-check before addDelivery() in the order request builder
     150
     151### Changed
     152+ PLGWOOS-953: Change label of the group cards setting field
     153
    146154= Release Notes - WooCommerce 6.6.1 (Sep 4th, 2024) =
    147155
  • multisafepay/trunk/src/Services/OrderService.php

    r3114383 r3182242  
    6666            ->addData( array( 'var2' => $order->get_id() ) );
    6767
    68         if ( $order->needs_shipping_address() ) {
     68        if ( $order->needs_shipping_address() && $order->has_shipping_address() ) {
    6969            $order_request->addDelivery( $this->customer_service->create_delivery_details( $order ) );
    7070        }
  • multisafepay/trunk/src/Settings/SettingsFields.php

    r3048898 r3182242  
    9090                array(
    9191                    'id'           => 'multisafepay_group_credit_cards',
    92                     'label'        => __( 'Group Credit Cards', 'multisafepay' ),
    93                     'description'  => __( 'If is enable, payment methods classified as credit cards (Amex, Maestro, Mastercard, and Visa) will shown grouped as a single payment method', 'multisafepay' ),
     92                    'label'        => __( 'Group debit and credit cards', 'multisafepay' ),
     93                    'description'  => __( 'If is enabled, payment methods classified as debit and credit cards (Amex, Maestro, Mastercard, and Visa) will shown grouped as a single payment method', 'multisafepay' ),
    9494                    'type'         => 'checkbox',
    9595                    'default'      => (bool) get_option(
     
    9797                        PaymentMethodService::is_multisafepay_credit_card_woocommerce_payment_gateway_enabled()
    9898                    ),
    99                     'placeholder'  => __( 'Group Credit Cards', 'multisafepay' ),
     99                    'placeholder'  => __( 'Group debit and credit cards', 'multisafepay' ),
    100100                    'tooltip'      => '',
    101101                    'callback'     => '',
  • multisafepay/trunk/vendor/autoload.php

    r3146437 r3182242  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit68721a43f2665cbca96d07cf1de6e772::getLoader();
     25return ComposerAutoloaderInit9a3a8c00d82f2456a00be2ca473f5edb::getLoader();
  • multisafepay/trunk/vendor/composer/autoload_real.php

    r3146437 r3182242  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit68721a43f2665cbca96d07cf1de6e772
     5class ComposerAutoloaderInit9a3a8c00d82f2456a00be2ca473f5edb
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit68721a43f2665cbca96d07cf1de6e772', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit9a3a8c00d82f2456a00be2ca473f5edb', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit68721a43f2665cbca96d07cf1de6e772', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit9a3a8c00d82f2456a00be2ca473f5edb', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit68721a43f2665cbca96d07cf1de6e772::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit9a3a8c00d82f2456a00be2ca473f5edb::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • multisafepay/trunk/vendor/composer/autoload_static.php

    r3146437 r3182242  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit68721a43f2665cbca96d07cf1de6e772
     7class ComposerStaticInit9a3a8c00d82f2456a00be2ca473f5edb
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    6363    {
    6464        return \Closure::bind(function () use ($loader) {
    65             $loader->prefixLengthsPsr4 = ComposerStaticInit68721a43f2665cbca96d07cf1de6e772::$prefixLengthsPsr4;
    66             $loader->prefixDirsPsr4 = ComposerStaticInit68721a43f2665cbca96d07cf1de6e772::$prefixDirsPsr4;
    67             $loader->classMap = ComposerStaticInit68721a43f2665cbca96d07cf1de6e772::$classMap;
     65            $loader->prefixLengthsPsr4 = ComposerStaticInit9a3a8c00d82f2456a00be2ca473f5edb::$prefixLengthsPsr4;
     66            $loader->prefixDirsPsr4 = ComposerStaticInit9a3a8c00d82f2456a00be2ca473f5edb::$prefixDirsPsr4;
     67            $loader->classMap = ComposerStaticInit9a3a8c00d82f2456a00be2ca473f5edb::$classMap;
    6868
    6969        }, null, ClassLoader::class);
  • multisafepay/trunk/vendor/composer/installed.json

    r3114383 r3182242  
    5959        {
    6060            "name": "nyholm/psr7",
    61             "version": "1.8.1",
    62             "version_normalized": "1.8.1.0",
     61            "version": "1.8.2",
     62            "version_normalized": "1.8.2.0",
    6363            "source": {
    6464                "type": "git",
    6565                "url": "https://github.com/Nyholm/psr7.git",
    66                 "reference": "aa5fc277a4f5508013d571341ade0c3886d4d00e"
    67             },
    68             "dist": {
    69                 "type": "zip",
    70                 "url": "https://api.github.com/repos/Nyholm/psr7/zipball/aa5fc277a4f5508013d571341ade0c3886d4d00e",
    71                 "reference": "aa5fc277a4f5508013d571341ade0c3886d4d00e",
     66                "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3"
     67            },
     68            "dist": {
     69                "type": "zip",
     70                "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
     71                "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
    7272                "shasum": ""
    7373            },
     
    8989                "symfony/error-handler": "^4.4"
    9090            },
    91             "time": "2023-11-13T09:31:12+00:00",
     91            "time": "2024-09-09T07:06:30+00:00",
    9292            "type": "library",
    9393            "extra": {
     
    124124            "support": {
    125125                "issues": "https://github.com/Nyholm/psr7/issues",
    126                 "source": "https://github.com/Nyholm/psr7/tree/1.8.1"
     126                "source": "https://github.com/Nyholm/psr7/tree/1.8.2"
    127127            },
    128128            "funding": [
     
    140140        {
    141141            "name": "php-http/discovery",
    142             "version": "1.19.4",
    143             "version_normalized": "1.19.4.0",
     142            "version": "1.20.0",
     143            "version_normalized": "1.20.0.0",
    144144            "source": {
    145145                "type": "git",
    146146                "url": "https://github.com/php-http/discovery.git",
    147                 "reference": "0700efda8d7526335132360167315fdab3aeb599"
    148             },
    149             "dist": {
    150                 "type": "zip",
    151                 "url": "https://api.github.com/repos/php-http/discovery/zipball/0700efda8d7526335132360167315fdab3aeb599",
    152                 "reference": "0700efda8d7526335132360167315fdab3aeb599",
     147                "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
     148            },
     149            "dist": {
     150                "type": "zip",
     151                "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
     152                "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
    153153                "shasum": ""
    154154            },
     
    177177                "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
    178178            },
    179             "time": "2024-03-29T13:00:05+00:00",
     179            "time": "2024-10-02T11:20:13+00:00",
    180180            "type": "composer-plugin",
    181181            "extra": {
     
    216216            "support": {
    217217                "issues": "https://github.com/php-http/discovery/issues",
    218                 "source": "https://github.com/php-http/discovery/tree/1.19.4"
     218                "source": "https://github.com/php-http/discovery/tree/1.20.0"
    219219            },
    220220            "install-path": "../php-http/discovery"
  • multisafepay/trunk/vendor/composer/installed.php

    r3146437 r3182242  
    22    'root' => array(
    33        'name' => 'multisafepay/woocommerce',
    4         'pretty_version' => '6.6.1',
    5         'version' => '6.6.1.0',
     4        'pretty_version' => '6.6.2',
     5        'version' => '6.6.2.0',
    66        'reference' => null,
    77        'type' => 'wordpress-plugin',
     
    2121        ),
    2222        'multisafepay/woocommerce' => array(
    23             'pretty_version' => '6.6.1',
    24             'version' => '6.6.1.0',
     23            'pretty_version' => '6.6.2',
     24            'version' => '6.6.2.0',
    2525            'reference' => null,
    2626            'type' => 'wordpress-plugin',
     
    3030        ),
    3131        'nyholm/psr7' => array(
    32             'pretty_version' => '1.8.1',
    33             'version' => '1.8.1.0',
    34             'reference' => 'aa5fc277a4f5508013d571341ade0c3886d4d00e',
     32            'pretty_version' => '1.8.2',
     33            'version' => '1.8.2.0',
     34            'reference' => 'a71f2b11690f4b24d099d6b16690a90ae14fc6f3',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../nyholm/psr7',
     
    5151        ),
    5252        'php-http/discovery' => array(
    53             'pretty_version' => '1.19.4',
    54             'version' => '1.19.4.0',
    55             'reference' => '0700efda8d7526335132360167315fdab3aeb599',
     53            'pretty_version' => '1.20.0',
     54            'version' => '1.20.0.0',
     55            'reference' => '82fe4c73ef3363caed49ff8dd1539ba06044910d',
    5656            'type' => 'composer-plugin',
    5757            'install_path' => __DIR__ . '/../php-http/discovery',
  • multisafepay/trunk/vendor/nyholm/psr7/CHANGELOG.md

    r2927749 r3182242  
    22
    33All notable changes to this project will be documented in this file, in reverse chronological order by release.
     4
     5## 1.8.2
     6
     7- Fix deprecation warnings in PHP 8.4
     8
     9## 1.8.1
     10
     11- Fix error handling in Stream::getContents()
    412
    513## 1.8.0
  • multisafepay/trunk/vendor/nyholm/psr7/src/Factory/Psr17Factory.php

    r2698508 r3182242  
    5858    }
    5959
    60     public function createUploadedFile(StreamInterface $stream, int $size = null, int $error = \UPLOAD_ERR_OK, string $clientFilename = null, string $clientMediaType = null): UploadedFileInterface
     60    public function createUploadedFile(StreamInterface $stream, ?int $size = null, int $error = \UPLOAD_ERR_OK, ?string $clientFilename = null, ?string $clientMediaType = null): UploadedFileInterface
    6161    {
    6262        if (null === $size) {
  • multisafepay/trunk/vendor/nyholm/psr7/src/Response.php

    r2927749 r3182242  
    4040     * @param string|null $reason Reason phrase (when empty a default will be used based on the status code)
    4141     */
    42     public function __construct(int $status = 200, array $headers = [], $body = null, string $version = '1.1', string $reason = null)
     42    public function __construct(int $status = 200, array $headers = [], $body = null, string $version = '1.1', ?string $reason = null)
    4343    {
    4444        // If we got no body, defer initialization of the stream until Response::getBody()
  • multisafepay/trunk/vendor/php-http/discovery/.php-cs-fixer.php

    r2730349 r3182242  
    1010    ->setRules([
    1111        '@Symfony' => true,
     12        'trailing_comma_in_multiline' => false, // for methods this is incompatible with PHP 7
    1213    ])
    1314    ->setFinder($finder)
  • multisafepay/trunk/vendor/php-http/discovery/CHANGELOG.md

    r3072171 r3182242  
    11# Change Log
     2
     3## 1.20.0 - 2024-10-02
     4
     5- [#268](https://github.com/php-http/discovery/pull/268) - Do not attempt to update lock file when it is not existing.
     6- [#267](https://github.com/php-http/discovery/pull/267) - Test with PHP 8.3 and 8.4
     7- [#266](https://github.com/php-http/discovery/pull/266) - If wrapped client implements factories, use those instead of discovering new factories.
    28
    39## 1.19.4 - 2024-03-29
  • multisafepay/trunk/vendor/php-http/discovery/src/Composer/Plugin.php

    r2951435 r3182242  
    453453    private function updateComposerLock(Composer $composer, IOInterface $io)
    454454    {
     455        if (false === $composer->getConfig()->get('lock')) {
     456            return;
     457        }
     458
    455459        $lock = substr(Factory::getComposerFile(), 0, -4).'lock';
    456460        $composerJson = file_get_contents(Factory::getComposerFile());
     
    459463            ? new Locker($io, $lockFile, $composer->getInstallationManager(), $composerJson)
    460464            : new Locker($io, $lockFile, $composer->getRepositoryManager(), $composer->getInstallationManager(), $composerJson);
     465
     466        if (!$locker->isLocked()) {
     467            return;
     468        }
     469
    461470        $lockData = $locker->getLockData();
    462471        $lockData['content-hash'] = Locker::getContentHash($composerJson);
  • multisafepay/trunk/vendor/php-http/discovery/src/Psr18Client.php

    r3072171 r3182242  
    3434        ?UriFactoryInterface $uriFactory = null
    3535    ) {
     36        $requestFactory ?? $requestFactory = $client instanceof RequestFactoryInterface ? $client : null;
     37        $responseFactory ?? $responseFactory = $client instanceof ResponseFactoryInterface ? $client : null;
     38        $serverRequestFactory ?? $serverRequestFactory = $client instanceof ServerRequestFactoryInterface ? $client : null;
     39        $streamFactory ?? $streamFactory = $client instanceof StreamFactoryInterface ? $client : null;
     40        $uploadedFileFactory ?? $uploadedFileFactory = $client instanceof UploadedFileFactoryInterface ? $client : null;
     41        $uriFactory ?? $uriFactory = $client instanceof UriFactoryInterface ? $client : null;
     42
    3643        parent::__construct($requestFactory, $responseFactory, $serverRequestFactory, $streamFactory, $uploadedFileFactory, $uriFactory);
    3744
Note: See TracChangeset for help on using the changeset viewer.