Plugin Directory

Changeset 2175794


Ignore:
Timestamp:
10/18/2019 06:51:44 PM (6 years ago)
Author:
tangrufus
Message:

Version bump 0.4.1

Location:
gf-loqate-bank-verification/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • gf-loqate-bank-verification/trunk/README.txt

    r2175780 r2175794  
    66Tested up to: 5.3
    77Requires PHP: 7.2
    8 Stable tag: 0.4.0
     8Stable tag: 0.4.1
    99License: MIT
    1010License URI: https://opensource.org/licenses/MIT
     
    1414== Description ==
    1515
    16 ## Goal
     16### Goal
    1717
    1818[GF Loqate Bank Verification](https://github.com/ItinerisLtd/gf-loqate-bank-verification) verifies [Gravity Forms](https://www.gravityforms.com/) bank details with [Loqate bank verification API](https://www.loqate.com/resources/support/apis/BankAccountValidation/Interactive/Validate/2/).
    1919
    2020It validates the bank details (branch sort codes and bank account numbers):
    21 - indicates whether the account number and sortcode are valid
     21- indicates whether the account number and sort code are valid
    2222- indicates whether the account can accept direct debits. Certain accounts (e.g. savings) will not accept direct debits
    2323
    24 ## Usage
     24### Usage
    2525
    26261. Get your service key from Loqate
     
    4141        - `gflbv-account-number-is-correct`
    4242
    43 ## For Developers
     43### For Developers
    4444
    4545Fork the plugin on [GitHub](https://github.com/ItinerisLtd/gf-loqate-bank-verification).
     
    5151- PHP v7.2
    5252- WordPress v4.9.10
    53 - [Gravity Forms](https://www.Gravity Forms.com/) v2.4.14.4
     53- [Gravity Forms](https://www.gravityforms.com/) v2.4.14.4
    5454
    5555### Does it support checking for Direct Debit capability?
     
    6363Yes. Loqate API responses are cached in [WordPress transients](https://codex.wordpress.org/Transients_API) for an hour.
    6464
    65 To clear caches:
     65To clear caches: `wp transient delete --all`
    6666
    67 ```bash
    68 wp transient delete --all
    69 ```
     67Or, re-save service key on the setting page.
    7068
    7169### Will you add support for older PHP versions?
  • gf-loqate-bank-verification/trunk/gf-loqate-bank-verification.php

    r2175780 r2175794  
    55 * Plugin URI:        https://github.com/ItinerisLtd/gf-loqate-bank-verification
    66 * Description:       Verify Gravity Forms bank details with Loqate bank verification API.
    7  * Version:           0.4.0
     7 * Version:           0.4.1
    88 * Requires at least: 4.9.10
    99 * Requires PHP:      7.2
  • gf-loqate-bank-verification/trunk/src/Plugin.php

    r2175780 r2175794  
    1717class Plugin
    1818{
    19     public const VERSION = '0.4.0';
     19    public const VERSION = '0.4.1';
    2020
    2121    public static function run(): void
  • gf-loqate-bank-verification/trunk/vendor/autoload.php

    r2175780 r2175794  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInitb1020b717b89bcc404bc83824567eb12::getLoader();
     7return ComposerAutoloaderInit94a3cb33cbe4ec51d1796e88b4657e69::getLoader();
  • gf-loqate-bank-verification/trunk/vendor/composer/autoload_real.php

    r2175780 r2175794  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitb1020b717b89bcc404bc83824567eb12
     5class ComposerAutoloaderInit94a3cb33cbe4ec51d1796e88b4657e69
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInitb1020b717b89bcc404bc83824567eb12', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit94a3cb33cbe4ec51d1796e88b4657e69', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInitb1020b717b89bcc404bc83824567eb12', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit94a3cb33cbe4ec51d1796e88b4657e69', 'loadClassLoader'));
    2525
    2626        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    2828            require_once __DIR__ . '/autoload_static.php';
    2929
    30             call_user_func(\Composer\Autoload\ComposerStaticInitb1020b717b89bcc404bc83824567eb12::getInitializer($loader));
     30            call_user_func(\Composer\Autoload\ComposerStaticInit94a3cb33cbe4ec51d1796e88b4657e69::getInitializer($loader));
    3131        } else {
    3232            $map = require __DIR__ . '/autoload_namespaces.php';
  • gf-loqate-bank-verification/trunk/vendor/composer/autoload_static.php

    r2175780 r2175794  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitb1020b717b89bcc404bc83824567eb12
     7class ComposerStaticInit94a3cb33cbe4ec51d1796e88b4657e69
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    4646    {
    4747        return \Closure::bind(function () use ($loader) {
    48             $loader->prefixLengthsPsr4 = ComposerStaticInitb1020b717b89bcc404bc83824567eb12::$prefixLengthsPsr4;
    49             $loader->prefixDirsPsr4 = ComposerStaticInitb1020b717b89bcc404bc83824567eb12::$prefixDirsPsr4;
    50             $loader->classMap = ComposerStaticInitb1020b717b89bcc404bc83824567eb12::$classMap;
     48            $loader->prefixLengthsPsr4 = ComposerStaticInit94a3cb33cbe4ec51d1796e88b4657e69::$prefixLengthsPsr4;
     49            $loader->prefixDirsPsr4 = ComposerStaticInit94a3cb33cbe4ec51d1796e88b4657e69::$prefixDirsPsr4;
     50            $loader->classMap = ComposerStaticInit94a3cb33cbe4ec51d1796e88b4657e69::$classMap;
    5151
    5252        }, null, ClassLoader::class);
Note: See TracChangeset for help on using the changeset viewer.