Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SDK-5711: Drop support of PHP 7.4 #173

Merged
merged 10 commits into from
Jan 4, 2024
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ jobs:
fail-fast: false
matrix:
php-version: [
'7.4',
'8.1',
'8.0',
'8.2',
'8.3'
]
Expand Down Expand Up @@ -64,14 +63,14 @@ jobs:

- name: Run tests
run: |
if [[ ${{ matrix.php-version }} == '7.4' ]]; then
if [[ ${{ matrix.php-version }} == '8.0' ]]; then
XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover coverage.xml
else
composer test
fi

- name: Code Coverage Report
if: success() && matrix.php-version == '7.4'
if: success() && matrix.php-version == '8.0'
uses: codecov/codecov-action@v1

- name: Composer require spryker-sdk/composer-prefer-lowest package
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 @@
[![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%207.4-8892BF.svg)](https://php.net/)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.0-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.
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,29 @@
"description": "Integrator module",
"license": "proprietary",
"require": {
"php": ">=7.4",
"php": ">=8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-simplexml": "*",
"composer-plugin-api": "^1.0.0 || ^2.0.0",
"composer-plugin-api": "^2.0.0",
"aws/aws-sdk-php": "^3.257",
"composer/composer": "^2.6.0",
"czproject/git-php": "^4.1",
"guzzlehttp/guzzle": "^7.4",
"nikic/php-parser": "^4.13.0",
"sebastian/diff": "^4.0.0",
"spryker-sdk/utils": "^0.1.2",
"symfony/console": "^5.4 || ^6.0",
"symfony/finder": "^5.4 || ^6.0",
"symfony/process": "^5.4 || ^6.0"
"symfony/console": "^6.0",
"symfony/finder": "^6.0",
"symfony/process": "^6.0"
},
"require-dev": {
"ext-zip": "*",
"phpstan/phpstan": "^1.0.0",
"phpunit/phpunit": "^9.5.0",
"spryker-sdk/manifest-test-data-provider": "dev-master",
"spryker/code-sniffer": "0.17.18",
"symfony/filesystem": "^5.4 || ^6.0"
"spryker-sdk/manifest-test-data-provider": " dev-feature/sdk-5711-drop-php74",
"spryker/code-sniffer": "^0.17.19",
"symfony/filesystem": "^6.0"
},
"autoload": {
"psr-4": {
Expand Down
129 changes: 60 additions & 69 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading