kristofvc/open-iban

This is a library to integrate open-iban in your project

Installs: 2 070

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 0

Forks: 0

Open Issues: 0

Type:service

pkg:composer/kristofvc/open-iban

0.2.0 2017-12-06 13:17 UTC

This package is not auto-updated.

Last update: 2025-09-24 13:05:54 UTC


README

Usage

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

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

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

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