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/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..108aa74 100644 --- a/composer.json +++ b/composer.json @@ -18,11 +18,11 @@ }, "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" },