A small library for validating International Bankaccount Numbers (IBANs) based on the IBAN Registry provided by SWIFT

Overview

iban-validation

StandWithUkraine

SWUbanner

A message to Russian 🇷🇺 people

If you currently live in Russia, please read this message.

Purpose

A small library for validating International Bankaccount Numbers (IBANs) based on the IBAN Registry provided by SWIFT. See https://www.swift.com/standards/data-standards/iban for more information.

PHP Version Latest Stable Version Latest Unstable Version Total Downloads License

Development status

This library is ready to use. The Iban validation should be fine, but there is no warranty. Please use it at your own risk.


Features

  • full country support of IBAN validation based on SWIFT Registry
  • customizable violation messages
  • simple to use object-oriented api
  • high test coverage
  • DIC friendly

Installation

To install jschaedl/iban-validation via composer use

$ composer require jschaedl/iban-validation

You can see this library on Packagist.


Iban Validation



use Iban\Validation\Validator;
use Iban\Validation\Iban;

$iban = new Iban('DE89 3704 0044 0532 0130 00');
$validator = new Validator();

if (!$validator->validate($iban)) {
    foreach ($validator->getViolations() as $violation) {
        echo $violation;
    }
}

You can also customize the violation messages by providing them via configuration. Just create a Validator passing a config array as constructor argument.



use Iban\Validation\Validator;

$validator = new Validator([
    'violation.unsupported_country' => 'The requested country is not supported!',
    'violation.invalid_length' => 'The length of the given Iban is not valid!',
    'violation.invalid_format' => 'The format of the given Iban is not valid!',
    'violation.invalid_checksum' => 'The checksum of the given Iban is not valid!',
]);

Iban Information



use Iban\Validation\Iban;
use Iban\Validation\CountryInfo;

$iban = new Iban('IBAN DE89 3704 0044 0532 0130 00');
$iban->countryCode(); // 'DE'
$iban->checksum(); // '89'
$iban->bban(); // '370400440532013000'
$iban->bbanBankIdentifier(); // '37040044'
$iban->format(Iban::FORMAT_PRINT); // 'DE89 3704 0044 0532 0130 00'
$iban->format(Iban::FORMAT_ELECTRONIC); // 'DE89370400440532013000'
$iban->format(Iban::FORMAT_ANONYMIZED); // 'XXXXXXXXXXXXXXXXXX3000'

$countryInfo = new CountryInfo('DE');
$countryInfo->getCountryName(); // 'Germany'
$countryInfo->getIbanStructureSwift(); // 'DE2!n8!n10!n'
$countryInfo->getBbanStructureSwift(); // '8!n10!n'
$countryInfo->getIbanRegex(); // '/^DE\d{2}\d{8}\d{10}$/'
$countryInfo->getBbanRegex(); // '/^\d{8}\d{10}$/'
$countryInfo->getIbanLength(); // 22
$countryInfo->getBbanLength(); // 18
$countryInfo->getIbanPrintExample(); // 'DE89 3704 0044 0532 0130 00'
$countryInfo->getIbanElectronicExample(); // 'DE89370400440532013000'

How to contribute

If you want to fix some bugs or want to enhance some functionality, please fork one of the release branches and create your own development branch. Then fix the bug you found or add your enhancements and make a pull request. Please commit your changes in tiny steps and add a detailed description on every commit.

Unit Testing

All pull requests must be accompanied by passing unit tests. This repository uses PHPUnit and Composer. You must run composer --dev install to install this package's dependencies. You can run the tests via:

$ vendor/bin/phpunit

Author

Jan Schädlich

Contributors

License

MIT License

Comments
  • Iban\Validation\Validator::validate without violations

    Iban\Validation\Validator::validate without violations

    I was able to use like below but Iban\Validation\Validator class has the final keyword is blocking now and I can't extend anymore.

    I don't need any violation list because it does not matter when one of these validations is failed.

    namespace App\Service;
    
    use Iban\Validation\Validator;
    
    class IbanValidator extends Validator
    {
    
        public function validate($iban)
        {
            $this->validateCountryCode($iban);
            $this->validateLength($iban);
            $this->validateFormat($iban);
            $this->validateChecksum($iban);
        }
    
    }
    

    Then I can handle validation issues in try catch like below.

    class SomeController extends AbstractController {
    
        #[Route('/user/iban-review/{iban}', name: 'user-iban-preview')]
        public function previewAction(string $iban): JsonResponse
        {
            try {
    
                return $this->json([
                    'success' => true,
                    'result' => $this->ibanParser->parse(new Iban($iban))
                ], 200, [], ['groups' => ['public']]);
    
            } catch (Throwable $exception) {
    
                return $this->json([
                    'success' => false,
                    'message' => $exception->getMessage()
                ]);
    
            }
    
        }
    }
    
    opened by tugrul 5
  • [2.x] Add support for php 8

    [2.x] Add support for php 8

    This PR add's support for php8.

    • php-cs-fixer had to be removed during build process, since it doesn't support php 8, yet
    • I upgraded the phpunit.xml.dist config to phpunit 9.3 standard
    • the Validator::bigIntModulo97 method had to drop it's nullable state, since phpstan correctly stated:
    Method Iban\Validation\Validator::bigIntModulo97() never returns null so it can be removed from the return typehint.
    
    opened by chris-doehring 5
  • Deprecation error when nothing is passed as an argument to Iban\Validation\Swift\Registry::__construct() function

    Deprecation error when nothing is passed as an argument to Iban\Validation\Swift\Registry::__construct() function

    When using this library, i get the following deprecation:

    Not implementing the "Iban\Validation\Swift\RegistryLoaderInterface" for argument "$registryLoader" is deprecated since 1.8.1.
    

    However, this is caused by the internal functions of this library, because they pass nothing to the Iban\Validation\Swift\Registry::__construct() function. That falls back to null, which results in the deprecation beeing triggered.

    This can easily be resolved by adding an ! is_null() check to the if statement that checks for the deprecation

    opened by menno-ll 4
  • v1.8.0 BC Break - missing RegistryLoader class

    v1.8.0 BC Break - missing RegistryLoader class

    Hello, I found a breaking change in a project I work on using a ^1.2 version constraint where the build fails when installing v1.8 as the Iban\Validation\Swift\RegistryLoader class does not exist anymore.

    Was it intentional or a refactor targetting a v2 ?

    opened by AymDev 4
  • YAML registry parsing is quite slow

    YAML registry parsing is quite slow

    As requested by: https://github.com/genkgo/camt/pull/110#pullrequestreview-813685962

    The registry loader is quite slow because it has to parse ~1200 lines of YAML before it does any validation.

    So for the use case in the CAMT package, it has to create a new validator for each IBAN it encounters. (our testing file has about 700 IBAN numbers and that takes quite awhile)

    My suggestion would be to use arrays instead of YAML, so it doesn't have to parse anything. What do you guys think?

    opened by stephanvdhorn 2
  • Get the bank code part

    Get the bank code part

    Hello, I think it's interesting the funcion that you can get the bank code of an iban for example to know the bank of the account and can associate with a table of banks that you have or whatever, what do you think?

    opened by sdecandelario 2
  • bcmod(): bcmath function argument is not well-formed in PHP 7.4

    bcmod(): bcmath function argument is not well-formed in PHP 7.4

    Hi,

    PHP 7.4 no longer suppresses malformed input for bcmath functions. See https://www.php.net/manual/en/migration74.incompatible.php

    If you try to validate the IBAN MCBKCWCU25727002 for example, the library will use BK as part of the checksum and make the call bcmod('12321230257270022212BK', '97', 0) in \Iban\Validation\Validator::local_bcmod. As you can see the first argument is not numeric and it leads to the error mentioned in the title.

    opened by bigwhoop 2
  • Migrate from jschaedl/iban

    Migrate from jschaedl/iban

    When I migrate to the new iban-validation package and try to validate an iban number, I get the following error:

    : Uncaught Error: Class 'Symfony\Component\Yaml\Parser' not found in lib/external/packages/symfony/yaml/Yaml.php:77 Stack trace: #0 lib/external/packages/jschaedl/iban-validation/src/Swift/RegistryLoader.php(41): Symfony\Component\Yaml\Yaml::parse('AD:\n country...') #1 lib/external/packages/jschaedl/iban-validation/src/Swift/Registry.php(37): Iban\Validation\Swift\RegistryLoader->load() #2 lib/external/packages/jschaedl/iban-validation/src/Validator.php(84): Iban\Validation\Swift\Registry->__construct() #3 lib/model/Supplier.php(40): Iban\Validation\Validator->__construct()

    opened by davidvandemaele 2
  • improve the Travis CI config

    improve the Travis CI config

    • copying the PHPUnit config is not necessary, PHPUnit will use the dist file by default anyway
    • caching Composer files will speed up successive builds
    • the --dev option is set by default on composer install
    • disable the Xdebug extension to speed up the test execution
    • use --prefer-dist instead of --prefer-source to speed up package installation
    opened by xabbuh 2
  • Configure Renovate

    Configure Renovate

    Mend Renovate

    Welcome to Renovate! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin.

    🚦 To activate Renovate, merge this Pull Request. To disable Renovate, simply close this Pull Request unmerged.


    Detected Package Files

    • composer.json (composer)
    • .github/workflows/coding-standards.yaml (github-actions)
    • .github/workflows/static-analysis.yaml (github-actions)
    • .github/workflows/tests.yaml (github-actions)

    Configuration

    🔡 Renovate has detected a custom config for this PR. Feel free to ask for help if you have any doubts and would like it reviewed.

    Important: Now that this branch is edited, Renovate can't rebase it from the base branch any more. If you make changes to the base branch that could impact this onboarding PR, please merge them manually.

    What to Expect

    With your current configuration, Renovate will create 2 Pull Requests:

    Update actions/cache action to v3
    • Schedule: ["at any time"]
    • Branch name: renovate/actions-cache-3.x
    • Merge into: master
    • Upgrade actions/cache to v3
    Update actions/checkout action to v3
    • Schedule: ["at any time"]
    • Branch name: renovate/actions-checkout-3.x
    • Merge into: master
    • Upgrade actions/checkout to v3

    ❓ Got questions? Check out Renovate's Docs, particularly the Getting Started section. If you need any further assistance then you can also request help here.


    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 1
  • [1.x] Add support for php 8

    [1.x] Add support for php 8

    As discussed in #53, this PR will add support for php 8 on the 1.x branch. I had to change the Symfony dependencies, since there were some php 8 compatibility fixes in the mentioned versions.

    opened by chris-doehring 1
  • Question - BIC Feature?

    Question - BIC Feature?

    Good morning, sir, Super IBAN verification library :) however do you know a library that allows via the iban to retrieve the BIC code? Or do you have in the future idea of developing this feature?

    And is there a possibility to retrieve only the key and not the error message? I use a custom rule in Laravel for IBAN checking and I would like to be able to return only the key of the error message so that I can translate it later in several languages.

    opened by quentingosset 1
Releases(v2.0.0)
  • v2.0.0(Dec 12, 2022)

    What's Changed

    • Introduce php-cs-fixer by @jschaedl in https://github.com/jschaedl/iban-validation/pull/35
    • Drop support for php71 and php72 by @jschaedl in https://github.com/jschaedl/iban-validation/pull/36
    • Added argument and return type hints by @jschaedl in https://github.com/jschaedl/iban-validation/pull/37
    • Introduced phpstan and applied rules by @jschaedl in https://github.com/jschaedl/iban-validation/pull/38
    • Introduced a Makefile for convenience by @jschaedl in https://github.com/jschaedl/iban-validation/pull/39
    • Fixed swift script by @jschaedl in https://github.com/jschaedl/iban-validation/pull/40
    • Improved Iban Validator by @jschaedl in https://github.com/jschaedl/iban-validation/pull/41
    • remove no longer needed PHP version check by @xabbuh in https://github.com/jschaedl/iban-validation/pull/42
    • Marked classes as final and introduced deprecations by @jschaedl in https://github.com/jschaedl/iban-validation/pull/43
    • Fix branch alias by @jschaedl in https://github.com/jschaedl/iban-validation/pull/44
    • Remove deprecations and make classes final by @jschaedl in https://github.com/jschaedl/iban-validation/pull/47
    • Fix minimum php version by @jschaedl in https://github.com/jschaedl/iban-validation/pull/48
    • Introduce phive and remove all dev dependencies by @jschaedl in https://github.com/jschaedl/iban-validation/pull/57
    • Update supported php version by @jschaedl in https://github.com/jschaedl/iban-validation/pull/58
    • Readme by @jschaedl in https://github.com/jschaedl/iban-validation/pull/59
    • fix changelog by @jschaedl in https://github.com/jschaedl/iban-validation/pull/70
    • adjust readme by @jschaedl in https://github.com/jschaedl/iban-validation/pull/71
    • Make tests run on php82 by @jschaedl in https://github.com/jschaedl/iban-validation/pull/87
    • Various improvements by @jschaedl in https://github.com/jschaedl/iban-validation/pull/88
    • Fix CHANGELOG by @jschaedl in https://github.com/jschaedl/iban-validation/pull/89
    • Introduce workflow to support automatic releases by @jschaedl in https://github.com/jschaedl/iban-validation/pull/92
    • Update CHANGELOG.md by @markusramsak in https://github.com/jschaedl/iban-validation/pull/91
    • Cleanup test cases by @jschaedl in https://github.com/jschaedl/iban-validation/pull/93
    • Cleanup code regarding php8 by @jschaedl in https://github.com/jschaedl/iban-validation/pull/94
    • Introduce argument "throw" to Validator:validate() method by @jschaedl in https://github.com/jschaedl/iban-validation/pull/95
    • Makefile improvements by @jschaedl in https://github.com/jschaedl/iban-validation/pull/96

    New Contributors

    • @markusramsak made their first contribution in https://github.com/jschaedl/iban-validation/pull/91

    Full Changelog: https://github.com/jschaedl/iban-validation/compare/v1.8.3...v2.0.0

    Source code(tar.gz)
    Source code(zip)
  • v1.8.4(Dec 12, 2022)

  • v1.8.3(Dec 9, 2022)

  • v1.8.2(Mar 7, 2022)

  • v1.8.1(Dec 8, 2021)

    Released on December 9th 2021

    Changed

    • Deprecated the usage of class RegistryLoader, you should implement the RegistryLoaderInterface for custom Loaders. Thanks to @jschaedl!

    Fixed

    • Fixed https://github.com/jschaedl/iban-validation/issues/67. Thanks to @jschaedl!
    Source code(tar.gz)
    Source code(zip)
  • v1.8.0(Dec 6, 2021)

    Released on December 6th 2021

    Changed

    • Removed symfony/yaml dependency and loaded Swift registry data as PHP array to improve performance. Thanks to @jschaedl!
    • Added support for symfony/option-resolver version ^6. Thanks to @Philipp91!

    Updated

    • Updated iban registry to version 88. Thanks to @jschaedl!
      • IBANs for Libya can now be validated.

    Fixed

    Source code(tar.gz)
    Source code(zip)
  • v1.7.0(Dec 3, 2020)

    Version 1.7.0

    Released on December 3rd 2020

    Changed

    • Registry::isCountryAvailable() is supposed to be private, you should not rely on it anymore. Thanks to @jschaedl!
    • Iban::getNormalizedIban() is supposed to be private, use Iban::format() instead. Thanks to @jschaedl!
    • Marked RegexConverter as @internal, you should not rely on it anymore. Thanks to @jschaedl!
    • Marked RegexConverter as @final, you should not extend it anymore. Thanks to @jschaedl!
    • Marked Registry as @final, you should not extend it anymore. Thanks to @jschaedl!
    • Marked RegistryLoader as @final, you should not extend it anymore. Thanks to @jschaedl!
    • Marked CountryInfo as @final, you should not extend it anymore. Thanks to @jschaedl!
    • Marked Validator as @final, you should not extend it anymore. Thanks to @jschaedl!
    • Marked Iban as @final, you should not extend it anymore. Thanks to @jschaedl!
    • Changed the PHP version constraint to >=7.1 to allow PHP 8. Thanks to @chris-doehring!

    Deprecated

    • Deprecated method Iban::getCountryCode(), use Iban::countryCode() instead. Thanks to @jschaedl!
    • Deprecated method Iban::getChecksum(), use Iban::checksum() instead. Thanks to @jschaedl!
    • Deprecated method Iban::getBban(), use Iban::bban() instead. Thanks to @jschaedl!
    • Deprecated method Iban::getBbanBankIdentifier(), use Iban::bbanBankIdentifier() instead. Thanks to @jschaedl!
    • Deprecated method CountryInfo::getBbanBankIdentifierStartPos(), you should not rely on it anymore. Thanks to @jschaedl!
    • Deprecated method CountryInfo::getBbanBankIdentifierEndPos(), you should not rely on it anymore. Thanks to @jschaedl!
    Source code(tar.gz)
    Source code(zip)
  • v1.6(May 16, 2020)

  • v1.5(Feb 5, 2020)

    • [Bugfix] https://github.com/jschaedl/iban-validation/issues/24: properly fail on non-numeric country codes (@xabbuh)
    • [Fix] https://github.com/jschaedl/iban-validation/issues/23: run tests on PHP 7.3 and 7.4 (@xabbuh)
    Source code(tar.gz)
    Source code(zip)
  • v1.4(Nov 25, 2019)

  • v1.3(Apr 27, 2019)

  • v1.2(Dec 15, 2018)

  • v1.1(Sep 14, 2018)

Owner
Jan Schädlich
Jan Schädlich
A PHP 7.4+ library to consume the Confluent Schema Registry REST API

A PHP 7.4+ library to consume the Confluent Schema Registry REST API. It provides low level functions to create PSR-7 compliant requests that can be used as well as high level abstractions to ease developer experience.

Flix.TECH 38 Sep 1, 2022
This project is based on the problem statement provided by the Minstry of HRD (India) for Smart India Hackathon '17.

This project is based on the problem statement provided by the Minstry of HRD (India) for Smart India Hackathon '17. As per the given problem statement, we need to solve the problem of bunching of marks at certain level, and problem of high scorers being at disadvantageous position due to lower competitive percentile.

Saransh Dave 4 Oct 13, 2022
PHP 7+ Payment processing library. It offers everything you need to work with payments: Credit card & offsite purchasing, subscriptions, payouts etc. - provided by Forma-Pro

Supporting Payum Payum is an MIT-licensed open source project with its ongoing development made possible entirely by the support of community and our

Payum 1.7k Dec 27, 2022
Private Composer registry for private PHP packages on AWS Serverless

Tug Tug is a Composer private registry for private PHP packages installable with Composer (1 and 2). The main idea of this project is to have an inter

Fxp 33 Oct 5, 2022
Composer registry manager that help to easily switch to the composer repository you want

CRM - Composer Registry Manager Composer Registry Manager can help you easily and quickly switch between different composer repositories. 简体中文 Install

Tao 500 Dec 29, 2022
💳 WordPress/WooCoommerce Brazilian Fields in Registry

Brazilian Fields in WordPress Registry A wordpress plugin that can be used for customize your website. Brazilian fields are added to the wordpress reg

Vinicius Blazius Goulart 7 Sep 20, 2022
Backend repository of libreoupas project, fully written in PHP, using the datas provided by the University.

libreoupas-engine/fst-nancy Description libreoupas est un site Internet permettant aux étudiant de la Faculté des Strasbourg illkirsh d'avoir accès au

Clément Colné 5 Jan 6, 2022
A Magento implementation for validating JSON Structures against a given Schema

Zepgram JsonSchema A Magento implementation for validating JSON Structures against a given Schema with support for Schemas of Draft-3 or Draft-4. Base

Benjamin Calef 1 Nov 5, 2021
Tools for working with the SPDX license list and validating licenses.

composer/spdx-licenses SPDX (Software Package Data Exchange) licenses list and validation library. Originally written as part of composer/composer, no

Composer 1.4k Dec 26, 2022
Small convention based CQRS library for PHP

LiteCQRS for PHP Small naming-convention based CQRS library for PHP (loosely based on LiteCQRS for C#) that relies on the MessageBus, Command, EventSo

Benjamin Eberlei 560 Nov 20, 2022
Small library providing some functional programming tools for PHP, based on Rambda

Functional library for PHP. Features: set of useful functions helpful in functional programming all functions are automatically curried every array ca

Wojciech Nawalaniec 5 Jun 16, 2022
This package is used to validate the telephone numbers of the countries taken into account. It also makes it possible to verify that a number is indeed a number of an operator X

phone-number-checker This package is used to validate the telephone numbers of the countries taken into account. It also makes it possible to verify t

faso-dev 4 Feb 7, 2022
Xenon\LaravelBDSms is a sms gateway package for sending text message to Bangladeshi mobile numbers using several gateways like sslcommerz, greenweb, dianahost,metronet in Laravel framework

Xenon\LaravelBDSms is a sms gateway package for sending text message to Bangladeshi mobile numbers using several gateways for Laravel. You should use

Ariful Islam 95 Jan 3, 2023
Simple PHP package for add two numbers

Sum Simple PHP package for add two numbers Installation To get the latest version of Sum, simply require the project using Composer: composer require

Nazar 13 Nov 20, 2022
Laravel package to convert English numbers to Bangla number or Bangla text, Bangla month name and Bangla Money Format

Number to Bangla Number, Word or Month Name in Laravel | Get Wordpress Plugin Laravel package to convert English numbers to Bangla number or Bangla te

Md. Rakibul Islam 50 Dec 26, 2022
This example shows how to estimate pi, using generated random numbers that uniformly distributed.

php-estimatepi This example shows how to estimate pi, using generated random numbers that uniformly distributed. Every pair of numbers produced will b

Oğuzhan Cerit 1 Nov 26, 2021
Composer addon to efficiently get installed packages' version numbers

Package Versions composer/package-versions-deprecated is a fully-compatible fork of ocramius/package-versions which provides compatibility with Compos

Composer 1.4k Dec 27, 2022
Lavarel-based school management platform for small and medium institutions

About this project Academico is an open-source, Lavarel-based school management platform. Its main features include course management, enrolments mana

Academico 160 Dec 24, 2022
JsonCollectionParser - Event-based parser for large JSON collections (consumes small amount of memory)

Event-based parser for large JSON collections (consumes small amount of memory). Built on top of JSON Streaming Parser This packa

Max Grigorian 113 Dec 6, 2022