Skip to content

Commit 78f6c9c

Browse files
FRW-8801 Switched PHP version from 8.1 to 8.2 by default, enabled support of PHP 8.3. (#11088)
FRW-8801 Switched PHP version from 8.1 to 8.2 by default, enabled support of PHP 8.3.
1 parent 90bd50b commit 78f6c9c

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: '8.2'
21+
php-version: '8.3'
2222
extensions: mbstring, intl, bcmath
2323
coverage: none
2424

@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup PHP
4242
uses: shivammathur/setup-php@v2
4343
with:
44-
php-version: '8.1'
44+
php-version: '8.2'
4545
extensions: mbstring, intl, bcmath
4646
coverage: none
4747

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Development Module
22
[![Latest Stable Version](https://poser.pugx.org/spryker/development/v/stable.svg)](https://packagist.org/packages/spryker/development)
3-
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.1-8892BF.svg)](https://php.net/)
3+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.2-8892BF.svg)](https://php.net/)
44

55
Development is a tooling module for (local) development.
66

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "proprietary",
66
"require": {
77
"nette/di": "^2.4.7 || ^3.2.0",
8-
"php": ">=8.1",
8+
"php": ">=8.2",
99
"phpmd/phpmd": "^2.0.0",
1010
"spryker/config": "^3.0.0",
1111
"spryker/graph": "^3.0.0",

ruleset.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
<rule ref="Spryker.Internal.SprykerDisallowFunctions">
2222
<properties>
23-
<!-- We want to prevent 8.2+ functions to break 8.1 compatibility -->
24-
<property name="phpVersion" value="8.1"/>
23+
<!-- We want to prevent 8.3+ functions to break 8.2 compatibility -->
24+
<property name="phpVersion" value="8.2"/>
2525
</properties>
2626
</rule>
2727

rulesetStrict.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
<rule ref="Spryker.Internal.SprykerDisallowFunctions">
2222
<properties>
23-
<!-- We want to prevent 8.2+ functions to break 8.1 compatibility -->
24-
<property name="phpVersion" value="8.1"/>
23+
<!-- We want to prevent 8.3+ functions to break 8.2 compatibility -->
24+
<property name="phpVersion" value="8.2"/>
2525
</properties>
2626
</rule>
2727

src/Spryker/Zed/Development/Business/CodeBuilder/Module/Templates/README.md.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# {module} Module
22
[![Latest Stable Version](https://poser.pugx.org/{namespaceDashed}/{moduleDashed}/v/stable.svg)](https://packagist.org/packages/{namespaceDashed}/{moduleDashed})
3-
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.1-8892BF.svg)](https://php.net/)
3+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.2-8892BF.svg)](https://php.net/)
44

55
{{ADD DESCRIPTION HERE}}
66

0 commit comments

Comments
 (0)