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
- Host: GitHub
- URL: https://github.com/kristofvc/open-iban
- Owner: kristofvc
- Created: 2017-12-06T12:14:29.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-06T13:18:41.000Z (over 8 years ago)
- Last Synced: 2025-07-24T05:28:52.436Z (about 1 year ago)
- Topics: bic, iban, iban-validator, open-iban, php, service
- Language: PHP
- Size: 2.93 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
}
```