jongotlin / bank-account-bundle
1.2.1
2022-02-23 14:22 UTC
Requires
- php: ^7.0
- byrokrat/banking: ^2.2
- symfony/framework-bundle: ^2.7|^3.0|^4.0|^5.0
Requires (Dev)
- phpunit/phpunit: ^6.0
- symfony/validator: ^3.2
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;