Skip to content

Commit c80b38b

Browse files
committed
FRW-8778 Increased min php version, increased nikic/parser dependency version
1 parent 9059812 commit c80b38b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
php-version: [
17-
'8.0',
17+
'8.1',
1818
'8.2',
1919
'8.3'
2020
]
@@ -57,14 +57,14 @@ jobs:
5757

5858
- name: Run tests
5959
run: |
60-
if [[ ${{ matrix.php-version }} == '8.0' ]]; then
60+
if [[ ${{ matrix.php-version }} == '8.1' ]]; then
6161
XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover coverage.xml
6262
else
6363
composer test
6464
fi
6565
6666
- name: Code Coverage Report
67-
if: success() && matrix.php-version == '8.0'
67+
if: success() && matrix.php-version == '8.1'
6868
uses: codecov/codecov-action@v1
6969

7070
- name: Composer require spryker-sdk/composer-prefer-lowest package

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![Build Status](https://github.com/spryker-sdk/integrator/workflows/CI/badge.svg?branch=master)](https://github.com/spryker-sdk/integrator/actions?query=workflow%3ACI+branch%3Amaster)
33
[![codecov](https://codecov.io/gh/spryker-sdk/integrator/branch/master/graph/badge.svg?token=l6Xj26Cqei)](https://codecov.io/gh/spryker-sdk/integrator)
44
[![Latest Stable Version](https://poser.pugx.org/spryker-sdk/integrator/v/stable.svg)](https://packagist.org/packages/spryker-sdk/integrator)
5-
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.0-8892BF.svg)](https://php.net/)
5+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.1-8892BF.svg)](https://php.net/)
66
[![PHPStan](https://img.shields.io/badge/PHPStan-level%208-brightgreen.svg?style=flat)](https://phpstan.org/)
77

88
Auto-migrate applications in regard to new core releases using module manifests.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Integrator module",
55
"license": "proprietary",
66
"require": {
7-
"php": ">=8.0",
7+
"php": ">=8.1",
88
"ext-dom": "*",
99
"ext-json": "*",
1010
"ext-simplexml": "*",
@@ -13,7 +13,7 @@
1313
"composer/composer": "^2.6.0",
1414
"czproject/git-php": "^4.1",
1515
"guzzlehttp/guzzle": "^7.4",
16-
"nikic/php-parser": "^4.13.0",
16+
"nikic/php-parser": "^5.1.0",
1717
"sebastian/diff": "^4.0.0",
1818
"spryker-sdk/utils": "^0.2.2",
1919
"symfony/console": "^6.0",

0 commit comments

Comments
 (0)