Plugin Directory

Changeset 3057581


Ignore:
Timestamp:
03/24/2024 08:52:55 AM (2 years ago)
Author:
axazara
Message:

Update to version v1.7 from GitHub

Location:
moneroo
Files:
2 deleted
36 edited
1 copied

Legend:

Unmodified
Added
Removed
  • moneroo/tags/v1.7/moneroo-for-woocommerce.php

    r3036150 r3057581  
    1111 * License: GPLv2
    1212 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    13  * Version: v1.6
     13 * Version: v1.7
    1414 * Requires at least: 4.9
    1515 * Tested up to: 6.4
  • moneroo/tags/v1.7/readme.txt

    r3036150 r3057581  
    55Requires at least: 4.9
    66Tested up to: 6.4
    7 Stable tag: v1.6
     7Stable tag: v1.7
    88Requires PHP: 7.4
    99License: GPLv3
  • moneroo/tags/v1.7/src/Moneroo_WC_Gateway.php

    r3036150 r3057581  
    4242    public array $moneroo_wc_moneroo_wc_config = [];
    4343
    44     public ?string $moneroo_wc_public_key = null;
    45 
    4644    public ?string $moneroo_wc_private_key = null;
    4745
     
    123121    {
    124122        $this->moneroo = new Payment(
    125             $this->moneroo_wc_public_key,
    126123            $this->moneroo_wc_private_key,
    127124        );
     
    296293    private function moneroo_wc_keys_are_set(): bool
    297294    {
    298         return ! (empty($this->moneroo_wc_public_key) || empty($this->moneroo_wc_private_key));
     295        return ! empty($this->moneroo_wc_private_key);
    299296    }
    300297
  • moneroo/tags/v1.7/src/Settings/moneroo-settings.php

    r3015851 r3057581  
    3333        'desc_tip'    => true,
    3434    ],
    35     'moneroo_wc_public_key' => [
    36         'title'       => esc_html__('Public KEY', 'moneroo-woocommerce'),
    37         'type'        => 'password',
    38         'desc_tip'    => true,
    39         'description' => esc_html__('Get your API keys from your Moneroo dashboard', 'moneroo-woocommerce'),
    40     ],
    4135    'moneroo_wc_private_key' => [
    4236        'title'       => esc_html__('Private KEY', 'moneroo-woocommerce'),
  • moneroo/tags/v1.7/vendor/autoload.php

    r3015851 r3057581  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit3e6bd4960090d1f65ec68d3b1fe76377::getLoader();
     25return ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de::getLoader();
  • moneroo/tags/v1.7/vendor/composer/autoload_real.php

    r3015851 r3057581  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit3e6bd4960090d1f65ec68d3b1fe76377
     5class ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit3e6bd4960090d1f65ec68d3b1fe76377', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit3e6bd4960090d1f65ec68d3b1fe76377', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit3e6bd4960090d1f65ec68d3b1fe76377::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::getInitializer($loader));
    3333
    3434        $loader->register(true);
    3535
    36         $filesToLoad = \Composer\Autoload\ComposerStaticInit3e6bd4960090d1f65ec68d3b1fe76377::$files;
     36        $filesToLoad = \Composer\Autoload\ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$files;
    3737        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
    3838            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • moneroo/tags/v1.7/vendor/composer/autoload_static.php

    r3015851 r3057581  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit3e6bd4960090d1f65ec68d3b1fe76377
     7class ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de
    88{
    99    public static $files = array (
     
    191191    {
    192192        return \Closure::bind(function () use ($loader) {
    193             $loader->prefixLengthsPsr4 = ComposerStaticInit3e6bd4960090d1f65ec68d3b1fe76377::$prefixLengthsPsr4;
    194             $loader->prefixDirsPsr4 = ComposerStaticInit3e6bd4960090d1f65ec68d3b1fe76377::$prefixDirsPsr4;
    195             $loader->classMap = ComposerStaticInit3e6bd4960090d1f65ec68d3b1fe76377::$classMap;
     193            $loader->prefixLengthsPsr4 = ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$prefixLengthsPsr4;
     194            $loader->prefixDirsPsr4 = ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$prefixDirsPsr4;
     195            $loader->classMap = ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$classMap;
    196196
    197197        }, null, ClassLoader::class);
  • moneroo/tags/v1.7/vendor/composer/installed.json

    r3031648 r3057581  
    337337        {
    338338            "name": "moneroo/moneroo-php",
    339             "version": "dev-main",
    340             "version_normalized": "dev-main",
     339            "version": "v0.1.0",
     340            "version_normalized": "0.1.0.0",
    341341            "source": {
    342342                "type": "git",
    343343                "url": "https://github.com/MonerooHQ/moneroo-php.git",
    344                 "reference": "ea5c68d4c47abfb687ce2a0ea683f433fb73b8a8"
    345             },
    346             "dist": {
    347                 "type": "zip",
    348                 "url": "https://api.github.com/repos/MonerooHQ/moneroo-php/zipball/ea5c68d4c47abfb687ce2a0ea683f433fb73b8a8",
    349                 "reference": "ea5c68d4c47abfb687ce2a0ea683f433fb73b8a8",
     344                "reference": "649c3c5fb618247a4e19adea9b88d5aa8a376f52"
     345            },
     346            "dist": {
     347                "type": "zip",
     348                "url": "https://api.github.com/repos/MonerooHQ/moneroo-php/zipball/649c3c5fb618247a4e19adea9b88d5aa8a376f52",
     349                "reference": "649c3c5fb618247a4e19adea9b88d5aa8a376f52",
    350350                "shasum": ""
    351351            },
     
    364364                "spatie/ray": "^1.39"
    365365            },
    366             "time": "2024-02-02T22:30:50+00:00",
    367             "default-branch": true,
     366            "time": "2024-03-21T16:37:09+00:00",
    368367            "type": "library",
    369368            "installation-source": "dist",
     
    396395            "support": {
    397396                "issues": "https://github.com/MonerooHQ/moneroo-php/issues",
    398                 "source": "https://github.com/MonerooHQ/moneroo-php/tree/main"
     397                "source": "https://github.com/MonerooHQ/moneroo-php/tree/v0.1.0"
    399398            },
    400399            "install-path": "../moneroo/moneroo-php"
     
    618617        {
    619618            "name": "symfony/deprecation-contracts",
    620             "version": "v2.5.2",
    621             "version_normalized": "2.5.2.0",
     619            "version": "v3.4.0",
     620            "version_normalized": "3.4.0.0",
    622621            "source": {
    623622                "type": "git",
    624623                "url": "https://github.com/symfony/deprecation-contracts.git",
    625                 "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
    626             },
    627             "dist": {
    628                 "type": "zip",
    629                 "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
    630                 "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
    631                 "shasum": ""
    632             },
    633             "require": {
    634                 "php": ">=7.1"
    635             },
    636             "time": "2022-01-02T09:53:40+00:00",
     624                "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
     625            },
     626            "dist": {
     627                "type": "zip",
     628                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
     629                "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
     630                "shasum": ""
     631            },
     632            "require": {
     633                "php": ">=8.1"
     634            },
     635            "time": "2023-05-23T14:45:45+00:00",
    637636            "type": "library",
    638637            "extra": {
    639638                "branch-alias": {
    640                     "dev-main": "2.5-dev"
     639                    "dev-main": "3.4-dev"
    641640                },
    642641                "thanks": {
     
    668667            "homepage": "https://symfony.com",
    669668            "support": {
    670                 "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
     669                "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
    671670            },
    672671            "funding": [
  • moneroo/tags/v1.7/vendor/composer/installed.php

    r3036150 r3057581  
    22    'root' => array(
    33        'name' => 'moneroo/moneroo-woocommerce',
    4         'pretty_version' => 'v1.6',
    5         'version' => '1.6.0.0',
    6         'reference' => 'caf1cb95571d5acc4e931ff17d220cb85e3dcd7a',
     4        'pretty_version' => 'v1.7',
     5        'version' => '1.7.0.0',
     6        'reference' => '98bd4ad51c131e991039a1facb0d8c3ba7fef204',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3939        ),
    4040        'moneroo/moneroo-php' => array(
    41             'pretty_version' => 'dev-main',
    42             'version' => 'dev-main',
    43             'reference' => 'ea5c68d4c47abfb687ce2a0ea683f433fb73b8a8',
     41            'pretty_version' => 'v0.1.0',
     42            'version' => '0.1.0.0',
     43            'reference' => '649c3c5fb618247a4e19adea9b88d5aa8a376f52',
    4444            'type' => 'library',
    4545            'install_path' => __DIR__ . '/../moneroo/moneroo-php',
    46             'aliases' => array(
    47                 0 => '9999999-dev',
    48             ),
     46            'aliases' => array(),
    4947            'dev_requirement' => false,
    5048        ),
    5149        'moneroo/moneroo-woocommerce' => array(
    52             'pretty_version' => 'v1.6',
    53             'version' => '1.6.0.0',
    54             'reference' => 'caf1cb95571d5acc4e931ff17d220cb85e3dcd7a',
     50            'pretty_version' => 'v1.7',
     51            'version' => '1.7.0.0',
     52            'reference' => '98bd4ad51c131e991039a1facb0d8c3ba7fef204',
    5553            'type' => 'library',
    5654            'install_path' => __DIR__ . '/../../',
     
    113111        ),
    114112        'symfony/deprecation-contracts' => array(
    115             'pretty_version' => 'v2.5.2',
    116             'version' => '2.5.2.0',
    117             'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66',
     113            'pretty_version' => 'v3.4.0',
     114            'version' => '3.4.0.0',
     115            'reference' => '7c3aff79d10325257a001fcf92d991f24fc967cf',
    118116            'type' => 'library',
    119117            'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
  • moneroo/tags/v1.7/vendor/composer/platform_check.php

    r3031648 r3057581  
    55$issues = array();
    66
    7 if (!(PHP_VERSION_ID >= 70400)) {
    8     $issues[] = 'Your Composer dependencies require a PHP version ">= 7.4.0". You are running ' . PHP_VERSION . '.';
     7if (!(PHP_VERSION_ID >= 80100)) {
     8    $issues[] = 'Your Composer dependencies require a PHP version ">= 8.1.0". You are running ' . PHP_VERSION . '.';
    99}
    1010
  • moneroo/tags/v1.7/vendor/moneroo/moneroo-php/src/Configs/Config.php

    r3015851 r3057581  
    99    public const BASE_URL = 'https://api.moneroo.io/v1';
    1010
    11     public const TIMEOUT = 5;
     11    public const TIMEOUT = 30;
    1212}
  • moneroo/tags/v1.7/vendor/moneroo/moneroo-php/src/Moneroo.php

    r3015851 r3057581  
    2626
    2727    public function __construct(
    28         string $publicKey,
    2928        string $secretKey,
    3029        bool $devMode = false,
    3130        string $baseUrl = Config::BASE_URL
    3231    ) {
    33         $this->publicKey = $publicKey;
    3432        $this->secretKey = $secretKey;
    3533
     
    3836            : Config::BASE_URL;
    3937
    40         if (empty($this->publicKey)) {
    41             throw new InvalidPayloadException('Public key is not set or not a string.');
    42         }
    43 
    4438        if (empty($this->secretKey)) {
    4539            throw new InvalidPayloadException('Secret key is not set or not a string.');
  • moneroo/tags/v1.7/vendor/moneroo/moneroo-php/src/Payment/Status.php

    r3015851 r3057581  
    77    /**
    88     * The payment has been initiated.
    9      * This is transactional state and will change.
     9     * This is a transactional state and will change.
    1010     */
    1111    public const INITIATED = 'initiated';
     
    1313    /**
    1414     * The payment is pending.
    15      * This is transactional state and will change.
     15     * This is a transactional state and will change.
    1616     */
    1717    public const PENDING = 'pending';
     
    1919    /**
    2020     * The payment has failed.
    21      * This is final state.
     21     * This is a final state.
    2222     */
    2323    public const FAILED = 'failed';
    2424
    2525    /**
    26      * The payment has been cancelled.
    27      * This is final state.
     26     * The payment has been a success.
     27     * This is a final state.
    2828     */
    2929    public const SUCCESS = 'success';
    3030
    3131    /**
    32      * The payment has been cancelled by user or abandoned (10 minutes after initiated state).
     32     * The payment has been cancelled by user or abandoned (5 minutes after initiated state).
    3333     * Should be treated as a failed payment.
    34      * This is final state.
     34     * This is a final state.
    3535     */
    3636    public const CANCELLED = 'cancelled';
  • moneroo/tags/v1.7/vendor/moneroo/moneroo-php/src/Payout/Status.php

    r3015851 r3057581  
    77    /**
    88     * The payout has been initiated.
    9      * This is transactional state and will change.
     9     * This is a transactional state and will change.
    1010     */
    1111    public const INITIATED = 'initiated';
     
    1414     * The payout is pending, waiting for confirmation from PSP.
    1515     *
    16      * This is transactional state and will change.
     16     * This is a transactional state and will change.
    1717     */
    1818    public const PENDING = 'pending';
     
    2121     * The payout has failed.
    2222     *
    23      * This is final state.
     23     * This is a final state.
    2424     */
    2525    public const FAILED = 'failed';
  • moneroo/tags/v1.7/vendor/symfony/deprecation-contracts/LICENSE

    r3031648 r3057581  
    1 Copyright (c) 2020-2022 Fabien Potencier
     1Copyright (c) 2020-present Fabien Potencier
    22
    33Permission is hereby granted, free of charge, to any person obtaining a copy
  • moneroo/tags/v1.7/vendor/symfony/deprecation-contracts/README.md

    r3031648 r3057581  
    2323`Since symfony/blockchain 8.9: Using "bitcoin" is deprecated, use "fabcoin" instead.`
    2424
    25 While not necessarily recommended, the deprecation notices can be completely ignored by declaring an empty
     25While not recommended, the deprecation notices can be completely ignored by declaring an empty
    2626`function trigger_deprecation() {}` in your application.
  • moneroo/tags/v1.7/vendor/symfony/deprecation-contracts/composer.json

    r3031648 r3057581  
    1616    ],
    1717    "require": {
    18         "php": ">=7.1"
     18        "php": ">=8.1"
    1919    },
    2020    "autoload": {
     
    2626    "extra": {
    2727        "branch-alias": {
    28             "dev-main": "2.5-dev"
     28            "dev-main": "3.4-dev"
    2929        },
    3030        "thanks": {
  • moneroo/tags/v1.7/vendor/symfony/deprecation-contracts/function.php

    r3031648 r3057581  
    2121     * @author Nicolas Grekas <p@tchwork.com>
    2222     */
    23     function trigger_deprecation(string $package, string $version, string $message, ...$args): void
     23    function trigger_deprecation(string $package, string $version, string $message, mixed ...$args): void
    2424    {
    2525        @trigger_error(($package || $version ? "Since $package $version: " : '').($args ? vsprintf($message, $args) : $message), \E_USER_DEPRECATED);
  • moneroo/trunk/moneroo-for-woocommerce.php

    r3036150 r3057581  
    1111 * License: GPLv2
    1212 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    13  * Version: v1.6
     13 * Version: v1.7
    1414 * Requires at least: 4.9
    1515 * Tested up to: 6.4
  • moneroo/trunk/readme.txt

    r3036150 r3057581  
    55Requires at least: 4.9
    66Tested up to: 6.4
    7 Stable tag: v1.6
     7Stable tag: v1.7
    88Requires PHP: 7.4
    99License: GPLv3
  • moneroo/trunk/src/Moneroo_WC_Gateway.php

    r3036150 r3057581  
    4242    public array $moneroo_wc_moneroo_wc_config = [];
    4343
    44     public ?string $moneroo_wc_public_key = null;
    45 
    4644    public ?string $moneroo_wc_private_key = null;
    4745
     
    123121    {
    124122        $this->moneroo = new Payment(
    125             $this->moneroo_wc_public_key,
    126123            $this->moneroo_wc_private_key,
    127124        );
     
    296293    private function moneroo_wc_keys_are_set(): bool
    297294    {
    298         return ! (empty($this->moneroo_wc_public_key) || empty($this->moneroo_wc_private_key));
     295        return ! empty($this->moneroo_wc_private_key);
    299296    }
    300297
  • moneroo/trunk/src/Settings/moneroo-settings.php

    r3015851 r3057581  
    3333        'desc_tip'    => true,
    3434    ],
    35     'moneroo_wc_public_key' => [
    36         'title'       => esc_html__('Public KEY', 'moneroo-woocommerce'),
    37         'type'        => 'password',
    38         'desc_tip'    => true,
    39         'description' => esc_html__('Get your API keys from your Moneroo dashboard', 'moneroo-woocommerce'),
    40     ],
    4135    'moneroo_wc_private_key' => [
    4236        'title'       => esc_html__('Private KEY', 'moneroo-woocommerce'),
  • moneroo/trunk/vendor/autoload.php

    r3015851 r3057581  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit3e6bd4960090d1f65ec68d3b1fe76377::getLoader();
     25return ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de::getLoader();
  • moneroo/trunk/vendor/composer/autoload_real.php

    r3015851 r3057581  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit3e6bd4960090d1f65ec68d3b1fe76377
     5class ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit3e6bd4960090d1f65ec68d3b1fe76377', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit3e6bd4960090d1f65ec68d3b1fe76377', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit3e6bd4960090d1f65ec68d3b1fe76377::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::getInitializer($loader));
    3333
    3434        $loader->register(true);
    3535
    36         $filesToLoad = \Composer\Autoload\ComposerStaticInit3e6bd4960090d1f65ec68d3b1fe76377::$files;
     36        $filesToLoad = \Composer\Autoload\ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$files;
    3737        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
    3838            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • moneroo/trunk/vendor/composer/autoload_static.php

    r3015851 r3057581  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit3e6bd4960090d1f65ec68d3b1fe76377
     7class ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de
    88{
    99    public static $files = array (
     
    191191    {
    192192        return \Closure::bind(function () use ($loader) {
    193             $loader->prefixLengthsPsr4 = ComposerStaticInit3e6bd4960090d1f65ec68d3b1fe76377::$prefixLengthsPsr4;
    194             $loader->prefixDirsPsr4 = ComposerStaticInit3e6bd4960090d1f65ec68d3b1fe76377::$prefixDirsPsr4;
    195             $loader->classMap = ComposerStaticInit3e6bd4960090d1f65ec68d3b1fe76377::$classMap;
     193            $loader->prefixLengthsPsr4 = ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$prefixLengthsPsr4;
     194            $loader->prefixDirsPsr4 = ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$prefixDirsPsr4;
     195            $loader->classMap = ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$classMap;
    196196
    197197        }, null, ClassLoader::class);
  • moneroo/trunk/vendor/composer/installed.json

    r3031648 r3057581  
    337337        {
    338338            "name": "moneroo/moneroo-php",
    339             "version": "dev-main",
    340             "version_normalized": "dev-main",
     339            "version": "v0.1.0",
     340            "version_normalized": "0.1.0.0",
    341341            "source": {
    342342                "type": "git",
    343343                "url": "https://github.com/MonerooHQ/moneroo-php.git",
    344                 "reference": "ea5c68d4c47abfb687ce2a0ea683f433fb73b8a8"
    345             },
    346             "dist": {
    347                 "type": "zip",
    348                 "url": "https://api.github.com/repos/MonerooHQ/moneroo-php/zipball/ea5c68d4c47abfb687ce2a0ea683f433fb73b8a8",
    349                 "reference": "ea5c68d4c47abfb687ce2a0ea683f433fb73b8a8",
     344                "reference": "649c3c5fb618247a4e19adea9b88d5aa8a376f52"
     345            },
     346            "dist": {
     347                "type": "zip",
     348                "url": "https://api.github.com/repos/MonerooHQ/moneroo-php/zipball/649c3c5fb618247a4e19adea9b88d5aa8a376f52",
     349                "reference": "649c3c5fb618247a4e19adea9b88d5aa8a376f52",
    350350                "shasum": ""
    351351            },
     
    364364                "spatie/ray": "^1.39"
    365365            },
    366             "time": "2024-02-02T22:30:50+00:00",
    367             "default-branch": true,
     366            "time": "2024-03-21T16:37:09+00:00",
    368367            "type": "library",
    369368            "installation-source": "dist",
     
    396395            "support": {
    397396                "issues": "https://github.com/MonerooHQ/moneroo-php/issues",
    398                 "source": "https://github.com/MonerooHQ/moneroo-php/tree/main"
     397                "source": "https://github.com/MonerooHQ/moneroo-php/tree/v0.1.0"
    399398            },
    400399            "install-path": "../moneroo/moneroo-php"
     
    618617        {
    619618            "name": "symfony/deprecation-contracts",
    620             "version": "v2.5.2",
    621             "version_normalized": "2.5.2.0",
     619            "version": "v3.4.0",
     620            "version_normalized": "3.4.0.0",
    622621            "source": {
    623622                "type": "git",
    624623                "url": "https://github.com/symfony/deprecation-contracts.git",
    625                 "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
    626             },
    627             "dist": {
    628                 "type": "zip",
    629                 "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
    630                 "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
    631                 "shasum": ""
    632             },
    633             "require": {
    634                 "php": ">=7.1"
    635             },
    636             "time": "2022-01-02T09:53:40+00:00",
     624                "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
     625            },
     626            "dist": {
     627                "type": "zip",
     628                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
     629                "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
     630                "shasum": ""
     631            },
     632            "require": {
     633                "php": ">=8.1"
     634            },
     635            "time": "2023-05-23T14:45:45+00:00",
    637636            "type": "library",
    638637            "extra": {
    639638                "branch-alias": {
    640                     "dev-main": "2.5-dev"
     639                    "dev-main": "3.4-dev"
    641640                },
    642641                "thanks": {
     
    668667            "homepage": "https://symfony.com",
    669668            "support": {
    670                 "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
     669                "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
    671670            },
    672671            "funding": [
  • moneroo/trunk/vendor/composer/installed.php

    r3036150 r3057581  
    22    'root' => array(
    33        'name' => 'moneroo/moneroo-woocommerce',
    4         'pretty_version' => 'v1.6',
    5         'version' => '1.6.0.0',
    6         'reference' => 'caf1cb95571d5acc4e931ff17d220cb85e3dcd7a',
     4        'pretty_version' => 'v1.7',
     5        'version' => '1.7.0.0',
     6        'reference' => '98bd4ad51c131e991039a1facb0d8c3ba7fef204',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3939        ),
    4040        'moneroo/moneroo-php' => array(
    41             'pretty_version' => 'dev-main',
    42             'version' => 'dev-main',
    43             'reference' => 'ea5c68d4c47abfb687ce2a0ea683f433fb73b8a8',
     41            'pretty_version' => 'v0.1.0',
     42            'version' => '0.1.0.0',
     43            'reference' => '649c3c5fb618247a4e19adea9b88d5aa8a376f52',
    4444            'type' => 'library',
    4545            'install_path' => __DIR__ . '/../moneroo/moneroo-php',
    46             'aliases' => array(
    47                 0 => '9999999-dev',
    48             ),
     46            'aliases' => array(),
    4947            'dev_requirement' => false,
    5048        ),
    5149        'moneroo/moneroo-woocommerce' => array(
    52             'pretty_version' => 'v1.6',
    53             'version' => '1.6.0.0',
    54             'reference' => 'caf1cb95571d5acc4e931ff17d220cb85e3dcd7a',
     50            'pretty_version' => 'v1.7',
     51            'version' => '1.7.0.0',
     52            'reference' => '98bd4ad51c131e991039a1facb0d8c3ba7fef204',
    5553            'type' => 'library',
    5654            'install_path' => __DIR__ . '/../../',
     
    113111        ),
    114112        'symfony/deprecation-contracts' => array(
    115             'pretty_version' => 'v2.5.2',
    116             'version' => '2.5.2.0',
    117             'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66',
     113            'pretty_version' => 'v3.4.0',
     114            'version' => '3.4.0.0',
     115            'reference' => '7c3aff79d10325257a001fcf92d991f24fc967cf',
    118116            'type' => 'library',
    119117            'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
  • moneroo/trunk/vendor/composer/platform_check.php

    r3031648 r3057581  
    55$issues = array();
    66
    7 if (!(PHP_VERSION_ID >= 70400)) {
    8     $issues[] = 'Your Composer dependencies require a PHP version ">= 7.4.0". You are running ' . PHP_VERSION . '.';
     7if (!(PHP_VERSION_ID >= 80100)) {
     8    $issues[] = 'Your Composer dependencies require a PHP version ">= 8.1.0". You are running ' . PHP_VERSION . '.';
    99}
    1010
  • moneroo/trunk/vendor/moneroo/moneroo-php/src/Configs/Config.php

    r3015851 r3057581  
    99    public const BASE_URL = 'https://api.moneroo.io/v1';
    1010
    11     public const TIMEOUT = 5;
     11    public const TIMEOUT = 30;
    1212}
  • moneroo/trunk/vendor/moneroo/moneroo-php/src/Moneroo.php

    r3015851 r3057581  
    2626
    2727    public function __construct(
    28         string $publicKey,
    2928        string $secretKey,
    3029        bool $devMode = false,
    3130        string $baseUrl = Config::BASE_URL
    3231    ) {
    33         $this->publicKey = $publicKey;
    3432        $this->secretKey = $secretKey;
    3533
     
    3836            : Config::BASE_URL;
    3937
    40         if (empty($this->publicKey)) {
    41             throw new InvalidPayloadException('Public key is not set or not a string.');
    42         }
    43 
    4438        if (empty($this->secretKey)) {
    4539            throw new InvalidPayloadException('Secret key is not set or not a string.');
  • moneroo/trunk/vendor/moneroo/moneroo-php/src/Payment/Status.php

    r3015851 r3057581  
    77    /**
    88     * The payment has been initiated.
    9      * This is transactional state and will change.
     9     * This is a transactional state and will change.
    1010     */
    1111    public const INITIATED = 'initiated';
     
    1313    /**
    1414     * The payment is pending.
    15      * This is transactional state and will change.
     15     * This is a transactional state and will change.
    1616     */
    1717    public const PENDING = 'pending';
     
    1919    /**
    2020     * The payment has failed.
    21      * This is final state.
     21     * This is a final state.
    2222     */
    2323    public const FAILED = 'failed';
    2424
    2525    /**
    26      * The payment has been cancelled.
    27      * This is final state.
     26     * The payment has been a success.
     27     * This is a final state.
    2828     */
    2929    public const SUCCESS = 'success';
    3030
    3131    /**
    32      * The payment has been cancelled by user or abandoned (10 minutes after initiated state).
     32     * The payment has been cancelled by user or abandoned (5 minutes after initiated state).
    3333     * Should be treated as a failed payment.
    34      * This is final state.
     34     * This is a final state.
    3535     */
    3636    public const CANCELLED = 'cancelled';
  • moneroo/trunk/vendor/moneroo/moneroo-php/src/Payout/Status.php

    r3015851 r3057581  
    77    /**
    88     * The payout has been initiated.
    9      * This is transactional state and will change.
     9     * This is a transactional state and will change.
    1010     */
    1111    public const INITIATED = 'initiated';
     
    1414     * The payout is pending, waiting for confirmation from PSP.
    1515     *
    16      * This is transactional state and will change.
     16     * This is a transactional state and will change.
    1717     */
    1818    public const PENDING = 'pending';
     
    2121     * The payout has failed.
    2222     *
    23      * This is final state.
     23     * This is a final state.
    2424     */
    2525    public const FAILED = 'failed';
  • moneroo/trunk/vendor/symfony/deprecation-contracts/LICENSE

    r3031648 r3057581  
    1 Copyright (c) 2020-2022 Fabien Potencier
     1Copyright (c) 2020-present Fabien Potencier
    22
    33Permission is hereby granted, free of charge, to any person obtaining a copy
  • moneroo/trunk/vendor/symfony/deprecation-contracts/README.md

    r3031648 r3057581  
    2323`Since symfony/blockchain 8.9: Using "bitcoin" is deprecated, use "fabcoin" instead.`
    2424
    25 While not necessarily recommended, the deprecation notices can be completely ignored by declaring an empty
     25While not recommended, the deprecation notices can be completely ignored by declaring an empty
    2626`function trigger_deprecation() {}` in your application.
  • moneroo/trunk/vendor/symfony/deprecation-contracts/composer.json

    r3031648 r3057581  
    1616    ],
    1717    "require": {
    18         "php": ">=7.1"
     18        "php": ">=8.1"
    1919    },
    2020    "autoload": {
     
    2626    "extra": {
    2727        "branch-alias": {
    28             "dev-main": "2.5-dev"
     28            "dev-main": "3.4-dev"
    2929        },
    3030        "thanks": {
  • moneroo/trunk/vendor/symfony/deprecation-contracts/function.php

    r3031648 r3057581  
    2121     * @author Nicolas Grekas <p@tchwork.com>
    2222     */
    23     function trigger_deprecation(string $package, string $version, string $message, ...$args): void
     23    function trigger_deprecation(string $package, string $version, string $message, mixed ...$args): void
    2424    {
    2525        @trigger_error(($package || $version ? "Since $package $version: " : '').($args ? vsprintf($message, $args) : $message), \E_USER_DEPRECATED);
Note: See TracChangeset for help on using the changeset viewer.