Skip to content

Commit b4bb739

Browse files
feat(*): Allow Symfony 7 packages (#34)
1 parent 17ac075 commit b4bb739

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ jobs:
8787
run: ddev phpstan /var/www/html/${{env.EXTENSION_PATH}}/tools/coding-standards phpstan/phpstan.neon /var/www/html/${{env.EXTENSION_PATH}}/src
8888

8989
- name: Run PSALM
90+
if: contains(fromJson('["7.4","8.0","8.1"]'),matrix.php-version)
9091
run: ddev psalm ./${{env.EXTENSION_PATH}}/tools/coding-standards /var/www/html/${{env.EXTENSION_PATH}}/tools/coding-standards/psalm
9192

9293
- name: Prepare PHP UNIT tests

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,17 @@ The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this libra
1313
As far as possible, we try to adhere to [Symfony guidelines](https://symfony.com/doc/current/contributing/code/bc.html#working-on-symfony-code) when deciding whether a change is a breaking change or not.
1414

1515

16+
---
17+
18+
## [4.1.0](https://github.com/crowdsecurity/php-remediation-engine/releases/tag/v4.1.0) - 2025-01-16
19+
[_Compare with previous release_](https://github.com/crowdsecurity/php-remediation-engine/compare/v4.0.0...v4.1.0)
20+
21+
22+
### Changed
23+
24+
- Allow Symfony 7 packages
25+
26+
1627
---
1728

1829
## [4.0.0](https://github.com/crowdsecurity/php-remediation-engine/releases/tag/v4.0.0) - 2025-01-09

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@
4343
"require": {
4444
"php": "^7.2.5 || ^8.0",
4545
"ext-json": "*",
46-
"symfony/config": "^4.4.27 || ^5.2 || ^6.0",
47-
"symfony/cache": "^5.4.11|| ^6.0.11",
48-
"crowdsec/common": "^2.3.2",
49-
"crowdsec/capi-client": "^3.2.0",
50-
"crowdsec/lapi-client": "^3.4.0",
46+
"symfony/config": "^4.4.27 || ^5.2 || ^6.0 || ^7.2",
47+
"symfony/cache": "^5.4.11 || ^6.0.11 || ^7.2.1",
48+
"crowdsec/common": "^2.4.0",
49+
"crowdsec/capi-client": "^3.3.0",
50+
"crowdsec/lapi-client": "^3.5.0",
5151
"monolog/monolog": "^1.17 || ^2.1",
5252
"mlocati/ip-lib": "^1.18",
5353
"geoip2/geoip2": "^2.13.0"

src/Constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ class Constants extends CommonConstants
8989
/**
9090
* @var string The current version of this library
9191
*/
92-
public const VERSION = 'v4.0.0';
92+
public const VERSION = 'v4.1.0';
9393
}

0 commit comments

Comments
 (0)