Skip to content

Commit

Permalink
Merge pull request #327 from spryker-sdk/feature/frw-8773/updated-dep…
Browse files Browse the repository at this point in the history
…endencies

FRW-8773 Added PHP Unit 11 support.
  • Loading branch information
asmarovydlo authored Nov 7, 2024
2 parents 70b677e + 32b9c34 commit d983797
Show file tree
Hide file tree
Showing 20 changed files with 626 additions and 607 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
fail-fast: false
matrix:
php-version: [
'8.1',
'8.2',
'8.3'
]
Expand Down Expand Up @@ -61,14 +60,10 @@ jobs:

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

automerge:
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/upgrader/workflows/CI/badge.svg?branch=master)](https://github.com/spryker-sdk/upgrader/actions?query=workflow%3ACI+branch%3Amaster)
[![codecov](https://codecov.io/gh/spryker-sdk/upgrader/branch/master/graph/badge.svg?token=AVljwSGALQ)](https://codecov.io/gh/spryker-sdk/upgrader)
[![Latest Stable Version](https://poser.pugx.org/spryker-sdk/upgrader/v/stable.svg)](https://packagist.org/packages/spryker-sdk/upgrader)
[![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/)
[![PHPStan](https://img.shields.io/badge/PHPStan-level%208-brightgreen.svg?style=flat)](https://phpstan.org/)

## Upgrader
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Code evaluator and upgrader tool",
"license": "proprietary",
"require": {
"php": ">=8.1",
"php": ">=8.2",
"ext-json": "*",
"ext-simplexml": "*",
"composer/semver": "^3.3",
Expand All @@ -15,10 +15,10 @@
"knplabs/github-api": "^3.13",
"m4tthumphrey/php-gitlab-api": "^11.12",
"nette/neon": "^3.4",
"nikic/php-parser": "4.15.*",
"nikic/php-parser": "5.1.*",
"phpstan/phpstan": "^1.10",
"spryker-sdk/azure-php-client": "^0.2.1",
"spryker-sdk/integrator": "^0.1.1",
"spryker-sdk/integrator": "^0.1.6",
"spryker-sdk/sdk-contracts": "^0.5.0",
"spryker-sdk/utils": "^0.2.2",
"symfony/config": "^6.0",
Expand All @@ -37,10 +37,10 @@
"symfony/yaml": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpunit/phpunit": "^11.4.0",
"spryker/code-sniffer": "dev-master",
"mikey179/vfsstream": "^1.6.11",
"phpspec/prophecy-phpunit": "^2.0"
"phpspec/prophecy-phpunit": "^2.2"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit d983797

Please sign in to comment.