Skip to content

Commit aa39715

Browse files
FRW-8801 Dropped PHP 8.1 support. (#92)
FRW-8801 Switched PHP version from 8.1 to 8.2 by default, enabled support of PHP 8.3.
1 parent e50bccb commit aa39715

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
fail-fast: false
3030
matrix:
3131
php-version: [
32-
'8.1',
33-
'8.2'
32+
'8.2',
33+
'8.3'
3434
]
3535

3636
steps:
@@ -91,7 +91,7 @@ jobs:
9191
fail-fast: false
9292
matrix:
9393
php-version: [
94-
'8.1'
94+
'8.2'
9595
]
9696

9797
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# EventBehavior Module
22
[![CI](https://github.com/spryker/event-behavior/workflows/CI/badge.svg?branch=master)](https://github.com/spryker/event-behavior/actions?query=workflow%3ACI+branch%3Amaster)
33
[![Latest Stable Version](https://poser.pugx.org/spryker/event-behavior/v/stable.svg)](https://packagist.org/packages/spryker/event-behavior)
4-
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.1-8892BF.svg)](https://php.net/)
4+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.2-8892BF.svg)](https://php.net/)
55

66
EventBehavior provides event-based propel behavior. By enabling this behavior in the Propel schema.xml, it will be able to add listeners to all events from the entities. Events could be of type create, update or delete.
77

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "EventBehavior module",
55
"license": "proprietary",
66
"require": {
7-
"php": ">=8.1",
7+
"php": ">=8.2",
88
"spryker/event": "^2.4.0",
99
"spryker/event-dispatcher-extension": "^1.0.0",
1010
"spryker/kernel": "^3.49.0",

phpcs.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
<rule ref="Spryker.Internal.SprykerDisallowFunctions">
2626
<properties>
27-
<!-- We want to prevent 8.2+ functions to break 8.1 compatibility -->
28-
<property name="phpVersion" value="8.1"/>
27+
<!-- We want to prevent 8.3+ functions to break 8.2 compatibility -->
28+
<property name="phpVersion" value="8.2"/>
2929
</properties>
3030
</rule>
3131

0 commit comments

Comments
 (0)