Changeset 2680761
- Timestamp:
- 02/17/2022 11:35:50 AM (4 years ago)
- Location:
- smartpay
- Files:
-
- 4 added
- 26 edited
- 1 copied
-
tags/2.6.1.1 (copied) (copied from smartpay/trunk)
-
tags/2.6.1.1/app/Helpers/smartpay.php (modified) (1 diff)
-
tags/2.6.1.1/app/Models/Customer.php (modified) (2 diffs)
-
tags/2.6.1.1/app/Modules/Admin/Setting.php (modified) (1 diff)
-
tags/2.6.1.1/app/Modules/Integration/Integration.php (modified) (1 diff)
-
tags/2.6.1.1/public/img/integrations/mollie.png (added)
-
tags/2.6.1.1/public/img/mollie.png (added)
-
tags/2.6.1.1/readme.txt (modified) (2 diffs)
-
tags/2.6.1.1/resources/views/shortcodes/payment_receipt.php (modified) (1 diff)
-
tags/2.6.1.1/smartpay.php (modified) (2 diffs)
-
tags/2.6.1.1/vendor/autoload.php (modified) (1 diff)
-
tags/2.6.1.1/vendor/composer/autoload_files.php (modified) (1 diff)
-
tags/2.6.1.1/vendor/composer/autoload_real.php (modified) (5 diffs)
-
tags/2.6.1.1/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/2.6.1.1/vendor/composer/installed.json (modified) (1 diff)
-
tags/2.6.1.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/app/Helpers/smartpay.php (modified) (1 diff)
-
trunk/app/Models/Customer.php (modified) (2 diffs)
-
trunk/app/Modules/Admin/Setting.php (modified) (1 diff)
-
trunk/app/Modules/Integration/Integration.php (modified) (1 diff)
-
trunk/public/img/integrations/mollie.png (added)
-
trunk/public/img/mollie.png (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/resources/views/shortcodes/payment_receipt.php (modified) (1 diff)
-
trunk/smartpay.php (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_files.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (5 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.json (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smartpay/tags/2.6.1.1/app/Helpers/smartpay.php
r2542354 r2680761 1014 1014 $smartpay_logs->log_to_file($message); 1015 1015 } 1016 1017 /* 1018 * @return available gateways including third party integrations 1019 */ 1020 function smartpay_get_available_payment_gateways($availableGateways) { 1021 return apply_filters('smartpay_get_available_payment_gateways', $availableGateways); 1022 } 1023 -
smartpay/tags/2.6.1.1/app/Models/Customer.php
r2446799 r2680761 9 9 protected $table = 'smartpay_customers'; 10 10 11 protected $fillable = []; 11 protected $fillable = [ 12 'first_name', 13 'last_name', 14 'email_name', 15 'notes', 16 'extra', 17 ]; 12 18 13 19 public function getFullNameAttribute() … … 20 26 } 21 27 28 public function updateCustomerNotes(array $arr) 29 { 30 $notes = $arr; 31 $this->notes = json_encode($notes); 32 $this->save(); 33 } 34 22 35 public function payments() 23 36 { -
smartpay/tags/2.6.1.1/app/Modules/Admin/Setting.php
r2656642 r2680761 622 622 ] 623 623 ]; 624 625 // add filter to load up the all registered gateway label to show the available gateways on setting 626 $availableGateways = smartpay_get_available_payment_gateways($availableGateways); 627 624 628 $enableGateways = []; 625 629 -
smartpay/tags/2.6.1.1/app/Modules/Integration/Integration.php
r2656642 r2680761 97 97 'excerpt' => __('MailerLite is an email marketing tool.', 'smartpay'), 98 98 'cover' => SMARTPAY_PLUGIN_ASSETS . '/img/integrations/mailerlite.png', 99 'manager' => null, 100 'type' => 'pro', 101 'categories' => ['Marketing'], 102 ], 103 104 'mollie' => [ 105 'name' => __('Mollie', 'smartpay'), 106 'excerpt' => __('Mollie is a payments platform that offers an easy-to-implement process for integrating payments.', 'smartpay'), 107 'cover' => SMARTPAY_PLUGIN_ASSETS . '/img/integrations/mollie.png', 99 108 'manager' => null, 100 109 'type' => 'pro', -
smartpay/tags/2.6.1.1/readme.txt
r2674934 r2680761 5 5 Tested up to: 5.9 6 6 Requires PHP: 7.4.0 7 Stable Tag: 2.6. 07 Stable Tag: 2.6.1 8 8 License: GNU Version 2 or later 9 9 … … 116 116 117 117 == Changelog == 118 = [2.6.1] = 119 * New - Added mollie payment gateway integration 120 * New - Added register custom payment gateway hook to load third-party payment gateway 121 * Fix - Product count issue on payment confirmation page 122 118 123 = [2.6.0] = 119 124 * New - WordPress version 5.9 support -
smartpay/tags/2.6.1.1/resources/views/shortcodes/payment_receipt.php
r2665776 r2680761 61 61 <?php $product = \SmartPay\Models\Product::with(['parent'])->find($productId); ?> 62 62 <?php if (strtolower($payment->status) == \SmartPay\Models\Payment::COMPLETED): ?> 63 <?php if ( count($product->files) > 0): ?>63 <?php if ($product && count($product->files) > 0): ?> 64 64 <!-- Do staff for download files--> 65 65 <h3><?php echo __( 'Files', 'smartpay' ); ?></h3> -
smartpay/tags/2.6.1.1/smartpay.php
r2674934 r2680761 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. 08 * Version: 2.6.1 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. 0');30 define('SMARTPAY_VERSION', '2.6.1'); 31 31 define('SMARTPAY_PLUGIN_FILE', __FILE__); 32 32 define('SMARTPAY_PLUGIN_ASSETS', plugins_url('public', __FILE__)); -
smartpay/tags/2.6.1.1/vendor/autoload.php
r2674934 r2680761 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 723adb8475bdbb671a724dd178360e70::getLoader();7 return ComposerAutoloaderInitb012a617faee4f1660d1ad55981d5ab4::getLoader(); -
smartpay/tags/2.6.1.1/vendor/composer/autoload_files.php
r2674934 r2680761 7 7 8 8 return array( 9 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php', 9 10 '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php', 10 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',11 11 '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', 12 12 'b238f0d487b3f05b8f1fe4427c1c73ea' => $baseDir . '/app/Helpers/smartpay.php', -
smartpay/tags/2.6.1.1/vendor/composer/autoload_real.php
r2674934 r2680761 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 723adb8475bdbb671a724dd178360e705 class ComposerAutoloaderInitb012a617faee4f1660d1ad55981d5ab4 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 723adb8475bdbb671a724dd178360e70', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInitb012a617faee4f1660d1ad55981d5ab4', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 723adb8475bdbb671a724dd178360e70', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInitb012a617faee4f1660d1ad55981d5ab4', 'loadClassLoader')); 30 30 31 31 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 33 33 require __DIR__ . '/autoload_static.php'; 34 34 35 call_user_func(\Composer\Autoload\ComposerStaticInit 723adb8475bdbb671a724dd178360e70::getInitializer($loader));35 call_user_func(\Composer\Autoload\ComposerStaticInitb012a617faee4f1660d1ad55981d5ab4::getInitializer($loader)); 36 36 } else { 37 37 $map = require __DIR__ . '/autoload_namespaces.php'; … … 54 54 55 55 if ($useStaticLoader) { 56 $includeFiles = Composer\Autoload\ComposerStaticInit 723adb8475bdbb671a724dd178360e70::$files;56 $includeFiles = Composer\Autoload\ComposerStaticInitb012a617faee4f1660d1ad55981d5ab4::$files; 57 57 } else { 58 58 $includeFiles = require __DIR__ . '/autoload_files.php'; 59 59 } 60 60 foreach ($includeFiles as $fileIdentifier => $file) { 61 composerRequire 723adb8475bdbb671a724dd178360e70($fileIdentifier, $file);61 composerRequireb012a617faee4f1660d1ad55981d5ab4($fileIdentifier, $file); 62 62 } 63 63 … … 71 71 * @return void 72 72 */ 73 function composerRequire 723adb8475bdbb671a724dd178360e70($fileIdentifier, $file)73 function composerRequireb012a617faee4f1660d1ad55981d5ab4($fileIdentifier, $file) 74 74 { 75 75 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
smartpay/tags/2.6.1.1/vendor/composer/autoload_static.php
r2674934 r2680761 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 723adb8475bdbb671a724dd178360e707 class ComposerStaticInitb012a617faee4f1660d1ad55981d5ab4 8 8 { 9 9 public static $files = array ( 10 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', 10 11 '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php', 11 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',12 12 '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', 13 13 'b238f0d487b3f05b8f1fe4427c1c73ea' => __DIR__ . '/../..' . '/app/Helpers/smartpay.php', … … 73 73 { 74 74 return \Closure::bind(function () use ($loader) { 75 $loader->prefixLengthsPsr4 = ComposerStaticInit 723adb8475bdbb671a724dd178360e70::$prefixLengthsPsr4;76 $loader->prefixDirsPsr4 = ComposerStaticInit 723adb8475bdbb671a724dd178360e70::$prefixDirsPsr4;77 $loader->classMap = ComposerStaticInit 723adb8475bdbb671a724dd178360e70::$classMap;75 $loader->prefixLengthsPsr4 = ComposerStaticInitb012a617faee4f1660d1ad55981d5ab4::$prefixLengthsPsr4; 76 $loader->prefixDirsPsr4 = ComposerStaticInitb012a617faee4f1660d1ad55981d5ab4::$prefixDirsPsr4; 77 $loader->classMap = ComposerStaticInitb012a617faee4f1660d1ad55981d5ab4::$classMap; 78 78 79 79 }, null, ClassLoader::class); -
smartpay/tags/2.6.1.1/vendor/composer/installed.json
r2674934 r2680761 237 237 "installation-source": "dist", 238 238 "autoload": { 239 "files": [ 240 "bootstrap.php" 241 ], 239 242 "psr-4": { 240 243 "Symfony\\Polyfill\\Mbstring\\": "" 241 }, 242 "files": [ 243 "bootstrap.php" 244 ] 244 } 245 245 }, 246 246 "notification-url": "https://packagist.org/downloads/", -
smartpay/tags/2.6.1.1/vendor/composer/installed.php
r2674934 r2680761 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => 'v2.6. 0.1',4 'version' => '2.6. 0.1',3 'pretty_version' => 'v2.6.1.1', 4 'version' => '2.6.1.1', 5 5 'type' => 'library', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' de9169232280f042fa7838a668d1c7dfac23e320',8 'reference' => '8701cb3821a4097c9cd69fe115ee2b888f3d2e3d', 9 9 'name' => 'wp-smartpay/core', 10 10 'dev' => false, … … 57 57 ), 58 58 'wp-smartpay/core' => array( 59 'pretty_version' => 'v2.6. 0.1',60 'version' => '2.6. 0.1',59 'pretty_version' => 'v2.6.1.1', 60 'version' => '2.6.1.1', 61 61 'type' => 'library', 62 62 'install_path' => __DIR__ . '/../../', 63 63 'aliases' => array(), 64 'reference' => ' de9169232280f042fa7838a668d1c7dfac23e320',64 'reference' => '8701cb3821a4097c9cd69fe115ee2b888f3d2e3d', 65 65 'dev_requirement' => false, 66 66 ), -
smartpay/trunk/app/Helpers/smartpay.php
r2542354 r2680761 1014 1014 $smartpay_logs->log_to_file($message); 1015 1015 } 1016 1017 /* 1018 * @return available gateways including third party integrations 1019 */ 1020 function smartpay_get_available_payment_gateways($availableGateways) { 1021 return apply_filters('smartpay_get_available_payment_gateways', $availableGateways); 1022 } 1023 -
smartpay/trunk/app/Models/Customer.php
r2446799 r2680761 9 9 protected $table = 'smartpay_customers'; 10 10 11 protected $fillable = []; 11 protected $fillable = [ 12 'first_name', 13 'last_name', 14 'email_name', 15 'notes', 16 'extra', 17 ]; 12 18 13 19 public function getFullNameAttribute() … … 20 26 } 21 27 28 public function updateCustomerNotes(array $arr) 29 { 30 $notes = $arr; 31 $this->notes = json_encode($notes); 32 $this->save(); 33 } 34 22 35 public function payments() 23 36 { -
smartpay/trunk/app/Modules/Admin/Setting.php
r2656642 r2680761 622 622 ] 623 623 ]; 624 625 // add filter to load up the all registered gateway label to show the available gateways on setting 626 $availableGateways = smartpay_get_available_payment_gateways($availableGateways); 627 624 628 $enableGateways = []; 625 629 -
smartpay/trunk/app/Modules/Integration/Integration.php
r2656642 r2680761 97 97 'excerpt' => __('MailerLite is an email marketing tool.', 'smartpay'), 98 98 'cover' => SMARTPAY_PLUGIN_ASSETS . '/img/integrations/mailerlite.png', 99 'manager' => null, 100 'type' => 'pro', 101 'categories' => ['Marketing'], 102 ], 103 104 'mollie' => [ 105 'name' => __('Mollie', 'smartpay'), 106 'excerpt' => __('Mollie is a payments platform that offers an easy-to-implement process for integrating payments.', 'smartpay'), 107 'cover' => SMARTPAY_PLUGIN_ASSETS . '/img/integrations/mollie.png', 99 108 'manager' => null, 100 109 'type' => 'pro', -
smartpay/trunk/readme.txt
r2674934 r2680761 5 5 Tested up to: 5.9 6 6 Requires PHP: 7.4.0 7 Stable Tag: 2.6. 07 Stable Tag: 2.6.1 8 8 License: GNU Version 2 or later 9 9 … … 116 116 117 117 == Changelog == 118 = [2.6.1] = 119 * New - Added mollie payment gateway integration 120 * New - Added register custom payment gateway hook to load third-party payment gateway 121 * Fix - Product count issue on payment confirmation page 122 118 123 = [2.6.0] = 119 124 * New - WordPress version 5.9 support -
smartpay/trunk/resources/views/shortcodes/payment_receipt.php
r2665776 r2680761 61 61 <?php $product = \SmartPay\Models\Product::with(['parent'])->find($productId); ?> 62 62 <?php if (strtolower($payment->status) == \SmartPay\Models\Payment::COMPLETED): ?> 63 <?php if ( count($product->files) > 0): ?>63 <?php if ($product && count($product->files) > 0): ?> 64 64 <!-- Do staff for download files--> 65 65 <h3><?php echo __( 'Files', 'smartpay' ); ?></h3> -
smartpay/trunk/smartpay.php
r2674934 r2680761 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. 08 * Version: 2.6.1 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. 0');30 define('SMARTPAY_VERSION', '2.6.1'); 31 31 define('SMARTPAY_PLUGIN_FILE', __FILE__); 32 32 define('SMARTPAY_PLUGIN_ASSETS', plugins_url('public', __FILE__)); -
smartpay/trunk/vendor/autoload.php
r2674934 r2680761 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 723adb8475bdbb671a724dd178360e70::getLoader();7 return ComposerAutoloaderInitb012a617faee4f1660d1ad55981d5ab4::getLoader(); -
smartpay/trunk/vendor/composer/autoload_files.php
r2674934 r2680761 7 7 8 8 return array( 9 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php', 9 10 '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php', 10 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',11 11 '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', 12 12 'b238f0d487b3f05b8f1fe4427c1c73ea' => $baseDir . '/app/Helpers/smartpay.php', -
smartpay/trunk/vendor/composer/autoload_real.php
r2674934 r2680761 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 723adb8475bdbb671a724dd178360e705 class ComposerAutoloaderInitb012a617faee4f1660d1ad55981d5ab4 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 723adb8475bdbb671a724dd178360e70', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInitb012a617faee4f1660d1ad55981d5ab4', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 723adb8475bdbb671a724dd178360e70', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInitb012a617faee4f1660d1ad55981d5ab4', 'loadClassLoader')); 30 30 31 31 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 33 33 require __DIR__ . '/autoload_static.php'; 34 34 35 call_user_func(\Composer\Autoload\ComposerStaticInit 723adb8475bdbb671a724dd178360e70::getInitializer($loader));35 call_user_func(\Composer\Autoload\ComposerStaticInitb012a617faee4f1660d1ad55981d5ab4::getInitializer($loader)); 36 36 } else { 37 37 $map = require __DIR__ . '/autoload_namespaces.php'; … … 54 54 55 55 if ($useStaticLoader) { 56 $includeFiles = Composer\Autoload\ComposerStaticInit 723adb8475bdbb671a724dd178360e70::$files;56 $includeFiles = Composer\Autoload\ComposerStaticInitb012a617faee4f1660d1ad55981d5ab4::$files; 57 57 } else { 58 58 $includeFiles = require __DIR__ . '/autoload_files.php'; 59 59 } 60 60 foreach ($includeFiles as $fileIdentifier => $file) { 61 composerRequire 723adb8475bdbb671a724dd178360e70($fileIdentifier, $file);61 composerRequireb012a617faee4f1660d1ad55981d5ab4($fileIdentifier, $file); 62 62 } 63 63 … … 71 71 * @return void 72 72 */ 73 function composerRequire 723adb8475bdbb671a724dd178360e70($fileIdentifier, $file)73 function composerRequireb012a617faee4f1660d1ad55981d5ab4($fileIdentifier, $file) 74 74 { 75 75 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
smartpay/trunk/vendor/composer/autoload_static.php
r2674934 r2680761 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 723adb8475bdbb671a724dd178360e707 class ComposerStaticInitb012a617faee4f1660d1ad55981d5ab4 8 8 { 9 9 public static $files = array ( 10 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', 10 11 '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php', 11 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',12 12 '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', 13 13 'b238f0d487b3f05b8f1fe4427c1c73ea' => __DIR__ . '/../..' . '/app/Helpers/smartpay.php', … … 73 73 { 74 74 return \Closure::bind(function () use ($loader) { 75 $loader->prefixLengthsPsr4 = ComposerStaticInit 723adb8475bdbb671a724dd178360e70::$prefixLengthsPsr4;76 $loader->prefixDirsPsr4 = ComposerStaticInit 723adb8475bdbb671a724dd178360e70::$prefixDirsPsr4;77 $loader->classMap = ComposerStaticInit 723adb8475bdbb671a724dd178360e70::$classMap;75 $loader->prefixLengthsPsr4 = ComposerStaticInitb012a617faee4f1660d1ad55981d5ab4::$prefixLengthsPsr4; 76 $loader->prefixDirsPsr4 = ComposerStaticInitb012a617faee4f1660d1ad55981d5ab4::$prefixDirsPsr4; 77 $loader->classMap = ComposerStaticInitb012a617faee4f1660d1ad55981d5ab4::$classMap; 78 78 79 79 }, null, ClassLoader::class); -
smartpay/trunk/vendor/composer/installed.json
r2674934 r2680761 237 237 "installation-source": "dist", 238 238 "autoload": { 239 "files": [ 240 "bootstrap.php" 241 ], 239 242 "psr-4": { 240 243 "Symfony\\Polyfill\\Mbstring\\": "" 241 }, 242 "files": [ 243 "bootstrap.php" 244 ] 244 } 245 245 }, 246 246 "notification-url": "https://packagist.org/downloads/", -
smartpay/trunk/vendor/composer/installed.php
r2674934 r2680761 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => 'v2.6. 0.1',4 'version' => '2.6. 0.1',3 'pretty_version' => 'v2.6.1.1', 4 'version' => '2.6.1.1', 5 5 'type' => 'library', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' de9169232280f042fa7838a668d1c7dfac23e320',8 'reference' => '8701cb3821a4097c9cd69fe115ee2b888f3d2e3d', 9 9 'name' => 'wp-smartpay/core', 10 10 'dev' => false, … … 57 57 ), 58 58 'wp-smartpay/core' => array( 59 'pretty_version' => 'v2.6. 0.1',60 'version' => '2.6. 0.1',59 'pretty_version' => 'v2.6.1.1', 60 'version' => '2.6.1.1', 61 61 'type' => 'library', 62 62 'install_path' => __DIR__ . '/../../', 63 63 'aliases' => array(), 64 'reference' => ' de9169232280f042fa7838a668d1c7dfac23e320',64 'reference' => '8701cb3821a4097c9cd69fe115ee2b888f3d2e3d', 65 65 'dev_requirement' => false, 66 66 ),
Note: See TracChangeset
for help on using the changeset viewer.