Skip to content

Commit

Permalink
Update registry to version 96: OM added, BY updated (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschaedl authored Mar 3, 2024
1 parent c8f1792 commit 48911a4
Show file tree
Hide file tree
Showing 5 changed files with 1,564 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# CHANGELOG

## [Version 2.4.0](https://github.com/jschaedl/iban-validation/releases/tag/v2.4.0)

Released on March 3rd 2024

### Updated

* Updated iban registry to version 96. Thanks to [@jschaedl](https://github.com/jschaedl)!

---

## [Version 2.3.0](https://github.com/jschaedl/iban-validation/releases/tag/v2.3.0)

Released on November 30th 2023

### Added

* Added support for symfony/option-resolver version `^7`. Thanks to [@jschaedl](https://github.com/jschaedl)!

---

## [Version 2.2.0](https://github.com/jschaedl/iban-validation/releases/tag/v2.2.0)

Released on November 23rd 2023
Expand Down
19 changes: 18 additions & 1 deletion Resource/iban_registry.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

// iban_registry_202307r95.txt
// iban_registry_202402r96.txt

return
[
Expand Down Expand Up @@ -1058,6 +1058,23 @@
'branch_identifier_structure' => '',
'branch_identifier_regex' => '',
],
'OM' => [
'country_name' => 'Oman',
'iban_structure' => 'OM2!n3!n16!c',
'bban_structure' => '3!n16!c',
'iban_regex' => '/^OM\\d{2}\\d{3}[A-Z0-9]{16}$/',
'bban_regex' => '/^\\d{3}[A-Z0-9]{16}$/',
'iban_length' => 23,
'bban_length' => 19,
'iban_electronic_format_example' => 'OM810180000001299123456',
'iban_print_format_example' => 'OM81 0180 0000 0129 9123 456',
'bank_identifier_position' => '1-3',
'bank_identifier_structure' => '3!n',
'bank_identifier_regex' => '/^\\d{3}$/',
'branch_identifier_position' => '',
'branch_identifier_structure' => '',
'branch_identifier_regex' => '',
],
'PL' => [
'country_name' => 'Poland',
'iban_structure' => 'PL2!n8!n16!n',
Expand Down
Loading

0 comments on commit 48911a4

Please sign in to comment.