Skip to content

Commit dcfa538

Browse files
authored
Merge pull request #97 from spryker/feature/frw-10648/master-updated-php
FRW-10648 Added PHP 8.4 Support.
2 parents a00c895 + a304608 commit dcfa538

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.2',
33-
'8.3'
32+
'8.3',
33+
'8.4'
3434
]
3535

3636
steps:
@@ -91,7 +91,7 @@ jobs:
9191
fail-fast: false
9292
matrix:
9393
php-version: [
94-
'8.2'
94+
'8.3'
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.2-8892BF.svg)](https://php.net/)
4+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.3-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.2",
7+
"php": ">=8.3",
88
"spryker/event": "^2.4.0",
99
"spryker/event-dispatcher-extension": "^1.0.0",
1010
"spryker/kernel": "^3.72.0",

phpcs.xml

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

3333
<rule ref="Spryker.Internal.SprykerDisallowFunctions">
3434
<properties>
35-
<!-- We want to prevent 8.3+ functions to break 8.2 compatibility -->
36-
<property name="phpVersion" value="8.2"/>
35+
<!-- We want to prevent 8.4+ functions to break 8.3 compatibility -->
36+
<property name="phpVersion" value="8.3"/>
3737
</properties>
3838
</rule>
3939

0 commit comments

Comments
 (0)