Changeset 3286897
- Timestamp:
- 05/03/2025 05:32:05 PM (11 months ago)
- Location:
- wpbr-payuni-payment
- Files:
-
- 4 added
- 22 edited
- 1 copied
-
tags/1.7.0 (copied) (copied from wpbr-payuni-payment/trunk)
-
tags/1.7.0/assets/js/scripts.js (modified) (1 diff)
-
tags/1.7.0/includes/settings/CreditUnionPay.php (added)
-
tags/1.7.0/readme.txt (modified) (2 diffs)
-
tags/1.7.0/src/Api/PaymentRequest.php (modified) (1 diff)
-
tags/1.7.0/src/Gateways/CreditUnionPay.php (added)
-
tags/1.7.0/src/Gateways/GatewayBase.php (modified) (1 diff)
-
tags/1.7.0/src/PayuniPayment.php (modified) (2 diffs)
-
tags/1.7.0/vendor/autoload.php (modified) (1 diff)
-
tags/1.7.0/vendor/composer/InstalledVersions.php (modified) (5 diffs)
-
tags/1.7.0/vendor/composer/autoload_classmap.php (modified) (1 diff)
-
tags/1.7.0/vendor/composer/autoload_static.php (modified) (1 diff)
-
tags/1.7.0/vendor/composer/installed.php (modified) (2 diffs)
-
tags/1.7.0/wpbr-payuni-payment.php (modified) (2 diffs)
-
trunk/assets/js/scripts.js (modified) (1 diff)
-
trunk/includes/settings/CreditUnionPay.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Api/PaymentRequest.php (modified) (1 diff)
-
trunk/src/Gateways/CreditUnionPay.php (added)
-
trunk/src/Gateways/GatewayBase.php (modified) (1 diff)
-
trunk/src/PayuniPayment.php (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/InstalledVersions.php (modified) (5 diffs)
-
trunk/vendor/composer/autoload_classmap.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_static.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/wpbr-payuni-payment.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpbr-payuni-payment/tags/1.7.0/assets/js/scripts.js
r3131276 r3286897 1 jQuery(function ($) {1 document.addEventListener('DOMContentLoaded', function() { 2 2 'use strict'; 3 3 4 document.getElementById('payuni-form').submit(); 5 4 const payuniForm = document.getElementById('payuni-form'); 5 if (payuniForm) { 6 payuniForm.submit(); 7 } 6 8 }); -
wpbr-payuni-payment/tags/1.7.0/readme.txt
r3190716 r3286897 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.4 7 Stable tag: 1. 6.47 Stable tag: 1.7.0 8 8 License: GPLv2 or later. 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 59 59 60 60 == Changelog == 61 62 = 1.7.0 - 2025/05/04 = 63 64 * ADD - Support UnionPay 65 * FIX - Javascript error on checkout page 61 66 62 67 = 1.6.4 - 2024/11/18 = -
wpbr-payuni-payment/tags/1.7.0/src/Api/PaymentRequest.php
r3136477 r3286897 61 61 $encrypt_info['TradeInvoice'] = 1; 62 62 } 63 64 $encrypt_info = apply_filters( 'payuni_upp_transaction_args_data', $encrypt_info, $order ); 63 65 64 66 PayuniPayment::log( 'request encrypt info:' . wc_print_r( $encrypt_info, true ) ); -
wpbr-payuni-payment/tags/1.7.0/src/Gateways/GatewayBase.php
r3166905 r3286897 103 103 104 104 $this->api_url = ( $this->testmode ) ? 'https://sandbox-api.payuni.com.tw/api/upp' : 'https://api.payuni.com.tw/api/upp'; 105 $this->notify_url = add_query_arg( 'wc-api', 'payuni_payment', home_url( '/' ));106 $this->return_url = add_query_arg( 'wc-api', 'payuni_return', home_url( '/' ));105 $this->notify_url = WC()->api_request_url( 'payuni_payment' ); 106 $this->return_url = WC()->api_request_url( 'payuni_return' ); 107 107 108 108 add_action( 'woocommerce_order_details_after_order_table', array( $this, 'payuni_payment_detail_after_order_table' ), 10, 1 ); -
wpbr-payuni-payment/tags/1.7.0/src/PayuniPayment.php
r3190716 r3286897 18 18 use WPBrewer\Payuni\Payment\Gateways\CreditInstallment24; 19 19 use WPBrewer\Payuni\Payment\Gateways\CreditInstallment30; 20 use WPBrewer\Payuni\Payment\Gateways\CreditUnionPay; 20 21 use WPBrewer\Payuni\Payment\Gateways\Cvs; 21 22 use WPBrewer\Payuni\Payment\Gateways\GooglePay; … … 139 140 140 141 self::$allowed_payments = array( 141 Credit::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Credit', 142 Cvs::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Cvs', 143 Atm::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Atm', 144 Aftee::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Aftee', 145 ApplePay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\ApplePay', 146 GooglePay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\GooglePay', 147 SamsungPay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\SamsungPay', 148 LinePay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\LinePay', 142 Credit::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Credit', 143 Cvs::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Cvs', 144 Atm::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Atm', 145 Aftee::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Aftee', 146 ApplePay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\ApplePay', 147 GooglePay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\GooglePay', 148 SamsungPay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\SamsungPay', 149 LinePay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\LinePay', 150 CreditUnionPay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\CreditUnionPay', 149 151 ); 150 152 -
wpbr-payuni-payment/tags/1.7.0/vendor/autoload.php
r3131276 r3286897 15 15 } 16 16 } 17 trigger_error( 18 $err, 19 E_USER_ERROR 20 ); 17 throw new RuntimeException($err); 21 18 } 22 19 -
wpbr-payuni-payment/tags/1.7.0/vendor/composer/InstalledVersions.php
r3131276 r3286897 28 28 { 29 29 /** 30 * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to 31 * @internal 32 */ 33 private static $selfDir = null; 34 35 /** 30 36 * @var mixed[]|null 31 37 * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null 32 38 */ 33 39 private static $installed; 40 41 /** 42 * @var bool 43 */ 44 private static $installedIsLocalDir; 34 45 35 46 /** … … 310 321 self::$installed = $data; 311 322 self::$installedByVendor = array(); 323 324 // when using reload, we disable the duplicate protection to ensure that self::$installed data is 325 // always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not, 326 // so we have to assume it does not, and that may result in duplicate data being returned when listing 327 // all installed packages for example 328 self::$installedIsLocalDir = false; 329 } 330 331 /** 332 * @return string 333 */ 334 private static function getSelfDir() 335 { 336 if (self::$selfDir === null) { 337 self::$selfDir = strtr(__DIR__, '\\', '/'); 338 } 339 340 return self::$selfDir; 312 341 } 313 342 … … 323 352 324 353 $installed = array(); 354 $copiedLocalDir = false; 325 355 326 356 if (self::$canGetVendors) { 357 $selfDir = self::getSelfDir(); 327 358 foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { 359 $vendorDir = strtr($vendorDir, '\\', '/'); 328 360 if (isset(self::$installedByVendor[$vendorDir])) { 329 361 $installed[] = self::$installedByVendor[$vendorDir]; … … 331 363 /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */ 332 364 $required = require $vendorDir.'/composer/installed.php'; 333 $installed[] = self::$installedByVendor[$vendorDir] = $required; 334 if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { 335 self::$installed = $installed[count($installed) - 1]; 365 self::$installedByVendor[$vendorDir] = $required; 366 $installed[] = $required; 367 if (self::$installed === null && $vendorDir.'/composer' === $selfDir) { 368 self::$installed = $required; 369 self::$installedIsLocalDir = true; 336 370 } 371 } 372 if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) { 373 $copiedLocalDir = true; 337 374 } 338 375 } … … 351 388 } 352 389 353 if (self::$installed !== array() ) {390 if (self::$installed !== array() && !$copiedLocalDir) { 354 391 $installed[] = self::$installed; 355 392 } -
wpbr-payuni-payment/tags/1.7.0/vendor/composer/autoload_classmap.php
r3166905 r3286897 23 23 'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment6' => $baseDir . '/src/Gateways/CreditInstallment6.php', 24 24 'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment9' => $baseDir . '/src/Gateways/CreditInstallment9.php', 25 'WPBrewer\\Payuni\\Payment\\Gateways\\CreditUnionPay' => $baseDir . '/src/Gateways/CreditUnionPay.php', 25 26 'WPBrewer\\Payuni\\Payment\\Gateways\\Cvs' => $baseDir . '/src/Gateways/Cvs.php', 26 27 'WPBrewer\\Payuni\\Payment\\Gateways\\GatewayBase' => $baseDir . '/src/Gateways/GatewayBase.php', -
wpbr-payuni-payment/tags/1.7.0/vendor/composer/autoload_static.php
r3166905 r3286897 38 38 'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment6' => __DIR__ . '/../..' . '/src/Gateways/CreditInstallment6.php', 39 39 'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment9' => __DIR__ . '/../..' . '/src/Gateways/CreditInstallment9.php', 40 'WPBrewer\\Payuni\\Payment\\Gateways\\CreditUnionPay' => __DIR__ . '/../..' . '/src/Gateways/CreditUnionPay.php', 40 41 'WPBrewer\\Payuni\\Payment\\Gateways\\Cvs' => __DIR__ . '/../..' . '/src/Gateways/Cvs.php', 41 42 'WPBrewer\\Payuni\\Payment\\Gateways\\GatewayBase' => __DIR__ . '/../..' . '/src/Gateways/GatewayBase.php', -
wpbr-payuni-payment/tags/1.7.0/vendor/composer/installed.php
r3190716 r3286897 2 2 'root' => array( 3 3 'name' => 'wpbrewer/wpbr-payuni-payment', 4 'pretty_version' => '1. 6.4',5 'version' => '1. 6.4.0',6 'reference' => ' 4ec8cc13d01dbec4e7b13f7bbffe0b52a1ebd6c9',4 'pretty_version' => '1.7.0', 5 'version' => '1.7.0.0', 6 'reference' => '059b8119e2b66e3cc09cc1cabfaf7d261f857f33', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'wpbrewer/wpbr-payuni-payment' => array( 14 'pretty_version' => '1. 6.4',15 'version' => '1. 6.4.0',16 'reference' => ' 4ec8cc13d01dbec4e7b13f7bbffe0b52a1ebd6c9',14 'pretty_version' => '1.7.0', 15 'version' => '1.7.0.0', 16 'reference' => '059b8119e2b66e3cc09cc1cabfaf7d261f857f33', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
wpbr-payuni-payment/tags/1.7.0/wpbr-payuni-payment.php
r3190716 r3286897 9 9 * Description: Provides PAYUNi UPP(UNiPaypage) Payment for WooCommerce. 10 10 * Plugin URI: https://wpbrewer.com/product/wpbr-payuni-payment 11 * Version: 1. 6.411 * Version: 1.7.0 12 12 * Author: WPBrewer 13 13 * Author URI: https://wpbrewer.com/ … … 28 28 define( 'WPBR_PAYUNI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 29 29 define( 'WPBR_PAYUNI_BASENAME', plugin_basename( __FILE__ ) ); 30 define( 'WPBR_PAYUNI_PAYMENT_VERSION', '1. 6.4' );30 define( 'WPBR_PAYUNI_PAYMENT_VERSION', '1.7.0' ); 31 31 32 32 require_once WPBR_PAYUNI_PLUGIN_DIR . 'vendor/autoload.php'; -
wpbr-payuni-payment/trunk/assets/js/scripts.js
r3131276 r3286897 1 jQuery(function ($) {1 document.addEventListener('DOMContentLoaded', function() { 2 2 'use strict'; 3 3 4 document.getElementById('payuni-form').submit(); 5 4 const payuniForm = document.getElementById('payuni-form'); 5 if (payuniForm) { 6 payuniForm.submit(); 7 } 6 8 }); -
wpbr-payuni-payment/trunk/readme.txt
r3190716 r3286897 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.4 7 Stable tag: 1. 6.47 Stable tag: 1.7.0 8 8 License: GPLv2 or later. 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 59 59 60 60 == Changelog == 61 62 = 1.7.0 - 2025/05/04 = 63 64 * ADD - Support UnionPay 65 * FIX - Javascript error on checkout page 61 66 62 67 = 1.6.4 - 2024/11/18 = -
wpbr-payuni-payment/trunk/src/Api/PaymentRequest.php
r3136477 r3286897 61 61 $encrypt_info['TradeInvoice'] = 1; 62 62 } 63 64 $encrypt_info = apply_filters( 'payuni_upp_transaction_args_data', $encrypt_info, $order ); 63 65 64 66 PayuniPayment::log( 'request encrypt info:' . wc_print_r( $encrypt_info, true ) ); -
wpbr-payuni-payment/trunk/src/Gateways/GatewayBase.php
r3166905 r3286897 103 103 104 104 $this->api_url = ( $this->testmode ) ? 'https://sandbox-api.payuni.com.tw/api/upp' : 'https://api.payuni.com.tw/api/upp'; 105 $this->notify_url = add_query_arg( 'wc-api', 'payuni_payment', home_url( '/' ));106 $this->return_url = add_query_arg( 'wc-api', 'payuni_return', home_url( '/' ));105 $this->notify_url = WC()->api_request_url( 'payuni_payment' ); 106 $this->return_url = WC()->api_request_url( 'payuni_return' ); 107 107 108 108 add_action( 'woocommerce_order_details_after_order_table', array( $this, 'payuni_payment_detail_after_order_table' ), 10, 1 ); -
wpbr-payuni-payment/trunk/src/PayuniPayment.php
r3190716 r3286897 18 18 use WPBrewer\Payuni\Payment\Gateways\CreditInstallment24; 19 19 use WPBrewer\Payuni\Payment\Gateways\CreditInstallment30; 20 use WPBrewer\Payuni\Payment\Gateways\CreditUnionPay; 20 21 use WPBrewer\Payuni\Payment\Gateways\Cvs; 21 22 use WPBrewer\Payuni\Payment\Gateways\GooglePay; … … 139 140 140 141 self::$allowed_payments = array( 141 Credit::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Credit', 142 Cvs::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Cvs', 143 Atm::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Atm', 144 Aftee::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Aftee', 145 ApplePay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\ApplePay', 146 GooglePay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\GooglePay', 147 SamsungPay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\SamsungPay', 148 LinePay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\LinePay', 142 Credit::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Credit', 143 Cvs::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Cvs', 144 Atm::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Atm', 145 Aftee::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\Aftee', 146 ApplePay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\ApplePay', 147 GooglePay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\GooglePay', 148 SamsungPay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\SamsungPay', 149 LinePay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\LinePay', 150 CreditUnionPay::GATEWAY_ID => '\WPBrewer\Payuni\Payment\Gateways\CreditUnionPay', 149 151 ); 150 152 -
wpbr-payuni-payment/trunk/vendor/autoload.php
r3131276 r3286897 15 15 } 16 16 } 17 trigger_error( 18 $err, 19 E_USER_ERROR 20 ); 17 throw new RuntimeException($err); 21 18 } 22 19 -
wpbr-payuni-payment/trunk/vendor/composer/InstalledVersions.php
r3131276 r3286897 28 28 { 29 29 /** 30 * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to 31 * @internal 32 */ 33 private static $selfDir = null; 34 35 /** 30 36 * @var mixed[]|null 31 37 * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null 32 38 */ 33 39 private static $installed; 40 41 /** 42 * @var bool 43 */ 44 private static $installedIsLocalDir; 34 45 35 46 /** … … 310 321 self::$installed = $data; 311 322 self::$installedByVendor = array(); 323 324 // when using reload, we disable the duplicate protection to ensure that self::$installed data is 325 // always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not, 326 // so we have to assume it does not, and that may result in duplicate data being returned when listing 327 // all installed packages for example 328 self::$installedIsLocalDir = false; 329 } 330 331 /** 332 * @return string 333 */ 334 private static function getSelfDir() 335 { 336 if (self::$selfDir === null) { 337 self::$selfDir = strtr(__DIR__, '\\', '/'); 338 } 339 340 return self::$selfDir; 312 341 } 313 342 … … 323 352 324 353 $installed = array(); 354 $copiedLocalDir = false; 325 355 326 356 if (self::$canGetVendors) { 357 $selfDir = self::getSelfDir(); 327 358 foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { 359 $vendorDir = strtr($vendorDir, '\\', '/'); 328 360 if (isset(self::$installedByVendor[$vendorDir])) { 329 361 $installed[] = self::$installedByVendor[$vendorDir]; … … 331 363 /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */ 332 364 $required = require $vendorDir.'/composer/installed.php'; 333 $installed[] = self::$installedByVendor[$vendorDir] = $required; 334 if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { 335 self::$installed = $installed[count($installed) - 1]; 365 self::$installedByVendor[$vendorDir] = $required; 366 $installed[] = $required; 367 if (self::$installed === null && $vendorDir.'/composer' === $selfDir) { 368 self::$installed = $required; 369 self::$installedIsLocalDir = true; 336 370 } 371 } 372 if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) { 373 $copiedLocalDir = true; 337 374 } 338 375 } … … 351 388 } 352 389 353 if (self::$installed !== array() ) {390 if (self::$installed !== array() && !$copiedLocalDir) { 354 391 $installed[] = self::$installed; 355 392 } -
wpbr-payuni-payment/trunk/vendor/composer/autoload_classmap.php
r3166905 r3286897 23 23 'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment6' => $baseDir . '/src/Gateways/CreditInstallment6.php', 24 24 'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment9' => $baseDir . '/src/Gateways/CreditInstallment9.php', 25 'WPBrewer\\Payuni\\Payment\\Gateways\\CreditUnionPay' => $baseDir . '/src/Gateways/CreditUnionPay.php', 25 26 'WPBrewer\\Payuni\\Payment\\Gateways\\Cvs' => $baseDir . '/src/Gateways/Cvs.php', 26 27 'WPBrewer\\Payuni\\Payment\\Gateways\\GatewayBase' => $baseDir . '/src/Gateways/GatewayBase.php', -
wpbr-payuni-payment/trunk/vendor/composer/autoload_static.php
r3166905 r3286897 38 38 'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment6' => __DIR__ . '/../..' . '/src/Gateways/CreditInstallment6.php', 39 39 'WPBrewer\\Payuni\\Payment\\Gateways\\CreditInstallment9' => __DIR__ . '/../..' . '/src/Gateways/CreditInstallment9.php', 40 'WPBrewer\\Payuni\\Payment\\Gateways\\CreditUnionPay' => __DIR__ . '/../..' . '/src/Gateways/CreditUnionPay.php', 40 41 'WPBrewer\\Payuni\\Payment\\Gateways\\Cvs' => __DIR__ . '/../..' . '/src/Gateways/Cvs.php', 41 42 'WPBrewer\\Payuni\\Payment\\Gateways\\GatewayBase' => __DIR__ . '/../..' . '/src/Gateways/GatewayBase.php', -
wpbr-payuni-payment/trunk/vendor/composer/installed.php
r3190716 r3286897 2 2 'root' => array( 3 3 'name' => 'wpbrewer/wpbr-payuni-payment', 4 'pretty_version' => '1. 6.4',5 'version' => '1. 6.4.0',6 'reference' => ' 4ec8cc13d01dbec4e7b13f7bbffe0b52a1ebd6c9',4 'pretty_version' => '1.7.0', 5 'version' => '1.7.0.0', 6 'reference' => '059b8119e2b66e3cc09cc1cabfaf7d261f857f33', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'wpbrewer/wpbr-payuni-payment' => array( 14 'pretty_version' => '1. 6.4',15 'version' => '1. 6.4.0',16 'reference' => ' 4ec8cc13d01dbec4e7b13f7bbffe0b52a1ebd6c9',14 'pretty_version' => '1.7.0', 15 'version' => '1.7.0.0', 16 'reference' => '059b8119e2b66e3cc09cc1cabfaf7d261f857f33', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
wpbr-payuni-payment/trunk/wpbr-payuni-payment.php
r3190716 r3286897 9 9 * Description: Provides PAYUNi UPP(UNiPaypage) Payment for WooCommerce. 10 10 * Plugin URI: https://wpbrewer.com/product/wpbr-payuni-payment 11 * Version: 1. 6.411 * Version: 1.7.0 12 12 * Author: WPBrewer 13 13 * Author URI: https://wpbrewer.com/ … … 28 28 define( 'WPBR_PAYUNI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 29 29 define( 'WPBR_PAYUNI_BASENAME', plugin_basename( __FILE__ ) ); 30 define( 'WPBR_PAYUNI_PAYMENT_VERSION', '1. 6.4' );30 define( 'WPBR_PAYUNI_PAYMENT_VERSION', '1.7.0' ); 31 31 32 32 require_once WPBR_PAYUNI_PLUGIN_DIR . 'vendor/autoload.php';
Note: See TracChangeset
for help on using the changeset viewer.