Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
fail-fast: false
matrix:
php-version: [
'8.2',
'8.3'
'8.3',
'8.4'
]

steps:
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
fail-fast: false
matrix:
php-version: [
'8.2'
'8.3'
]

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# EventBehavior Module
[![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)
[![Latest Stable Version](https://poser.pugx.org/spryker/event-behavior/v/stable.svg)](https://packagist.org/packages/spryker/event-behavior)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.2-8892BF.svg)](https://php.net/)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.3-8892BF.svg)](https://php.net/)

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.

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "EventBehavior module",
"license": "proprietary",
"require": {
"php": ">=8.2",
"php": ">=8.3",
"spryker/event": "^2.4.0",
"spryker/event-dispatcher-extension": "^1.0.0",
"spryker/kernel": "^3.72.0",
Expand Down
4 changes: 2 additions & 2 deletions phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@

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

Expand Down
Loading