定制 daycry/iban 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

daycry/iban

Composer 安装命令:

composer require daycry/iban

包简介

IBAN library for CodeIgniter 4 (validation, parsing, formatting and entity resolution), usable standalone too.

README 文档

README

Tests Coverage Status

PHPStan Code Style CodeQL

Latest Stable Version Total Downloads License PHP Version Require

PHPStan Level Code Style

Stars Forks Issues

Daycry Iban

IBAN validation, parsing, formatting and bank-entity resolution for CodeIgniter 4 — usable standalone, with a zero-dependency core.

composer require daycry/iban

Status: v1.2 — feature-complete

Version v1.2.0
Test suite 1,036 tests / 2,699 assertions, green
Static analysis PHPStan level 8, clean (src + tests, with the CodeIgniter PHPStan extension)
Code style PSR-12 (PHP-CS-Fixer), clean
Country coverage 78 countries (structural registry)
National check-digit validators 9 countries: ES, BE, PT, SI, FI, FR (+MC), IT (+SM)
Bundled bank-data importers 30, incl. the EPC SEPA Register (GB/GI/IE/LV/RO) — none bundle data, iban:update runs them on demand; 24 of 42 SEPA countries resolve
Design spec docs/superpowers/specs/2026-07-10-daycry-iban-v1-design.md
Changelog CHANGELOG.md
Roadmap docs/roadmap.md

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

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: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 8 ViolationCode cases, the national validators, caching, and the Config\Iban options: see docs/usage.md. Importer/iban:update reference: see docs/importers.md.

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 ParsedIban value object.
  • Three output formats: Electronic (canonical, no spaces), Print (space-grouped every 4 chars), Anonymized (country code + last 4 digits visible, rest masked). See docs/formatting.md.
  • Pluggable bank-entity resolver: resolve() always returns a BankResult; bank fields stay null with the default NullProvider, or get filled in by the optional DatabaseProvider once you seed the banks table — optionally cached via Providers\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) — see docs/usage.md for the algorithm per country (Estonia is deliberately not covered — its real algorithm needs bank-specific data the IBAN doesn't carry).
  • 30 bundled bank-data importers, none of them bundling any actual data: iban:update lists/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. See docs/importers.md for the full list and coverage matrix.
  • Zero-dependency core: Daycry\Iban\Iban and everything under Core/, Contracts/, DTO/, Enums/, Exceptions/, Registry/, National/, Resolver/ never import CodeIgniter — usable in a plain php -r script, a CLI tool, or any other framework. (The package as a whole additionally requires ext-mbstring, ext-iconv and ext-zip, used by the bundled importers to normalize source encodings and read .xlsx sources.)
  • First-class CI4 integration: service('iban'), helper('iban'), Config\Iban, and 4 spark commands (iban:validate, iban:parse, iban:resolve, iban:update) — 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 8 ViolationCode cases, national check-digit validators, resolve() with NullProvider/DatabaseProvider/CachedProvider, Config\Iban reference.
  • docs/importers.md — the bank-data importer framework, iban:update reference, the 30 bundled official-source importers with a coverage matrix, and how to write a custom one.
  • docs/formatting.mdElectronic / Print / Anonymized formats, with the exact Anonymized mask 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,036 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.

统计信息

  • 总下载量: 2
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-07-11

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固