From b3ff1188a08f943c965fa39867c0d3e6f512c1be Mon Sep 17 00:00:00 2001 From: Anton Smarovydlo Date: Thu, 2 Nov 2023 21:09:27 +0100 Subject: [PATCH] FRW-998 Switched PHP version from 8.0 to 8.1 by default, enabled support of PHP 8.2. (#10577) FRW-998 Dropped PHP 8.0 and added PHP 8.2 support. --- .github/workflows/ci.yml | 4 ++-- README.md | 2 +- composer.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 24afc4b..e851193 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.0' + php-version: '8.2' extensions: mbstring, intl, bcmath coverage: none @@ -41,7 +41,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.0' + php-version: '8.1' extensions: mbstring, intl, bcmath coverage: none diff --git a/README.md b/README.md index cce43a0..2cd1fb4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Locale Module [![Latest Stable Version](https://poser.pugx.org/spryker/locale/v/stable.svg)](https://packagist.org/packages/spryker/locale) -[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.0-8892BF.svg)](https://php.net/) +[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.1-8892BF.svg)](https://php.net/) Locale provides database structure and initial data for locales. It provides API to create, delete, and read locales, as well as to retrieve the current locale in the Storage. diff --git a/composer.json b/composer.json index ce2ee24..5c7aa68 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "description": "Locale module", "license": "proprietary", "require": { - "php": ">=8.0", + "php": ">=8.1", "spryker/acl-merchant-portal-extension": "^1.0.0", "spryker/application-extension": "^1.0.0", "spryker/event-dispatcher-extension": "^1.0.0",