├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── docs ├── Pruefzifferberechnung.pdf ├── Pruefzifferberechnungsmethoden.pdf ├── Uebersicht_der_IBAN_Regeln_03_2014.pdf ├── Uebersicht_der_IBAN_Regeln_06_2013.pdf ├── Uebersicht_der_IBAN_Regeln_09_2013.pdf ├── Uebersicht_der_IBAN_Regeln_12_2013.pdf └── Uebersicht_der_IBAN_Regeln_12_2016.pdf ├── library └── IBAN │ ├── Autoloader.php │ ├── Core │ ├── Constants.php │ └── IBAN.php │ ├── Generation │ ├── IBANGenerator.php │ ├── IBANGeneratorAT.php │ ├── IBANGeneratorDE.php │ ├── IBANGeneratorES.php │ ├── IBANGeneratorMT.php │ └── IBANGeneratorNL.php │ ├── Rule │ ├── AT │ │ └── Rule000000.php │ ├── AbstractRule.php │ ├── DE │ │ ├── Rule000000.php │ │ ├── Rule000100.php │ │ ├── Rule000200.php │ │ ├── Rule000300.php │ │ ├── Rule000400.php │ │ ├── Rule000503.php │ │ ├── Rule000600.php │ │ ├── Rule000700.php │ │ ├── Rule000800.php │ │ ├── Rule000900.php │ │ ├── Rule001001.php │ │ ├── Rule001100.php │ │ ├── Rule001200.php │ │ ├── Rule001201.php │ │ ├── Rule001300.php │ │ ├── Rule001301.php │ │ ├── Rule001400.php │ │ ├── Rule001501.php │ │ ├── Rule001600.php │ │ ├── Rule001700.php │ │ ├── Rule001800.php │ │ ├── Rule001900.php │ │ ├── Rule002002.php │ │ ├── Rule002100.php │ │ ├── Rule002101.php │ │ ├── Rule002200.php │ │ ├── Rule002300.php │ │ ├── Rule002400.php │ │ ├── Rule002500.php │ │ ├── Rule002600.php │ │ ├── Rule002700.php │ │ ├── Rule002800.php │ │ ├── Rule002900.php │ │ ├── Rule003000.php │ │ ├── Rule003100.php │ │ ├── Rule003101.php │ │ ├── Rule003200.php │ │ ├── Rule003300.php │ │ ├── Rule003301.php │ │ ├── Rule003400.php │ │ ├── Rule003500.php │ │ ├── Rule003501.php │ │ ├── Rule003600.php │ │ ├── Rule003700.php │ │ ├── Rule003800.php │ │ ├── Rule003900.php │ │ ├── Rule004001.php │ │ ├── Rule004100.php │ │ ├── Rule004200.php │ │ ├── Rule004201.php │ │ ├── Rule004300.php │ │ ├── Rule004301.php │ │ ├── Rule004400.php │ │ ├── Rule004500.php │ │ ├── Rule004501.php │ │ ├── Rule004600.php │ │ ├── Rule004700.php │ │ ├── Rule004800.php │ │ ├── Rule004900.php │ │ ├── Rule005000.php │ │ ├── Rule005100.php │ │ ├── Rule005200.php │ │ ├── Rule005300.php │ │ ├── Rule005400.php │ │ ├── Rule005401.php │ │ ├── Rule005500.php │ │ ├── Rule005600.php │ │ └── Rule005700.php │ ├── ES │ │ └── Rule000000.php │ ├── Exception │ │ ├── RuleNotYetImplementedException.php │ │ ├── RulesFileNotFoundException.php │ │ └── UnknownRuleException.php │ ├── MT │ │ └── Rule000000.php │ ├── NL │ │ └── Rule000000.php │ ├── RuleFactory.php │ └── RuleFactoryInterface.php │ └── Validation │ └── IBANValidator.php ├── script ├── 20130609 │ ├── BLZ2_20130606.csv │ └── rules_20130609.php ├── 20130909 │ ├── BLZ2_20130909.csv │ └── rules_20130909.php ├── 20131209 │ ├── BLZ2_20131209.csv │ └── rules_20131209.php ├── 20140303 │ ├── BLZ2_20140303.csv │ └── rules_20140303.php ├── 20161205 │ ├── BLZ2_20161205.csv │ └── rules_20161205.php ├── 20170306 │ ├── BLZ2_20170306.csv │ └── rules_20170306.php └── format_ibans.py └── tests ├── bootstrap.php ├── data ├── generation.data ├── invalidibans.csv └── validibans.csv ├── library └── IBAN │ ├── Core │ └── IBANTest.php │ ├── Generation │ └── IBANGeneratorTest.php │ ├── Rule │ └── RuleFactoryTest.php │ └── Validation │ ├── CsvFileIterator.php │ └── IBANValidatorTest.php └── phpunit.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/composer.json -------------------------------------------------------------------------------- /docs/Pruefzifferberechnung.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/docs/Pruefzifferberechnung.pdf -------------------------------------------------------------------------------- /docs/Pruefzifferberechnungsmethoden.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/docs/Pruefzifferberechnungsmethoden.pdf -------------------------------------------------------------------------------- /docs/Uebersicht_der_IBAN_Regeln_03_2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/docs/Uebersicht_der_IBAN_Regeln_03_2014.pdf -------------------------------------------------------------------------------- /docs/Uebersicht_der_IBAN_Regeln_06_2013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/docs/Uebersicht_der_IBAN_Regeln_06_2013.pdf -------------------------------------------------------------------------------- /docs/Uebersicht_der_IBAN_Regeln_09_2013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/docs/Uebersicht_der_IBAN_Regeln_09_2013.pdf -------------------------------------------------------------------------------- /docs/Uebersicht_der_IBAN_Regeln_12_2013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/docs/Uebersicht_der_IBAN_Regeln_12_2013.pdf -------------------------------------------------------------------------------- /docs/Uebersicht_der_IBAN_Regeln_12_2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/docs/Uebersicht_der_IBAN_Regeln_12_2016.pdf -------------------------------------------------------------------------------- /library/IBAN/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Autoloader.php -------------------------------------------------------------------------------- /library/IBAN/Core/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Core/Constants.php -------------------------------------------------------------------------------- /library/IBAN/Core/IBAN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Core/IBAN.php -------------------------------------------------------------------------------- /library/IBAN/Generation/IBANGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Generation/IBANGenerator.php -------------------------------------------------------------------------------- /library/IBAN/Generation/IBANGeneratorAT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Generation/IBANGeneratorAT.php -------------------------------------------------------------------------------- /library/IBAN/Generation/IBANGeneratorDE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Generation/IBANGeneratorDE.php -------------------------------------------------------------------------------- /library/IBAN/Generation/IBANGeneratorES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Generation/IBANGeneratorES.php -------------------------------------------------------------------------------- /library/IBAN/Generation/IBANGeneratorMT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Generation/IBANGeneratorMT.php -------------------------------------------------------------------------------- /library/IBAN/Generation/IBANGeneratorNL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Generation/IBANGeneratorNL.php -------------------------------------------------------------------------------- /library/IBAN/Rule/AT/Rule000000.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/AT/Rule000000.php -------------------------------------------------------------------------------- /library/IBAN/Rule/AbstractRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/AbstractRule.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule000000.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule000000.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule000100.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule000100.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule000200.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule000200.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule000300.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule000300.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule000400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule000400.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule000503.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule000503.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule000600.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule000600.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule000700.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule000700.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule000800.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule000800.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule000900.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule000900.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule001001.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule001001.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule001100.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule001100.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule001200.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule001200.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule001201.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule001201.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule001300.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule001300.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule001301.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule001301.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule001400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule001400.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule001501.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule001501.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule001600.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule001600.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule001700.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule001700.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule001800.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule001800.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule001900.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule001900.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule002002.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule002002.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule002100.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule002100.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule002101.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule002101.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule002200.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule002200.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule002300.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule002300.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule002400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule002400.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule002500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule002500.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule002600.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule002600.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule002700.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule002700.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule002800.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule002800.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule002900.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule002900.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003000.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003000.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003100.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003100.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003101.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003101.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003200.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003200.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003300.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003300.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003301.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003301.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003400.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003500.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003501.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003501.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003600.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003600.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003700.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003700.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003800.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003800.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule003900.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule003900.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004001.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004001.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004100.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004100.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004200.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004200.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004201.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004201.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004300.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004300.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004301.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004301.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004400.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004500.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004501.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004501.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004600.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004600.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004700.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004700.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004800.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004800.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule004900.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule004900.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule005000.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule005000.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule005100.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule005100.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule005200.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule005200.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule005300.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule005300.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule005400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule005400.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule005401.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule005401.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule005500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule005500.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule005600.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule005600.php -------------------------------------------------------------------------------- /library/IBAN/Rule/DE/Rule005700.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/DE/Rule005700.php -------------------------------------------------------------------------------- /library/IBAN/Rule/ES/Rule000000.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/ES/Rule000000.php -------------------------------------------------------------------------------- /library/IBAN/Rule/Exception/RuleNotYetImplementedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/Exception/RuleNotYetImplementedException.php -------------------------------------------------------------------------------- /library/IBAN/Rule/Exception/RulesFileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/Exception/RulesFileNotFoundException.php -------------------------------------------------------------------------------- /library/IBAN/Rule/Exception/UnknownRuleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/Exception/UnknownRuleException.php -------------------------------------------------------------------------------- /library/IBAN/Rule/MT/Rule000000.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/MT/Rule000000.php -------------------------------------------------------------------------------- /library/IBAN/Rule/NL/Rule000000.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/NL/Rule000000.php -------------------------------------------------------------------------------- /library/IBAN/Rule/RuleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/RuleFactory.php -------------------------------------------------------------------------------- /library/IBAN/Rule/RuleFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Rule/RuleFactoryInterface.php -------------------------------------------------------------------------------- /library/IBAN/Validation/IBANValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/library/IBAN/Validation/IBANValidator.php -------------------------------------------------------------------------------- /script/20130609/BLZ2_20130606.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/20130609/BLZ2_20130606.csv -------------------------------------------------------------------------------- /script/20130609/rules_20130609.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/20130609/rules_20130609.php -------------------------------------------------------------------------------- /script/20130909/BLZ2_20130909.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/20130909/BLZ2_20130909.csv -------------------------------------------------------------------------------- /script/20130909/rules_20130909.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/20130909/rules_20130909.php -------------------------------------------------------------------------------- /script/20131209/BLZ2_20131209.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/20131209/BLZ2_20131209.csv -------------------------------------------------------------------------------- /script/20131209/rules_20131209.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/20131209/rules_20131209.php -------------------------------------------------------------------------------- /script/20140303/BLZ2_20140303.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/20140303/BLZ2_20140303.csv -------------------------------------------------------------------------------- /script/20140303/rules_20140303.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/20140303/rules_20140303.php -------------------------------------------------------------------------------- /script/20161205/BLZ2_20161205.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/20161205/BLZ2_20161205.csv -------------------------------------------------------------------------------- /script/20161205/rules_20161205.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/20161205/rules_20161205.php -------------------------------------------------------------------------------- /script/20170306/BLZ2_20170306.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/20170306/BLZ2_20170306.csv -------------------------------------------------------------------------------- /script/20170306/rules_20170306.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/20170306/rules_20170306.php -------------------------------------------------------------------------------- /script/format_ibans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/script/format_ibans.py -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/data/generation.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/tests/data/generation.data -------------------------------------------------------------------------------- /tests/data/invalidibans.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/tests/data/invalidibans.csv -------------------------------------------------------------------------------- /tests/data/validibans.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/tests/data/validibans.csv -------------------------------------------------------------------------------- /tests/library/IBAN/Core/IBANTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/tests/library/IBAN/Core/IBANTest.php -------------------------------------------------------------------------------- /tests/library/IBAN/Generation/IBANGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/tests/library/IBAN/Generation/IBANGeneratorTest.php -------------------------------------------------------------------------------- /tests/library/IBAN/Rule/RuleFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/tests/library/IBAN/Rule/RuleFactoryTest.php -------------------------------------------------------------------------------- /tests/library/IBAN/Validation/CsvFileIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/tests/library/IBAN/Validation/CsvFileIterator.php -------------------------------------------------------------------------------- /tests/library/IBAN/Validation/IBANValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/tests/library/IBAN/Validation/IBANValidatorTest.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaedl/Iban/HEAD/tests/phpunit.xml --------------------------------------------------------------------------------