Skip to content

Commit

Permalink
Add support for sf 7 and PHP 8.3
Browse files Browse the repository at this point in the history
Also drop support for PHP 8.0
  • Loading branch information
pyrech committed Dec 3, 2023
1 parent 5dbad85 commit 4884579
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2']
php-version: ['8.2', '8.3']
composer-flags: ['']
name: ['']
include:
- php-version: 8.0
- php-version: 8.1
composer-flags: '--prefer-lowest'
name: '(prefer lowest dependencies)'
steps:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## Not yet released

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

## 2.5.2 (2023-05-24)

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
}
},
"require": {
"php": ">=8.0",
"php": ">=8.1",
"jolicode/php-os-helper": "^0.1.0",
"symfony/process": "^5.4 || ^6.0"
"symfony/process": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"symfony/finder": "^5.4 || ^6.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0"
"symfony/finder": "^5.4 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0"
},
"bin": [
"jolinotif"
Expand Down

0 comments on commit 4884579

Please sign in to comment.