diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2d1f264..17650fa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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' ] diff --git a/CHANGELOG.md b/CHANGELOG.md index e153636..d9175c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 22e1422..a1de915 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/composer.json b/composer.json index 3f33c59..046a748 100644 --- a/composer.json +++ b/composer.json @@ -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."