Skip to content

Commit

Permalink
Merge pull request #11 from spryker-sdk/feature/frw-998/dev-php-upgra…
Browse files Browse the repository at this point in the history
…de-and-drop-8

FRW-998 Switched PHP version from 7.3 to 8.0 by default, enabled support of PHP 8.0 and 8.1.
  • Loading branch information
asmarovydlo committed Nov 2, 2023
2 parents 67851f6 + e976e99 commit fee54b2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -13,13 +13,13 @@ env:

jobs:
validation:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
php-version: [
'7.3',
'7.4'
'8.0',
'8.1'
]
steps:
- name: Checkout
Expand Down Expand Up @@ -56,12 +56,12 @@ jobs:
run: composer cs-check

prefer-lowest:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
php-version: [
'7.3'
'8.0'
]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .scrutinizer.yml
@@ -1,6 +1,6 @@
build:
environment:
php: '7.3'
php: '8.0'

tests:
override:
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
# ComposerReplace Module
[![CI](https://github.com/spryker-sdk/composer-replace/workflows/CI/badge.svg?branch=master)](https://github.com/spryker-sdk/composer-replace/actions?query=workflow%3ACI+branch%3Amaster)
[![Latest Stable Version](https://poser.pugx.org/spryker-sdk/composer-replace/v/stable.svg)](https://packagist.org/packages/spryker-sdk/composer-replace)
[![Minimum PHP Version](http://img.shields.io/badge/php-%3E%3D%207.3-8892BF.svg)](https://php.net/)
[![Minimum PHP Version](http://img.shields.io/badge/php-%3E%3D%208.0-8892BF.svg)](https://php.net/)
[![PHPStan](https://img.shields.io/badge/PHPStan-enabled-brightgreen.svg?style=flat)](https://github.com/phpstan/phpstan)

Composer addon to compute the replace section required for all directories containing a composer.json file in the defined non-split repositories.
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Expand Up @@ -4,8 +4,8 @@
"description": "ComposerReplace module",
"license": "proprietary",
"require": {
"php": ">=7.3",
"spryker/symfony": "^3.3.2"
"php": ">=8.0",
"spryker/symfony": "^3.3.3"
},
"require-dev": {
"spryker/code-sniffer": "*",
Expand Down
Expand Up @@ -23,7 +23,7 @@
* @method void comment($description)
* @method void pause()
*
* @SuppressWarnings(PHPMD)
* @SuppressWarnings(\SprykerSdkTest\Zed\ComposerReplace\PHPMD)
*/
class ComposerReplaceBusinessTester extends Actor
{
Expand Down

0 comments on commit fee54b2

Please sign in to comment.