daycry / iban
IBAN library for CodeIgniter 4 (validation, parsing, formatting and entity resolution), usable standalone too.
Requires
- php: ^8.3
- ext-iconv: *
- ext-mbstring: *
- ext-zip: *
Requires (Dev)
This package is auto-updated.
Last update: 2026-07-13 12:38:46 UTC
README
Daycry Iban
IBAN validation, parsing, formatting and bank-entity resolution for CodeIgniter 4 — usable standalone, with a zero-dependency core.
composer require daycry/iban
Quickstart
Facade (framework-free, works standalone)
use Daycry\Iban\Iban; use Daycry\Iban\Enums\IbanFormat; $iban = new Iban(); // zero-config: Registry() + NullProvider() by default $iban->isValid('ES91 2100 0418 4502 0005 1332'); // true $result = $iban->validate('ES9121000418450200051332', checkNational: true); $result->isValid(); // bool $result->firstViolation(); // ?Violation $parsed = $iban->parse('ES9121000418450200051332'); // throws InvalidIbanException if invalid $parsed = $iban->tryParse('not an iban'); // null instead of throwing $parsed->countryCode; // 'ES' $parsed->bankIdentifier; // '2100' $iban->format($parsed, IbanFormat::Print); // 'ES91 2100 0418 4502 0005 1332' $iban->format($parsed, IbanFormat::Anonymized); // 'ES******************1332' $bank = $iban->resolve($parsed); $bank->isResolved(); // false — NullProvider never resolves // BIC / SWIFT (ISO 9362) — no checksum, so "valid" = well-formed + recognised country $iban->isValidBic('CAIXESBBXXX'); // true $iban->parseBic('NWBKGB2L')->institutionCode; // 'NWBK' $iban->validateIbanAndBic('GB29NWBK60161331926819', 'NWBKGB2L')->isValid(); // true (country + bank coherent)
CI4 service
$svc = service('iban'); // Daycry\Iban\Iban, wired per Config\Iban $svc->isValid('ES9121000418450200051332'); // true
CI4 helper
helper('iban'); iban_is_valid('ES9121000418450200051332'); // true iban_valid('ES9121000418450200051332'); // alias of iban_is_valid() iban_country('ES9121000418450200051332'); // 'ES' iban_format('ES9121000418450200051332', 'anonymized'); // 'ES******************1332' bank_name('ES9121000418450200051332'); // null with the default NullProvider / empty banks table bank_bic('ES9121000418450200051332'); // null, same reason
spark commands
php spark iban:validate "ES91 2100 0418 4502 0005 1332" --national php spark iban:validate GB29NWBK60161331926819 --bic=NWBKGB2L # combined IBAN + BIC cross-check php spark iban:bic NWBKGB2L # validate/parse a BIC on its own php spark iban:parse ES9121000418450200051332 --json php spark iban:resolve ES9121000418450200051332 php spark iban:update # lists the 30 bundled importers php spark iban:update --source=oenb --dry-run # preview an import, write nothing
Complete per-symbol API reference: docs/api-reference.md. Task-oriented guide —
the 16 ViolationCode cases, the national validators, caching, and the Config\Iban options: see
docs/usage.md. Importer/iban:update reference: see docs/importers.md.
API overview
The public surface is the facade Daycry\Iban\Iban (also what service('iban') returns). Every method
accepts a raw string; the ones that already have a parsed value object accept that too.
IBAN
| Method | What it does |
|---|---|
normalize(string $iban): string |
Uppercases and strips spaces/separators to the canonical electronic form. Pure string operation — no validation. |
validate(string|ParsedIban $iban, bool $checkNational = false): ValidationResult |
Full validation: country is in the registry, correct length, BBAN token grammar, and MOD-97 check digits — plus, with checkNational: true, the country's national check digit (ES/BE/PT/SI/FI/FR/IT…). Never throws; returns a ValidationResult exposing isValid() and the list of Violations. |
isValid(string|ParsedIban $iban): bool |
Boolean shortcut over validate(). |
parse(string $iban): ParsedIban |
Validates, then decomposes into a ParsedIban (country code, check digits, BBAN, bank identifier, branch identifier, account number, national check digit). Throws InvalidIbanException (which carries the failing ValidationResult) when the IBAN is invalid. |
tryParse(string $iban): ?ParsedIban |
Same as parse() but returns null instead of throwing. |
format(string|ParsedIban $iban, IbanFormat $f = IbanFormat::Print): string |
Renders Electronic (no spaces), Print (groups of 4), or Anonymized (country code + last 4 digits, the rest masked). |
resolve(string|ParsedIban $iban): BankResult |
Looks up the owning bank through the configured provider. Always returns a BankResult (the ParsedIban plus nullable bank fields); isResolved() is false with the default NullProvider, or filled in by DatabaseProvider / the iban.com fallback. resolvedBy tells you which provider answered. |
BIC / SWIFT
| Method | What it does |
|---|---|
normalizeBic(string $bic): string |
Uppercases and strips whitespace. |
validateBic(string|ParsedBic $bic): ValidationResult |
Structural ISO 9362 validation: length 8 or 11, character classes per position, and country code (positions 5-6) present in the bundled ISO 3166-1 registry. Never throws. A BIC has no checksum, so "valid" means well-formed with a recognised country, never "this BIC exists". |
isValidBic(string|ParsedBic $bic): bool |
Boolean shortcut over validateBic(). |
parseBic(string $bic): ParsedBic |
Validates, then slices into a ParsedBic (institution, country, location, optional branch code). Throws InvalidBicException when invalid. |
tryParseBic(string $bic): ?ParsedBic |
Same as parseBic() but returns null. |
validateIbanAndBic(?string $iban, ?string $bic): ValidationResult |
The "one, the other, or both" entry point: validates whichever value is provided, and when both are valid also cross-checks them — country always, and bank for the 19 countries whose IBAN bank code is the BIC's 4-letter prefix. |
resolveBic(string|ParsedBic $bic): ?BankInfo |
Resolves a bank straight from a BIC (BIC8 match against the provider's banks data). Returns null (never throws) on a malformed BIC or an unresolved lookup. |
Sub-service accessors
validator(), parser(), resolver(), bicValidator() and bicParser() return the underlying
components, for when you want to reuse a single instance or call them directly.
The helper (helper('iban')) mirrors these as plain functions (iban_validate(), iban_parse(),
iban_resolve(), bic_is_valid(), iban_bic_validate(), …) and every helper is degradation-safe — none
throw. See docs/api-reference.md for the exhaustive per-symbol reference.
Database setup (optional)
Validation, parsing, formatting and BIC checks need no database — the core ships a compiled registry
and works out of the box. The database is only for bank-entity resolution (resolve() / resolveBic()
returning real bank names and BICs) and, optionally, for serving the ISO 3166-1 country list from a table
instead of the bundled compiled list. These steps only apply under CodeIgniter 4.
1. Run the migrations
Both tables (banks and iso_countries) live in the package's module namespace, so migrate it:
php spark migrate -n "Daycry\Iban" # creates the `banks` and `iso_countries` tables # …or run every namespace's migrations together with your app's own: php spark migrate --all
2. Enable the database provider
Publish the config (php spark iban:publish) and, in app/Config/Iban.php, switch the provider:
public string $provider = 'database'; // resolve() now reads the `banks` table
3. Populate the banks table
No bank data ships with the package (by licensing design — see docs/licensing.md).
You fill the table yourself from official sources with the bundled importers:
php spark iban:update # list the 30 bundled importers and their sources php spark iban:update --source=bundesbank # import one source (Germany) php spark iban:update --source=epc # EPC SEPA Register → GB, GI, IE, LV, RO (+ SEPA flags) php spark iban:update --all # run every importer php spark iban:update --source=oenb --dry-run # preview an import, write nothing
The BanksSeeder is intentionally empty — it exists only as a seed hook; the importers are the real data
path. See docs/importers.md for the full source list and coverage matrix.
4. (Optional) Serve ISO 3166-1 from the database
BIC validation uses the bundled compiled ISO 3166-1 list by default ($isoCountrySource = 'php' — nothing
to install). To serve it from the iso_countries table instead (so you can edit it in the DB), set
$isoCountrySource = 'database' in app/Config/Iban.php and seed the table from the compiled list:
php spark db:seed "Daycry\Iban\Database\Seeds\IsoCountriesSeeder" # idempotent — upserts by alpha-2
Features
- ISO 13616 + MOD-97 validation over a structural registry covering 78 countries — length, BBAN token grammar, and field offsets, all compiled into PHP (no runtime data files, no network).
- Structural parsing: country code, IBAN check digits, BBAN, bank identifier, branch identifier (where applicable), account number, and national check digit — all as a
ParsedIbanvalue object. - Three output formats:
Electronic(canonical, no spaces),Print(space-grouped every 4 chars),Anonymized(country code + last 4 digits visible, rest masked). Seedocs/formatting.md. - Pluggable bank-entity resolver:
resolve()always returns aBankResult; bank fields staynullwith the defaultNullProvider, or get filled in by the optionalDatabaseProvideronce you seed thebankstable — optionally cached viaProviders\CachedProvider(Config\Iban::$cacheTtl). A bank-level fallback (findByBankCode($cc, $bank, null)) resolves branch-carrying IBANs even when only a bank-level row was imported. - National check-digit validation for 9 countries (
checkNational: true): ES, BE, PT, SI, FI, FR (+MC), IT (+SM) — seedocs/usage.mdfor the algorithm per country (Estonia is deliberately not covered — its real algorithm needs bank-specific data the IBAN doesn't carry). - BIC / SWIFT validation (ISO 9362): validate, parse (
ParsedBic), and — given both an IBAN and a BIC — cross-check them for country and (where structurally possible) bank coherence, plus optional BIC-first bank resolution (resolveBic()). Country codes are checked against a bundled 249-code ISO 3166-1 registry, so BICs from non-IBAN countries (US, JP, …) validate too. A BIC has no checksum, so "valid" means well-formed + recognised country, never "this BIC exists". Works standalone, no database. Seedocs/usage.md. - 30 bundled bank-data importers, none of them bundling any actual data:
iban:updatelists/runs official-source importers for 25 countries (AT, DE, CH, NL, ES, CZ, GR, SI, SK, BG, MD, PL, AZ, BE, HR, LU, MT, HU, NO, GE, IL, UA, KZ, LI, BR) plus the EPC SEPA Register, which covers GB, GI, IE, LV and RO and also reports SEPA reachability (SCT/SCT Inst/SDD Core/SDD B2B) — live or from a local--file. 24 of 42 SEPA countries now resolve. Seedocs/importers.mdfor the full list and coverage matrix. - Zero-dependency core:
Daycry\Iban\Ibanand everything underCore/,Contracts/,DTO/,Enums/,Exceptions/,Registry/,National/,Resolver/never import CodeIgniter — usable in a plainphp -rscript, a CLI tool, or any other framework. (The package as a whole additionally requiresext-mbstring,ext-iconvandext-zip, used by the bundled importers to normalize source encodings and read.xlsxsources.) - First-class CI4 integration:
service('iban'),helper('iban'),Config\Iban, and 6 spark commands (iban:validate,iban:parse,iban:resolve,iban:update,iban:publish,iban:bic) — auto-discovered, no manual wiring required.
Standalone usage (outside CodeIgniter 4)
The core has zero framework dependencies (PHP ^8.3 + ext-mbstring + ext-iconv + ext-zip only), so you can use it without CI4 installed at all:
<?php require 'vendor/autoload.php'; use Daycry\Iban\Iban; $iban = new Iban(); var_dump($iban->isValid('DE89370400440532013000')); // bool(true) $parsed = $iban->parse('FR1420041010050500013M02606'); echo $parsed->countryCode; // 'FR'
codeigniter4/framework is only a require-dev (test/dev) dependency — it is never pulled in by a plain composer require daycry/iban for standalone use. Config\Iban, Config\Services, the spark commands, Models\BankModel, the optional DatabaseProvider/CachedProvider, and Import\ImportRunner are the only pieces that need CI4; they simply aren't loaded unless CI4 itself is present in the consuming application. The bundled importers themselves (Import\Importers/*) and the ImporterInterface/ImportReport/ImporterRegistry framework stay CI4-free, fetching over plain PHP.
Architecture
The package is split into two layers connected by a one-way dependency rule: the framework-free core and resolver never know about CodeIgniter 4.
[ CI4 integration ] Config, Services('iban'), iban_helper, spark commands (thin adapter)
|
v
[ Resolver ] ResolverInterface -> ProviderInterface (NullProvider | DatabaseProvider)
| produces BankResult (composes ParsedIban + nullable bank data)
v
[ Core ] structural registry (in code) -> normalize/validate/parse/format
zero dependencies, usable outside CI4, produces ParsedIban / ValidationResult
See docs/architecture.md and CLAUDE.md for the full breakdown, including which directories are guarded (framework-free) and which are allowed to depend on CI4.
Compatibility matrix
| PHP | CodeIgniter 4 | Status |
|---|---|---|
| 8.3 | ^4.6 | ✅ CI-tested |
| 8.4 | ^4.6 | ✅ CI-tested |
CodeIgniter 4 is optional (require-dev only) — the core works on plain PHP 8.3/8.4 with no framework at all.
Documentation
docs/api-reference.md— the complete public-API reference: every facade method, helper function, config property, DTO, enum, exception, contract, and registry member, verified against the source.docs/usage.md— full facade/helper/command API, the 16ViolationCodecases, national check-digit validators, BIC/SWIFT validation,resolve()withNullProvider/DatabaseProvider/CachedProvider,Config\Ibanreference.docs/importers.md— the bank-data importer framework,iban:updatereference, the 30 bundled official-source importers with a coverage matrix, and how to write a custom one.docs/formatting.md—Electronic/Print/Anonymizedformats, with the exactAnonymizedmask scheme.docs/i18n.md— why validation messages are English-only in the core, and how to translate them at the CI4 layer.docs/licensing.md— why no SWIFT/SwiftRef/globalcitizen/Wikipedia data is bundled, and how the registry was independently authored.docs/registry-authoring.md— methodology for authoring/cross-checking the structural country registry.docs/architecture.md— the two-layer architecture and the enforced dependency rule.docs/roadmap.md— what shipped in v1.1, and what's planned for v2.0.CHANGELOG.md— release history (Keep a Changelog format).
Development
composer update # this package intentionally ships without composer.lock — see below composer test # PHPUnit — 1,269 tests composer analyze # PHPStan, level 8 (src + tests, with the CI4 PHPStan extension) composer cs # PHP-CS-Fixer, PSR-12, dry-run
No composer.lock: as a library (not an application), composer.lock is gitignored on purpose. CI always runs composer update against the version constraints in composer.json, so the test matrix reflects what consumers actually get.
License
MIT License - see LICENSE file for details.