Skip to content

Commit 4884579

Browse files
committed
Add support for sf 7 and PHP 8.3
Also drop support for PHP 8.0
1 parent 5dbad85 commit 4884579

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
php-version: ['8.1', '8.2']
29+
php-version: ['8.2', '8.3']
3030
composer-flags: ['']
3131
name: ['']
3232
include:
33-
- php-version: 8.0
33+
- php-version: 8.1
3434
composer-flags: '--prefer-lowest'
3535
name: '(prefer lowest dependencies)'
3636
steps:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
## Not yet released
44

55
* Deprecated Joli\JoliNotif\Util\OsHelper in favor of jolicode/php-os-helper package
6+
* Added support for Symfony 7.x
7+
* Added support for PHP 8.3
8+
* Dropped support for PHP 8.0
69

710
## 2.5.2 (2023-05-24)
811

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
}
2222
},
2323
"require": {
24-
"php": ">=8.0",
24+
"php": ">=8.1",
2525
"jolicode/php-os-helper": "^0.1.0",
26-
"symfony/process": "^5.4 || ^6.0"
26+
"symfony/process": "^5.4 || ^6.0 || ^7.0"
2727
},
2828
"require-dev": {
2929
"friendsofphp/php-cs-fixer": "^3.13",
30-
"symfony/finder": "^5.4 || ^6.0",
31-
"symfony/phpunit-bridge": "^5.4 || ^6.0"
30+
"symfony/finder": "^5.4 || ^6.0 || ^7.0",
31+
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0"
3232
},
3333
"bin": [
3434
"jolinotif"

0 commit comments

Comments
 (0)