Changeset 3057581
- Timestamp:
- 03/24/2024 08:52:55 AM (2 years ago)
- Location:
- moneroo
- Files:
-
- 2 deleted
- 36 edited
- 1 copied
-
tags/v1.7 (copied) (copied from moneroo/trunk)
-
tags/v1.7/moneroo-for-woocommerce.php (modified) (1 diff)
-
tags/v1.7/readme.txt (modified) (1 diff)
-
tags/v1.7/src/Moneroo_WC_Gateway.php (modified) (3 diffs)
-
tags/v1.7/src/Settings/moneroo-settings.php (modified) (1 diff)
-
tags/v1.7/vendor/autoload.php (modified) (1 diff)
-
tags/v1.7/vendor/composer/autoload_real.php (modified) (2 diffs)
-
tags/v1.7/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/v1.7/vendor/composer/installed.json (modified) (5 diffs)
-
tags/v1.7/vendor/composer/installed.php (modified) (3 diffs)
-
tags/v1.7/vendor/composer/platform_check.php (modified) (1 diff)
-
tags/v1.7/vendor/moneroo/moneroo-php/src/Configs/Config.php (modified) (1 diff)
-
tags/v1.7/vendor/moneroo/moneroo-php/src/Moneroo.php (modified) (2 diffs)
-
tags/v1.7/vendor/moneroo/moneroo-php/src/Payment/Status.php (modified) (3 diffs)
-
tags/v1.7/vendor/moneroo/moneroo-php/src/Payout/Status.php (modified) (3 diffs)
-
tags/v1.7/vendor/symfony/deprecation-contracts/.gitignore (deleted)
-
tags/v1.7/vendor/symfony/deprecation-contracts/LICENSE (modified) (1 diff)
-
tags/v1.7/vendor/symfony/deprecation-contracts/README.md (modified) (1 diff)
-
tags/v1.7/vendor/symfony/deprecation-contracts/composer.json (modified) (2 diffs)
-
tags/v1.7/vendor/symfony/deprecation-contracts/function.php (modified) (1 diff)
-
trunk/moneroo-for-woocommerce.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/Moneroo_WC_Gateway.php (modified) (3 diffs)
-
trunk/src/Settings/moneroo-settings.php (modified) (1 diff)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.json (modified) (5 diffs)
-
trunk/vendor/composer/installed.php (modified) (3 diffs)
-
trunk/vendor/composer/platform_check.php (modified) (1 diff)
-
trunk/vendor/moneroo/moneroo-php/src/Configs/Config.php (modified) (1 diff)
-
trunk/vendor/moneroo/moneroo-php/src/Moneroo.php (modified) (2 diffs)
-
trunk/vendor/moneroo/moneroo-php/src/Payment/Status.php (modified) (3 diffs)
-
trunk/vendor/moneroo/moneroo-php/src/Payout/Status.php (modified) (3 diffs)
-
trunk/vendor/symfony/deprecation-contracts/.gitignore (deleted)
-
trunk/vendor/symfony/deprecation-contracts/LICENSE (modified) (1 diff)
-
trunk/vendor/symfony/deprecation-contracts/README.md (modified) (1 diff)
-
trunk/vendor/symfony/deprecation-contracts/composer.json (modified) (2 diffs)
-
trunk/vendor/symfony/deprecation-contracts/function.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
moneroo/tags/v1.7/moneroo-for-woocommerce.php
r3036150 r3057581 11 11 * License: GPLv2 12 12 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 13 * Version: v1. 613 * Version: v1.7 14 14 * Requires at least: 4.9 15 15 * Tested up to: 6.4 -
moneroo/tags/v1.7/readme.txt
r3036150 r3057581 5 5 Requires at least: 4.9 6 6 Tested up to: 6.4 7 Stable tag: v1. 67 Stable tag: v1.7 8 8 Requires PHP: 7.4 9 9 License: GPLv3 -
moneroo/tags/v1.7/src/Moneroo_WC_Gateway.php
r3036150 r3057581 42 42 public array $moneroo_wc_moneroo_wc_config = []; 43 43 44 public ?string $moneroo_wc_public_key = null;45 46 44 public ?string $moneroo_wc_private_key = null; 47 45 … … 123 121 { 124 122 $this->moneroo = new Payment( 125 $this->moneroo_wc_public_key,126 123 $this->moneroo_wc_private_key, 127 124 ); … … 296 293 private function moneroo_wc_keys_are_set(): bool 297 294 { 298 return ! (empty($this->moneroo_wc_public_key) || empty($this->moneroo_wc_private_key));295 return ! empty($this->moneroo_wc_private_key); 299 296 } 300 297 -
moneroo/tags/v1.7/src/Settings/moneroo-settings.php
r3015851 r3057581 33 33 'desc_tip' => true, 34 34 ], 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 ],41 35 'moneroo_wc_private_key' => [ 42 36 'title' => esc_html__('Private KEY', 'moneroo-woocommerce'), -
moneroo/tags/v1.7/vendor/autoload.php
r3015851 r3057581 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 3e6bd4960090d1f65ec68d3b1fe76377::getLoader();25 return ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de::getLoader(); -
moneroo/tags/v1.7/vendor/composer/autoload_real.php
r3015851 r3057581 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 3e6bd4960090d1f65ec68d3b1fe763775 class ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 3e6bd4960090d1f65ec68d3b1fe76377', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 3e6bd4960090d1f65ec68d3b1fe76377', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 3e6bd4960090d1f65ec68d3b1fe76377::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::getInitializer($loader)); 33 33 34 34 $loader->register(true); 35 35 36 $filesToLoad = \Composer\Autoload\ComposerStaticInit 3e6bd4960090d1f65ec68d3b1fe76377::$files;36 $filesToLoad = \Composer\Autoload\ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$files; 37 37 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { 38 38 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
moneroo/tags/v1.7/vendor/composer/autoload_static.php
r3015851 r3057581 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 3e6bd4960090d1f65ec68d3b1fe763777 class ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de 8 8 { 9 9 public static $files = array ( … … 191 191 { 192 192 return \Closure::bind(function () use ($loader) { 193 $loader->prefixLengthsPsr4 = ComposerStaticInit 3e6bd4960090d1f65ec68d3b1fe76377::$prefixLengthsPsr4;194 $loader->prefixDirsPsr4 = ComposerStaticInit 3e6bd4960090d1f65ec68d3b1fe76377::$prefixDirsPsr4;195 $loader->classMap = ComposerStaticInit 3e6bd4960090d1f65ec68d3b1fe76377::$classMap;193 $loader->prefixLengthsPsr4 = ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$prefixLengthsPsr4; 194 $loader->prefixDirsPsr4 = ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$prefixDirsPsr4; 195 $loader->classMap = ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$classMap; 196 196 197 197 }, null, ClassLoader::class); -
moneroo/tags/v1.7/vendor/composer/installed.json
r3031648 r3057581 337 337 { 338 338 "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", 341 341 "source": { 342 342 "type": "git", 343 343 "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", 350 350 "shasum": "" 351 351 }, … … 364 364 "spatie/ray": "^1.39" 365 365 }, 366 "time": "2024-02-02T22:30:50+00:00", 367 "default-branch": true, 366 "time": "2024-03-21T16:37:09+00:00", 368 367 "type": "library", 369 368 "installation-source": "dist", … … 396 395 "support": { 397 396 "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" 399 398 }, 400 399 "install-path": "../moneroo/moneroo-php" … … 618 617 { 619 618 "name": "symfony/deprecation-contracts", 620 "version": "v 2.5.2",621 "version_normalized": " 2.5.2.0",619 "version": "v3.4.0", 620 "version_normalized": "3.4.0.0", 622 621 "source": { 623 622 "type": "git", 624 623 "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": "202 2-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", 637 636 "type": "library", 638 637 "extra": { 639 638 "branch-alias": { 640 "dev-main": " 2.5-dev"639 "dev-main": "3.4-dev" 641 640 }, 642 641 "thanks": { … … 668 667 "homepage": "https://symfony.com", 669 668 "support": { 670 "source": "https://github.com/symfony/deprecation-contracts/tree/v 2.5.2"669 "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0" 671 670 }, 672 671 "funding": [ -
moneroo/tags/v1.7/vendor/composer/installed.php
r3036150 r3057581 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 39 39 ), 40 40 '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', 44 44 'type' => 'library', 45 45 'install_path' => __DIR__ . '/../moneroo/moneroo-php', 46 'aliases' => array( 47 0 => '9999999-dev', 48 ), 46 'aliases' => array(), 49 47 'dev_requirement' => false, 50 48 ), 51 49 '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', 55 53 'type' => 'library', 56 54 'install_path' => __DIR__ . '/../../', … … 113 111 ), 114 112 'symfony/deprecation-contracts' => array( 115 'pretty_version' => 'v 2.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', 118 116 'type' => 'library', 119 117 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', -
moneroo/tags/v1.7/vendor/composer/platform_check.php
r3031648 r3057581 5 5 $issues = array(); 6 6 7 if (!(PHP_VERSION_ID >= 70400)) {8 $issues[] = 'Your Composer dependencies require a PHP version ">= 7.4.0". You are running ' . PHP_VERSION . '.';7 if (!(PHP_VERSION_ID >= 80100)) { 8 $issues[] = 'Your Composer dependencies require a PHP version ">= 8.1.0". You are running ' . PHP_VERSION . '.'; 9 9 } 10 10 -
moneroo/tags/v1.7/vendor/moneroo/moneroo-php/src/Configs/Config.php
r3015851 r3057581 9 9 public const BASE_URL = 'https://api.moneroo.io/v1'; 10 10 11 public const TIMEOUT = 5;11 public const TIMEOUT = 30; 12 12 } -
moneroo/tags/v1.7/vendor/moneroo/moneroo-php/src/Moneroo.php
r3015851 r3057581 26 26 27 27 public function __construct( 28 string $publicKey,29 28 string $secretKey, 30 29 bool $devMode = false, 31 30 string $baseUrl = Config::BASE_URL 32 31 ) { 33 $this->publicKey = $publicKey;34 32 $this->secretKey = $secretKey; 35 33 … … 38 36 : Config::BASE_URL; 39 37 40 if (empty($this->publicKey)) {41 throw new InvalidPayloadException('Public key is not set or not a string.');42 }43 44 38 if (empty($this->secretKey)) { 45 39 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 7 7 /** 8 8 * The payment has been initiated. 9 * This is transactional state and will change.9 * This is a transactional state and will change. 10 10 */ 11 11 public const INITIATED = 'initiated'; … … 13 13 /** 14 14 * The payment is pending. 15 * This is transactional state and will change.15 * This is a transactional state and will change. 16 16 */ 17 17 public const PENDING = 'pending'; … … 19 19 /** 20 20 * The payment has failed. 21 * This is final state.21 * This is a final state. 22 22 */ 23 23 public const FAILED = 'failed'; 24 24 25 25 /** 26 * The payment has been cancelled.27 * This is final state.26 * The payment has been a success. 27 * This is a final state. 28 28 */ 29 29 public const SUCCESS = 'success'; 30 30 31 31 /** 32 * The payment has been cancelled by user or abandoned ( 10minutes after initiated state).32 * The payment has been cancelled by user or abandoned (5 minutes after initiated state). 33 33 * Should be treated as a failed payment. 34 * This is final state.34 * This is a final state. 35 35 */ 36 36 public const CANCELLED = 'cancelled'; -
moneroo/tags/v1.7/vendor/moneroo/moneroo-php/src/Payout/Status.php
r3015851 r3057581 7 7 /** 8 8 * The payout has been initiated. 9 * This is transactional state and will change.9 * This is a transactional state and will change. 10 10 */ 11 11 public const INITIATED = 'initiated'; … … 14 14 * The payout is pending, waiting for confirmation from PSP. 15 15 * 16 * This is transactional state and will change.16 * This is a transactional state and will change. 17 17 */ 18 18 public const PENDING = 'pending'; … … 21 21 * The payout has failed. 22 22 * 23 * This is final state.23 * This is a final state. 24 24 */ 25 25 public const FAILED = 'failed'; -
moneroo/tags/v1.7/vendor/symfony/deprecation-contracts/LICENSE
r3031648 r3057581 1 Copyright (c) 2020- 2022Fabien Potencier1 Copyright (c) 2020-present Fabien Potencier 2 2 3 3 Permission is hereby granted, free of charge, to any person obtaining a copy -
moneroo/tags/v1.7/vendor/symfony/deprecation-contracts/README.md
r3031648 r3057581 23 23 `Since symfony/blockchain 8.9: Using "bitcoin" is deprecated, use "fabcoin" instead.` 24 24 25 While not necessarilyrecommended, the deprecation notices can be completely ignored by declaring an empty25 While not recommended, the deprecation notices can be completely ignored by declaring an empty 26 26 `function trigger_deprecation() {}` in your application. -
moneroo/tags/v1.7/vendor/symfony/deprecation-contracts/composer.json
r3031648 r3057581 16 16 ], 17 17 "require": { 18 "php": ">= 7.1"18 "php": ">=8.1" 19 19 }, 20 20 "autoload": { … … 26 26 "extra": { 27 27 "branch-alias": { 28 "dev-main": " 2.5-dev"28 "dev-main": "3.4-dev" 29 29 }, 30 30 "thanks": { -
moneroo/tags/v1.7/vendor/symfony/deprecation-contracts/function.php
r3031648 r3057581 21 21 * @author Nicolas Grekas <p@tchwork.com> 22 22 */ 23 function trigger_deprecation(string $package, string $version, string $message, ...$args): void23 function trigger_deprecation(string $package, string $version, string $message, mixed ...$args): void 24 24 { 25 25 @trigger_error(($package || $version ? "Since $package $version: " : '').($args ? vsprintf($message, $args) : $message), \E_USER_DEPRECATED); -
moneroo/trunk/moneroo-for-woocommerce.php
r3036150 r3057581 11 11 * License: GPLv2 12 12 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 13 * Version: v1. 613 * Version: v1.7 14 14 * Requires at least: 4.9 15 15 * Tested up to: 6.4 -
moneroo/trunk/readme.txt
r3036150 r3057581 5 5 Requires at least: 4.9 6 6 Tested up to: 6.4 7 Stable tag: v1. 67 Stable tag: v1.7 8 8 Requires PHP: 7.4 9 9 License: GPLv3 -
moneroo/trunk/src/Moneroo_WC_Gateway.php
r3036150 r3057581 42 42 public array $moneroo_wc_moneroo_wc_config = []; 43 43 44 public ?string $moneroo_wc_public_key = null;45 46 44 public ?string $moneroo_wc_private_key = null; 47 45 … … 123 121 { 124 122 $this->moneroo = new Payment( 125 $this->moneroo_wc_public_key,126 123 $this->moneroo_wc_private_key, 127 124 ); … … 296 293 private function moneroo_wc_keys_are_set(): bool 297 294 { 298 return ! (empty($this->moneroo_wc_public_key) || empty($this->moneroo_wc_private_key));295 return ! empty($this->moneroo_wc_private_key); 299 296 } 300 297 -
moneroo/trunk/src/Settings/moneroo-settings.php
r3015851 r3057581 33 33 'desc_tip' => true, 34 34 ], 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 ],41 35 'moneroo_wc_private_key' => [ 42 36 'title' => esc_html__('Private KEY', 'moneroo-woocommerce'), -
moneroo/trunk/vendor/autoload.php
r3015851 r3057581 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 3e6bd4960090d1f65ec68d3b1fe76377::getLoader();25 return ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de::getLoader(); -
moneroo/trunk/vendor/composer/autoload_real.php
r3015851 r3057581 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 3e6bd4960090d1f65ec68d3b1fe763775 class ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 3e6bd4960090d1f65ec68d3b1fe76377', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 3e6bd4960090d1f65ec68d3b1fe76377', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit6df2650ccde4d5e3c73ca48b2dafc4de', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 3e6bd4960090d1f65ec68d3b1fe76377::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::getInitializer($loader)); 33 33 34 34 $loader->register(true); 35 35 36 $filesToLoad = \Composer\Autoload\ComposerStaticInit 3e6bd4960090d1f65ec68d3b1fe76377::$files;36 $filesToLoad = \Composer\Autoload\ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$files; 37 37 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { 38 38 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
moneroo/trunk/vendor/composer/autoload_static.php
r3015851 r3057581 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 3e6bd4960090d1f65ec68d3b1fe763777 class ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de 8 8 { 9 9 public static $files = array ( … … 191 191 { 192 192 return \Closure::bind(function () use ($loader) { 193 $loader->prefixLengthsPsr4 = ComposerStaticInit 3e6bd4960090d1f65ec68d3b1fe76377::$prefixLengthsPsr4;194 $loader->prefixDirsPsr4 = ComposerStaticInit 3e6bd4960090d1f65ec68d3b1fe76377::$prefixDirsPsr4;195 $loader->classMap = ComposerStaticInit 3e6bd4960090d1f65ec68d3b1fe76377::$classMap;193 $loader->prefixLengthsPsr4 = ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$prefixLengthsPsr4; 194 $loader->prefixDirsPsr4 = ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$prefixDirsPsr4; 195 $loader->classMap = ComposerStaticInit6df2650ccde4d5e3c73ca48b2dafc4de::$classMap; 196 196 197 197 }, null, ClassLoader::class); -
moneroo/trunk/vendor/composer/installed.json
r3031648 r3057581 337 337 { 338 338 "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", 341 341 "source": { 342 342 "type": "git", 343 343 "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", 350 350 "shasum": "" 351 351 }, … … 364 364 "spatie/ray": "^1.39" 365 365 }, 366 "time": "2024-02-02T22:30:50+00:00", 367 "default-branch": true, 366 "time": "2024-03-21T16:37:09+00:00", 368 367 "type": "library", 369 368 "installation-source": "dist", … … 396 395 "support": { 397 396 "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" 399 398 }, 400 399 "install-path": "../moneroo/moneroo-php" … … 618 617 { 619 618 "name": "symfony/deprecation-contracts", 620 "version": "v 2.5.2",621 "version_normalized": " 2.5.2.0",619 "version": "v3.4.0", 620 "version_normalized": "3.4.0.0", 622 621 "source": { 623 622 "type": "git", 624 623 "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": "202 2-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", 637 636 "type": "library", 638 637 "extra": { 639 638 "branch-alias": { 640 "dev-main": " 2.5-dev"639 "dev-main": "3.4-dev" 641 640 }, 642 641 "thanks": { … … 668 667 "homepage": "https://symfony.com", 669 668 "support": { 670 "source": "https://github.com/symfony/deprecation-contracts/tree/v 2.5.2"669 "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0" 671 670 }, 672 671 "funding": [ -
moneroo/trunk/vendor/composer/installed.php
r3036150 r3057581 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 39 39 ), 40 40 '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', 44 44 'type' => 'library', 45 45 'install_path' => __DIR__ . '/../moneroo/moneroo-php', 46 'aliases' => array( 47 0 => '9999999-dev', 48 ), 46 'aliases' => array(), 49 47 'dev_requirement' => false, 50 48 ), 51 49 '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', 55 53 'type' => 'library', 56 54 'install_path' => __DIR__ . '/../../', … … 113 111 ), 114 112 'symfony/deprecation-contracts' => array( 115 'pretty_version' => 'v 2.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', 118 116 'type' => 'library', 119 117 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', -
moneroo/trunk/vendor/composer/platform_check.php
r3031648 r3057581 5 5 $issues = array(); 6 6 7 if (!(PHP_VERSION_ID >= 70400)) {8 $issues[] = 'Your Composer dependencies require a PHP version ">= 7.4.0". You are running ' . PHP_VERSION . '.';7 if (!(PHP_VERSION_ID >= 80100)) { 8 $issues[] = 'Your Composer dependencies require a PHP version ">= 8.1.0". You are running ' . PHP_VERSION . '.'; 9 9 } 10 10 -
moneroo/trunk/vendor/moneroo/moneroo-php/src/Configs/Config.php
r3015851 r3057581 9 9 public const BASE_URL = 'https://api.moneroo.io/v1'; 10 10 11 public const TIMEOUT = 5;11 public const TIMEOUT = 30; 12 12 } -
moneroo/trunk/vendor/moneroo/moneroo-php/src/Moneroo.php
r3015851 r3057581 26 26 27 27 public function __construct( 28 string $publicKey,29 28 string $secretKey, 30 29 bool $devMode = false, 31 30 string $baseUrl = Config::BASE_URL 32 31 ) { 33 $this->publicKey = $publicKey;34 32 $this->secretKey = $secretKey; 35 33 … … 38 36 : Config::BASE_URL; 39 37 40 if (empty($this->publicKey)) {41 throw new InvalidPayloadException('Public key is not set or not a string.');42 }43 44 38 if (empty($this->secretKey)) { 45 39 throw new InvalidPayloadException('Secret key is not set or not a string.'); -
moneroo/trunk/vendor/moneroo/moneroo-php/src/Payment/Status.php
r3015851 r3057581 7 7 /** 8 8 * The payment has been initiated. 9 * This is transactional state and will change.9 * This is a transactional state and will change. 10 10 */ 11 11 public const INITIATED = 'initiated'; … … 13 13 /** 14 14 * The payment is pending. 15 * This is transactional state and will change.15 * This is a transactional state and will change. 16 16 */ 17 17 public const PENDING = 'pending'; … … 19 19 /** 20 20 * The payment has failed. 21 * This is final state.21 * This is a final state. 22 22 */ 23 23 public const FAILED = 'failed'; 24 24 25 25 /** 26 * The payment has been cancelled.27 * This is final state.26 * The payment has been a success. 27 * This is a final state. 28 28 */ 29 29 public const SUCCESS = 'success'; 30 30 31 31 /** 32 * The payment has been cancelled by user or abandoned ( 10minutes after initiated state).32 * The payment has been cancelled by user or abandoned (5 minutes after initiated state). 33 33 * Should be treated as a failed payment. 34 * This is final state.34 * This is a final state. 35 35 */ 36 36 public const CANCELLED = 'cancelled'; -
moneroo/trunk/vendor/moneroo/moneroo-php/src/Payout/Status.php
r3015851 r3057581 7 7 /** 8 8 * The payout has been initiated. 9 * This is transactional state and will change.9 * This is a transactional state and will change. 10 10 */ 11 11 public const INITIATED = 'initiated'; … … 14 14 * The payout is pending, waiting for confirmation from PSP. 15 15 * 16 * This is transactional state and will change.16 * This is a transactional state and will change. 17 17 */ 18 18 public const PENDING = 'pending'; … … 21 21 * The payout has failed. 22 22 * 23 * This is final state.23 * This is a final state. 24 24 */ 25 25 public const FAILED = 'failed'; -
moneroo/trunk/vendor/symfony/deprecation-contracts/LICENSE
r3031648 r3057581 1 Copyright (c) 2020- 2022Fabien Potencier1 Copyright (c) 2020-present Fabien Potencier 2 2 3 3 Permission is hereby granted, free of charge, to any person obtaining a copy -
moneroo/trunk/vendor/symfony/deprecation-contracts/README.md
r3031648 r3057581 23 23 `Since symfony/blockchain 8.9: Using "bitcoin" is deprecated, use "fabcoin" instead.` 24 24 25 While not necessarilyrecommended, the deprecation notices can be completely ignored by declaring an empty25 While not recommended, the deprecation notices can be completely ignored by declaring an empty 26 26 `function trigger_deprecation() {}` in your application. -
moneroo/trunk/vendor/symfony/deprecation-contracts/composer.json
r3031648 r3057581 16 16 ], 17 17 "require": { 18 "php": ">= 7.1"18 "php": ">=8.1" 19 19 }, 20 20 "autoload": { … … 26 26 "extra": { 27 27 "branch-alias": { 28 "dev-main": " 2.5-dev"28 "dev-main": "3.4-dev" 29 29 }, 30 30 "thanks": { -
moneroo/trunk/vendor/symfony/deprecation-contracts/function.php
r3031648 r3057581 21 21 * @author Nicolas Grekas <p@tchwork.com> 22 22 */ 23 function trigger_deprecation(string $package, string $version, string $message, ...$args): void23 function trigger_deprecation(string $package, string $version, string $message, mixed ...$args): void 24 24 { 25 25 @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.