From 7ff45309c5d9aa315ddea1e7ea70e48689f59e1a 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 7f8a699..62b1db0 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # MonitoringExtension Module
 [![Latest Stable Version](https://poser.pugx.org/spryker/monitoring-extension/v/stable.svg)](https://packagist.org/packages/spryker/monitoring-extension)
-[![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/)
 
 Module provides extension plugin interfaces for Spryker's Monitoring module.
 
diff --git a/composer.json b/composer.json
index d959683..231e1bb 100644
--- a/composer.json
+++ b/composer.json
@@ -4,7 +4,7 @@
     "description": "MonitoringExtension module",
     "license": "proprietary",
     "require": {
-        "php": ">=8.1"
+        "php": ">=8.2"
     },
     "require-dev": {
         "spryker/code-sniffer": "*"