jongotlin/bank-account-bundle

安装次数: 5,743

依赖: 0

建议者: 0

安全: 0

星星: 0

关注者: 2

分支: 0

开放问题: 0

类型:symfony-bundle

1.2.1 2022-02-23 14:22 UTC

This package is auto-updated.

Last update: 2024-09-23 20:33:18 UTC


README

此Symfony扩展使用github.com/byrokrat/banking来验证瑞典银行账户号码。

安装

通过Composer

$ composer require jongotlin/bank-account-bundle
class AppKernel extends Kernel
{
  public function registerBundles()
  {
    $bundles = array(
        // ...
        new JGI\BankAccountBundle\BankAccountBundle(),
    }
  }
}

用法

use JGI\BankAccountBundle\Validator\Constraints as BankAccountAssert;

/**
 * @BankAccountAssert\BankAccount
 */
private $bankAccount;