An open API service indexing awesome lists of open source software.

https://github.com/kristofvc/open-iban

PHP integration for https://openiban.com
https://github.com/kristofvc/open-iban

bic iban iban-validator open-iban php service

Last synced: 6 months ago
JSON representation

PHP integration for https://openiban.com

Awesome Lists containing this project

README

          

# PHP Open IBAN implementation

## Usage

```php
require __DIR__ . '/../vendor/autoload.php';

$repo = new \Kristofvc\OpenIban\Repository\IbanRepository();

$message = $repo->findIban('BE30000000001111');

if ($message->isValid() {
$bic = $message->getBankData()->getBic();
}
```