Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: [ '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
php-version: [ '8.1', '8.2', '8.3', '8.4', '8.5' ]
prefer-lowest: ['', '--prefer-lowest --prefer-stable']
coverage-driver: [ 'xdebug' ]

Expand Down
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.7.0](https://github.com/jschaedl/iban-validation/releases/tag/v2.7.0)

Released on December 2nd 2025

### Added

* Added support for Symfony 8. Thanks to [@Vincentv92](https://github.com/Vincentv92)!

---

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

Released on July 29th 2025

### Added

* Added support for PHP 8.5 in pipeline. Thanks to [@jschaedl](https://github.com/jschaedl)!

---

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

Released on December 2nd 2024
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ A small library for validating International Bankaccount Numbers (IBANs) based o
See https://www.swift.com/standards/data-standards/iban for more information.

[![.github/workflows/ci.yaml](https://github.com/jschaedl/iban-validation/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/jschaedl/iban-validation/actions/workflows/ci.yaml)
[![PHP Version](https://img.shields.io/badge/version-PHP%208.0%2B-lightblue.svg)](https://img.shields.io/badge/version-PHP%207.4%2B-lightgrey.svg)
[![PHP Version](https://img.shields.io/badge/version-PHP%208.1%2B-lightblue.svg)](https://img.shields.io/badge/version-PHP%208.1%2B-lightblue.svg)
[![Latest Stable Version](https://poser.pugx.org/jschaedl/iban-validation/v/stable)](https://packagist.org/packages/jschaedl/iban-validation)
[![Latest Unstable Version](https://poser.pugx.org/jschaedl/iban-validation/v/unstable)](https://packagist.org/packages/jschaedl/iban-validation)
[![Total Downloads](https://poser.pugx.org/jschaedl/iban-validation/downloads)](https://packagist.org/packages/jschaedl/iban-validation)
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
"dev-master": "3.x-dev"
}
},
"require" : {
"php" : "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"php" : "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-ctype": "*",
"symfony/options-resolver": "^5.4|^6|^7"
"symfony/options-resolver": "^5.4|^6|^7|^8"
},
"suggest": {
"ext-bcmath" : "This library makes use of bcmod function, so an installed bcmath extension is recommended."
Expand Down