Changeset 2707859
- Timestamp:
- 04/11/2022 08:03:54 AM (4 years ago)
- Location:
- smartpay
- Files:
-
- 20 edited
- 1 copied
-
tags/2.6.5 (copied) (copied from smartpay/trunk)
-
tags/2.6.5/app/Activator.php (modified) (2 diffs)
-
tags/2.6.5/app/Updater.php (modified) (3 diffs)
-
tags/2.6.5/database/migrations/add_settings_column_on_products_table.php (modified) (1 diff)
-
tags/2.6.5/readme.txt (modified) (2 diffs)
-
tags/2.6.5/resources/views/mail/payment-receipt/product-purchase.php (modified) (1 diff)
-
tags/2.6.5/smartpay.php (modified) (2 diffs)
-
tags/2.6.5/vendor/autoload.php (modified) (1 diff)
-
tags/2.6.5/vendor/composer/autoload_real.php (modified) (3 diffs)
-
tags/2.6.5/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/2.6.5/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/app/Activator.php (modified) (2 diffs)
-
trunk/app/Updater.php (modified) (3 diffs)
-
trunk/database/migrations/add_settings_column_on_products_table.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/resources/views/mail/payment-receipt/product-purchase.php (modified) (1 diff)
-
trunk/smartpay.php (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smartpay/tags/2.6.5/app/Activator.php
r2633882 r2707859 10 10 { 11 11 public $upload; 12 /** 13 * if any changes/updates on database 14 * update the database version 15 * @var $db_version 16 */ 17 private const SMARTPAY_DB_VERSION = '2.0'; 18 12 19 public function __construct() 13 20 { … … 137 144 138 145 update_option('smartpay_settings', array_merge($smartpay_settings, $options)); 146 147 // set the db version to option table 148 if (is_null(get_option( 'smartpay_db_version'))){ 149 add_option('smartpay_db_version', self::SMARTPAY_DB_VERSION); 150 } else { 151 update_option('smartpay_db_version', self::SMARTPAY_DB_VERSION); 152 } 153 139 154 } 140 155 -
smartpay/tags/2.6.5/app/Updater.php
r2703855 r2707859 6 6 class Updater 7 7 { 8 private const SMARTPAY_CURRENT_DB_VERSION = '1.1';9 private const SMARTPAY_NEW_DB_VERSION = '1.2';10 8 public function __construct() 11 9 { 12 $this->_set_smartpay_db_version();13 10 // if needed to update/add new table or column 14 11 $this->_update_database_if_available(); … … 24 21 } 25 22 26 public function _set_smartpay_db_version()27 {28 // after adding the migration on database, should set the db version into wp options table29 // that will help us to compare with previous version30 $smartpay_db_version =get_option( 'smartpay_db_version') ?? null;31 if (!$smartpay_db_version){32 add_option('smartpay_db_version', self::SMARTPAY_CURRENT_DB_VERSION);33 }34 }35 36 23 /** 37 24 * do staff, when add/update previous database … … 40 27 public function _update_database_if_available() 41 28 { 42 // update tables when plugin updating 43 //first add the version to wp_options table 44 $oldVersion = get_option( 'smartpay_db_version') ?? null; 45 // FIXME: should check with version compare 46 if (floatval($oldVersion) < floatval(self::SMARTPAY_NEW_DB_VERSION)) { 47 \AddSettingsColumnOnProductTable::up(); 48 update_option('smartpay_db_version', self::SMARTPAY_NEW_DB_VERSION); 49 } 29 \AddSettingsColumnOnProductTable::up(); 50 30 } 51 31 } -
smartpay/tags/2.6.5/database/migrations/add_settings_column_on_products_table.php
r2703855 r2707859 17 17 */ 18 18 $table = $wpdb->prefix . 'smartpay_products'; 19 $dbName = $wpdb->dbname; 19 20 20 21 // check the settings column exist on products table 21 $row = $wpdb->get_results("SELECT settings FROM INFORMATION_SCHEMA.COLUMNS WHERE $table = $table AND column_name = 'settings'"); 22 $row = $wpdb->get_results(" 23 SELECT COLUMN_NAME 24 FROM INFORMATION_SCHEMA.COLUMNS 25 WHERE TABLE_SCHEMA = '$dbName' AND 26 TABLE_NAME = '$table' AND 27 COLUMN_NAME = 'settings' 28 "); 22 29 23 30 // if no row found then create a new column on the products table -
smartpay/tags/2.6.5/readme.txt
r2703855 r2707859 3 3 Tags: download manager, digital product, donation, ecommerce, stripe, paypal, paddle, document manager, file manager, download protection, recurring payment, donations, donation plugin, wordpress donation plugin, wp donation, fundraising, fundraiser, crowdfunding, wordpress donations, gutenberg, gutenberg donations, nonprofit, paypal donations, paypal donate, stripe donations, stripe donate, authorize.net, authorize.net donations, bkash, bkash payment, 4 4 Requires at least: 4.9 5 Tested up to: 5.9. 15 Tested up to: 5.9.3 6 6 Requires PHP: 7.4.0 7 Stable Tag: 2.6. 47 Stable Tag: 2.6.5 8 8 License: GNU Version 2 or later 9 9 … … 117 117 118 118 == Changelog == 119 = [2.6.5] = 120 * Fix - Failed to create product 121 119 122 = [2.6.4] = 120 123 * New - Pay Now/Get it Now button text change option on form -
smartpay/tags/2.6.5/resources/views/mail/payment-receipt/product-purchase.php
r2659357 r2707859 235 235 <div style="background-color: #d4d5d6; height: 1px; line-height: 1px"> </div> 236 236 <div class="sm-leading-16" style="line-height: 32px">‌</div> 237 <p style="font-size: 14px; line-height: 20px; margin: 0; color: #a0a6b0"><?php echo __('You get this email because you sign up or purchase sometingat ', 'smartpay') . get_bloginfo('name'); ?></p>237 <p style="font-size: 14px; line-height: 20px; margin: 0; color: #a0a6b0"><?php echo __('You have received this email because you signed up, donated or made a transaction at ', 'smartpay') . get_bloginfo('name'); ?></p> 238 238 <div class="sm-leading-16" style="line-height: 32px">‌</div> 239 239 </td> -
smartpay/tags/2.6.5/smartpay.php
r2703855 r2707859 6 6 * Plugin URI: https://wpsmartpay.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash 7 7 * Tags: download manager, digital product, donation, ecommerce, paddle, stripe, paypal, document manager, file manager, download protection, recurring payment, donations, donation plugin, wordpress donation plugin, wp donation, fundraising, fundraiser, crowdfunding, wordpress donations, gutenberg, gutenberg donations, nonprofit, paypal donations, paypal donate, stripe donations, stripe donate, authorize.net, authorize.net donations, bkash, bkash payment, 8 * Version: 2.6. 48 * Version: 2.6.5 9 9 * Author: WPSmartPay 10 10 * Author URI: https://wpsmartpay.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash … … 28 28 defined('ABSPATH') || exit; 29 29 30 define('SMARTPAY_VERSION', '2.6. 4');30 define('SMARTPAY_VERSION', '2.6.5'); 31 31 define('SMARTPAY_PLUGIN_FILE', __FILE__); 32 32 define('SMARTPAY_PLUGIN_ASSETS', plugins_url('public', __FILE__)); -
smartpay/tags/2.6.5/vendor/autoload.php
r2703855 r2707859 3 3 // autoload.php @generated by Composer 4 4 5 if (PHP_VERSION_ID < 50600) { 6 echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; 7 exit(1); 8 } 9 5 10 require_once __DIR__ . '/composer/autoload_real.php'; 6 11 7 return ComposerAutoloaderInit 35ba30bea8d3c3621d960c30e9882154::getLoader();12 return ComposerAutoloaderInit8d1fdce8fbb584cc0b42403cdd170a75::getLoader(); -
smartpay/tags/2.6.5/vendor/composer/autoload_real.php
r2703855 r2707859 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 35ba30bea8d3c3621d960c30e98821545 class ComposerAutoloaderInit8d1fdce8fbb584cc0b42403cdd170a75 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 35ba30bea8d3c3621d960c30e9882154', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit8d1fdce8fbb584cc0b42403cdd170a75', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 35ba30bea8d3c3621d960c30e9882154', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit8d1fdce8fbb584cc0b42403cdd170a75', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 \Composer\Autoload\ComposerStaticInit35ba30bea8d3c3621d960c30e9882154::getInitializer($loader)();32 call_user_func(\Composer\Autoload\ComposerStaticInit8d1fdce8fbb584cc0b42403cdd170a75::getInitializer($loader)); 33 33 34 34 $loader->register(true); 35 35 36 $includeFiles = \Composer\Autoload\ComposerStaticInit 35ba30bea8d3c3621d960c30e9882154::$files;36 $includeFiles = \Composer\Autoload\ComposerStaticInit8d1fdce8fbb584cc0b42403cdd170a75::$files; 37 37 foreach ($includeFiles as $fileIdentifier => $file) { 38 composerRequire 35ba30bea8d3c3621d960c30e9882154($fileIdentifier, $file);38 composerRequire8d1fdce8fbb584cc0b42403cdd170a75($fileIdentifier, $file); 39 39 } 40 40 … … 48 48 * @return void 49 49 */ 50 function composerRequire 35ba30bea8d3c3621d960c30e9882154($fileIdentifier, $file)50 function composerRequire8d1fdce8fbb584cc0b42403cdd170a75($fileIdentifier, $file) 51 51 { 52 52 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
smartpay/tags/2.6.5/vendor/composer/autoload_static.php
r2703855 r2707859 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 35ba30bea8d3c3621d960c30e98821547 class ComposerStaticInit8d1fdce8fbb584cc0b42403cdd170a75 8 8 { 9 9 public static $files = array ( … … 75 75 { 76 76 return \Closure::bind(function () use ($loader) { 77 $loader->prefixLengthsPsr4 = ComposerStaticInit 35ba30bea8d3c3621d960c30e9882154::$prefixLengthsPsr4;78 $loader->prefixDirsPsr4 = ComposerStaticInit 35ba30bea8d3c3621d960c30e9882154::$prefixDirsPsr4;79 $loader->classMap = ComposerStaticInit 35ba30bea8d3c3621d960c30e9882154::$classMap;77 $loader->prefixLengthsPsr4 = ComposerStaticInit8d1fdce8fbb584cc0b42403cdd170a75::$prefixLengthsPsr4; 78 $loader->prefixDirsPsr4 = ComposerStaticInit8d1fdce8fbb584cc0b42403cdd170a75::$prefixDirsPsr4; 79 $loader->classMap = ComposerStaticInit8d1fdce8fbb584cc0b42403cdd170a75::$classMap; 80 80 81 81 }, null, ClassLoader::class); -
smartpay/tags/2.6.5/vendor/composer/installed.php
r2703855 r2707859 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => 'v2.6. 4',4 'version' => '2.6. 4.0',3 'pretty_version' => 'v2.6.5', 4 'version' => '2.6.5.0', 5 5 'type' => 'library', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 0a9c91f906b8e2704a18171cc1341bc44c03bd58',8 'reference' => 'c4b1b1765c71ee6f9af4576ee62e36ce08ecf290', 9 9 'name' => 'wp-smartpay/core', 10 10 'dev' => false, … … 57 57 ), 58 58 'wp-smartpay/core' => array( 59 'pretty_version' => 'v2.6. 4',60 'version' => '2.6. 4.0',59 'pretty_version' => 'v2.6.5', 60 'version' => '2.6.5.0', 61 61 'type' => 'library', 62 62 'install_path' => __DIR__ . '/../../', 63 63 'aliases' => array(), 64 'reference' => ' 0a9c91f906b8e2704a18171cc1341bc44c03bd58',64 'reference' => 'c4b1b1765c71ee6f9af4576ee62e36ce08ecf290', 65 65 'dev_requirement' => false, 66 66 ), -
smartpay/trunk/app/Activator.php
r2633882 r2707859 10 10 { 11 11 public $upload; 12 /** 13 * if any changes/updates on database 14 * update the database version 15 * @var $db_version 16 */ 17 private const SMARTPAY_DB_VERSION = '2.0'; 18 12 19 public function __construct() 13 20 { … … 137 144 138 145 update_option('smartpay_settings', array_merge($smartpay_settings, $options)); 146 147 // set the db version to option table 148 if (is_null(get_option( 'smartpay_db_version'))){ 149 add_option('smartpay_db_version', self::SMARTPAY_DB_VERSION); 150 } else { 151 update_option('smartpay_db_version', self::SMARTPAY_DB_VERSION); 152 } 153 139 154 } 140 155 -
smartpay/trunk/app/Updater.php
r2703855 r2707859 6 6 class Updater 7 7 { 8 private const SMARTPAY_CURRENT_DB_VERSION = '1.1';9 private const SMARTPAY_NEW_DB_VERSION = '1.2';10 8 public function __construct() 11 9 { 12 $this->_set_smartpay_db_version();13 10 // if needed to update/add new table or column 14 11 $this->_update_database_if_available(); … … 24 21 } 25 22 26 public function _set_smartpay_db_version()27 {28 // after adding the migration on database, should set the db version into wp options table29 // that will help us to compare with previous version30 $smartpay_db_version =get_option( 'smartpay_db_version') ?? null;31 if (!$smartpay_db_version){32 add_option('smartpay_db_version', self::SMARTPAY_CURRENT_DB_VERSION);33 }34 }35 36 23 /** 37 24 * do staff, when add/update previous database … … 40 27 public function _update_database_if_available() 41 28 { 42 // update tables when plugin updating 43 //first add the version to wp_options table 44 $oldVersion = get_option( 'smartpay_db_version') ?? null; 45 // FIXME: should check with version compare 46 if (floatval($oldVersion) < floatval(self::SMARTPAY_NEW_DB_VERSION)) { 47 \AddSettingsColumnOnProductTable::up(); 48 update_option('smartpay_db_version', self::SMARTPAY_NEW_DB_VERSION); 49 } 29 \AddSettingsColumnOnProductTable::up(); 50 30 } 51 31 } -
smartpay/trunk/database/migrations/add_settings_column_on_products_table.php
r2703855 r2707859 17 17 */ 18 18 $table = $wpdb->prefix . 'smartpay_products'; 19 $dbName = $wpdb->dbname; 19 20 20 21 // check the settings column exist on products table 21 $row = $wpdb->get_results("SELECT settings FROM INFORMATION_SCHEMA.COLUMNS WHERE $table = $table AND column_name = 'settings'"); 22 $row = $wpdb->get_results(" 23 SELECT COLUMN_NAME 24 FROM INFORMATION_SCHEMA.COLUMNS 25 WHERE TABLE_SCHEMA = '$dbName' AND 26 TABLE_NAME = '$table' AND 27 COLUMN_NAME = 'settings' 28 "); 22 29 23 30 // if no row found then create a new column on the products table -
smartpay/trunk/readme.txt
r2703855 r2707859 3 3 Tags: download manager, digital product, donation, ecommerce, stripe, paypal, paddle, document manager, file manager, download protection, recurring payment, donations, donation plugin, wordpress donation plugin, wp donation, fundraising, fundraiser, crowdfunding, wordpress donations, gutenberg, gutenberg donations, nonprofit, paypal donations, paypal donate, stripe donations, stripe donate, authorize.net, authorize.net donations, bkash, bkash payment, 4 4 Requires at least: 4.9 5 Tested up to: 5.9. 15 Tested up to: 5.9.3 6 6 Requires PHP: 7.4.0 7 Stable Tag: 2.6. 47 Stable Tag: 2.6.5 8 8 License: GNU Version 2 or later 9 9 … … 117 117 118 118 == Changelog == 119 = [2.6.5] = 120 * Fix - Failed to create product 121 119 122 = [2.6.4] = 120 123 * New - Pay Now/Get it Now button text change option on form -
smartpay/trunk/resources/views/mail/payment-receipt/product-purchase.php
r2659357 r2707859 235 235 <div style="background-color: #d4d5d6; height: 1px; line-height: 1px"> </div> 236 236 <div class="sm-leading-16" style="line-height: 32px">‌</div> 237 <p style="font-size: 14px; line-height: 20px; margin: 0; color: #a0a6b0"><?php echo __('You get this email because you sign up or purchase sometingat ', 'smartpay') . get_bloginfo('name'); ?></p>237 <p style="font-size: 14px; line-height: 20px; margin: 0; color: #a0a6b0"><?php echo __('You have received this email because you signed up, donated or made a transaction at ', 'smartpay') . get_bloginfo('name'); ?></p> 238 238 <div class="sm-leading-16" style="line-height: 32px">‌</div> 239 239 </td> -
smartpay/trunk/smartpay.php
r2703855 r2707859 6 6 * Plugin URI: https://wpsmartpay.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash 7 7 * Tags: download manager, digital product, donation, ecommerce, paddle, stripe, paypal, document manager, file manager, download protection, recurring payment, donations, donation plugin, wordpress donation plugin, wp donation, fundraising, fundraiser, crowdfunding, wordpress donations, gutenberg, gutenberg donations, nonprofit, paypal donations, paypal donate, stripe donations, stripe donate, authorize.net, authorize.net donations, bkash, bkash payment, 8 * Version: 2.6. 48 * Version: 2.6.5 9 9 * Author: WPSmartPay 10 10 * Author URI: https://wpsmartpay.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash … … 28 28 defined('ABSPATH') || exit; 29 29 30 define('SMARTPAY_VERSION', '2.6. 4');30 define('SMARTPAY_VERSION', '2.6.5'); 31 31 define('SMARTPAY_PLUGIN_FILE', __FILE__); 32 32 define('SMARTPAY_PLUGIN_ASSETS', plugins_url('public', __FILE__)); -
smartpay/trunk/vendor/autoload.php
r2703855 r2707859 3 3 // autoload.php @generated by Composer 4 4 5 if (PHP_VERSION_ID < 50600) { 6 echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; 7 exit(1); 8 } 9 5 10 require_once __DIR__ . '/composer/autoload_real.php'; 6 11 7 return ComposerAutoloaderInit 35ba30bea8d3c3621d960c30e9882154::getLoader();12 return ComposerAutoloaderInit8d1fdce8fbb584cc0b42403cdd170a75::getLoader(); -
smartpay/trunk/vendor/composer/autoload_real.php
r2703855 r2707859 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 35ba30bea8d3c3621d960c30e98821545 class ComposerAutoloaderInit8d1fdce8fbb584cc0b42403cdd170a75 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 35ba30bea8d3c3621d960c30e9882154', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit8d1fdce8fbb584cc0b42403cdd170a75', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 35ba30bea8d3c3621d960c30e9882154', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit8d1fdce8fbb584cc0b42403cdd170a75', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 \Composer\Autoload\ComposerStaticInit35ba30bea8d3c3621d960c30e9882154::getInitializer($loader)();32 call_user_func(\Composer\Autoload\ComposerStaticInit8d1fdce8fbb584cc0b42403cdd170a75::getInitializer($loader)); 33 33 34 34 $loader->register(true); 35 35 36 $includeFiles = \Composer\Autoload\ComposerStaticInit 35ba30bea8d3c3621d960c30e9882154::$files;36 $includeFiles = \Composer\Autoload\ComposerStaticInit8d1fdce8fbb584cc0b42403cdd170a75::$files; 37 37 foreach ($includeFiles as $fileIdentifier => $file) { 38 composerRequire 35ba30bea8d3c3621d960c30e9882154($fileIdentifier, $file);38 composerRequire8d1fdce8fbb584cc0b42403cdd170a75($fileIdentifier, $file); 39 39 } 40 40 … … 48 48 * @return void 49 49 */ 50 function composerRequire 35ba30bea8d3c3621d960c30e9882154($fileIdentifier, $file)50 function composerRequire8d1fdce8fbb584cc0b42403cdd170a75($fileIdentifier, $file) 51 51 { 52 52 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
smartpay/trunk/vendor/composer/autoload_static.php
r2703855 r2707859 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 35ba30bea8d3c3621d960c30e98821547 class ComposerStaticInit8d1fdce8fbb584cc0b42403cdd170a75 8 8 { 9 9 public static $files = array ( … … 75 75 { 76 76 return \Closure::bind(function () use ($loader) { 77 $loader->prefixLengthsPsr4 = ComposerStaticInit 35ba30bea8d3c3621d960c30e9882154::$prefixLengthsPsr4;78 $loader->prefixDirsPsr4 = ComposerStaticInit 35ba30bea8d3c3621d960c30e9882154::$prefixDirsPsr4;79 $loader->classMap = ComposerStaticInit 35ba30bea8d3c3621d960c30e9882154::$classMap;77 $loader->prefixLengthsPsr4 = ComposerStaticInit8d1fdce8fbb584cc0b42403cdd170a75::$prefixLengthsPsr4; 78 $loader->prefixDirsPsr4 = ComposerStaticInit8d1fdce8fbb584cc0b42403cdd170a75::$prefixDirsPsr4; 79 $loader->classMap = ComposerStaticInit8d1fdce8fbb584cc0b42403cdd170a75::$classMap; 80 80 81 81 }, null, ClassLoader::class); -
smartpay/trunk/vendor/composer/installed.php
r2703855 r2707859 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => 'v2.6. 4',4 'version' => '2.6. 4.0',3 'pretty_version' => 'v2.6.5', 4 'version' => '2.6.5.0', 5 5 'type' => 'library', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 0a9c91f906b8e2704a18171cc1341bc44c03bd58',8 'reference' => 'c4b1b1765c71ee6f9af4576ee62e36ce08ecf290', 9 9 'name' => 'wp-smartpay/core', 10 10 'dev' => false, … … 57 57 ), 58 58 'wp-smartpay/core' => array( 59 'pretty_version' => 'v2.6. 4',60 'version' => '2.6. 4.0',59 'pretty_version' => 'v2.6.5', 60 'version' => '2.6.5.0', 61 61 'type' => 'library', 62 62 'install_path' => __DIR__ . '/../../', 63 63 'aliases' => array(), 64 'reference' => ' 0a9c91f906b8e2704a18171cc1341bc44c03bd58',64 'reference' => 'c4b1b1765c71ee6f9af4576ee62e36ce08ecf290', 65 65 'dev_requirement' => false, 66 66 ),
Note: See TracChangeset
for help on using the changeset viewer.