Skip to content

Commit

Permalink
FRW-8801 Upgraded php ver
Browse files Browse the repository at this point in the history
  • Loading branch information
olhalivitchuk committed Sep 5, 2024
1 parent 46f67b3 commit d4382c5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
php-version: [
'8.2'
'8.3'
]

steps:
Expand Down Expand Up @@ -54,14 +54,14 @@ jobs:

- name: Codeception tests
run: |
if [[ ${{ matrix.php-version }} == '8.1' ]]; then
if [[ ${{ matrix.php-version }} == '8.2' ]]; then
XDEBUG_MODE=coverage vendor/bin/codecept run --coverage-xml
else
vendor/bin/codecept run
fi
- name: Code Coverage Report
if: success() && matrix.php-version == '8.1'
if: success() && matrix.php-version == '8.2'
uses: codecov/codecov-action@v1

prefer-lowest:
Expand All @@ -70,7 +70,7 @@ jobs:
fail-fast: false
matrix:
php-version: [
'8.1'
'8.2'
]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
build:
environment:
php: '8.1'
php: '8.2'

tests:
override:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![CI](https://github.com/spryker/install/workflows/CI/badge.svg?branch=master)](https://github.com/spryker/install/actions?query=workflow%3ACI+branch%3Amaster)
[![Coverage](https://codecov.io/gh/spryker/install/branch/master/graph/badge.svg?token=4AKCKMRg3G)](https://codecov.io/gh/spryker/install)
[![Latest Stable Version](https://poser.pugx.org/spryker/install/v/stable.svg)](https://packagist.org/packages/spryker/install)
[![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/)
[![License](https://img.shields.io/github/license/spryker/install.svg)](https://packagist.org/packages/spryker/install)

Install module handles project setup using recipes per environment.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Install module",
"license": "MIT",
"require": {
"php": ">=8.1",
"php": ">=8.2",
"spryker/kernel": "^3.30.0",
"spryker/log": "^3.0.0",
"spryker/monolog": "^2.0.0",
Expand Down

0 comments on commit d4382c5

Please sign in to comment.