From c80b38b214673c722646b387eaf213a53a257832 Mon Sep 17 00:00:00 2001 From: Olha Livitchuk Date: Mon, 4 Nov 2024 15:52:15 +0200 Subject: [PATCH] FRW-8778 Increased min php version, increased nikic/parser dependency version --- .github/workflows/ci.yml | 6 +++--- README.md | 2 +- composer.json | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bd34026..a47880bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: php-version: [ - '8.0', + '8.1', '8.2', '8.3' ] @@ -57,14 +57,14 @@ jobs: - name: Run tests run: | - if [[ ${{ matrix.php-version }} == '8.0' ]]; then + if [[ ${{ matrix.php-version }} == '8.1' ]]; then XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover coverage.xml else composer test fi - name: Code Coverage Report - if: success() && matrix.php-version == '8.0' + if: success() && matrix.php-version == '8.1' uses: codecov/codecov-action@v1 - name: Composer require spryker-sdk/composer-prefer-lowest package diff --git a/README.md b/README.md index 703cc350..37a35247 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![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) [![codecov](https://codecov.io/gh/spryker-sdk/integrator/branch/master/graph/badge.svg?token=l6Xj26Cqei)](https://codecov.io/gh/spryker-sdk/integrator) [![Latest Stable Version](https://poser.pugx.org/spryker-sdk/integrator/v/stable.svg)](https://packagist.org/packages/spryker-sdk/integrator) -[![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/) [![PHPStan](https://img.shields.io/badge/PHPStan-level%208-brightgreen.svg?style=flat)](https://phpstan.org/) Auto-migrate applications in regard to new core releases using module manifests. diff --git a/composer.json b/composer.json index 0a7d18fe..c3718c92 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "description": "Integrator module", "license": "proprietary", "require": { - "php": ">=8.0", + "php": ">=8.1", "ext-dom": "*", "ext-json": "*", "ext-simplexml": "*", @@ -13,7 +13,7 @@ "composer/composer": "^2.6.0", "czproject/git-php": "^4.1", "guzzlehttp/guzzle": "^7.4", - "nikic/php-parser": "^4.13.0", + "nikic/php-parser": "^5.1.0", "sebastian/diff": "^4.0.0", "spryker-sdk/utils": "^0.2.2", "symfony/console": "^6.0",