From be8d22aa8bfe21f0819a5d1657f4c38b79903b7d Mon Sep 17 00:00:00 2001 From: Olha Livitchuk <77281282+olhalivitchuk@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:38:30 +0200 Subject: [PATCH] FRW-8801 Switched PHP version from 8.1 to 8.2 by default, enabled support of PHP 8.3. (#11088) FRW-8801 Switched PHP version from 8.1 to 8.2 by default, enabled support of PHP 8.3. --- .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 e851193..5d6b48f 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.2' + php-version: '8.3' extensions: mbstring, intl, bcmath coverage: none @@ -41,7 +41,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.2' extensions: mbstring, intl, bcmath coverage: none diff --git a/README.md b/README.md index 707ce23..3825367 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Store Module [![Latest Stable Version](https://poser.pugx.org/spryker/store/v/stable.svg)](https://packagist.org/packages/spryker/store) -[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.1-8892BF.svg)](https://php.net/) +[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.2-8892BF.svg)](https://php.net/) Store contains store related functionality. It provides store related information on request. Store can deliver current store information, information for all stores and information for a store requested by id. For a store currencies and locales can be retrieved. diff --git a/composer.json b/composer.json index be60a5b..8533385 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "description": "Store module", "license": "proprietary", "require": { - "php": ">=8.1", + "php": ">=8.2", "spryker/acl-merchant-portal-extension": "^1.0.0", "spryker/application-extension": "^1.0.0", "spryker/kernel": "^3.30.0",