Skip to content

Commit

Permalink
Merge pull request #59 from jolicode/sf-7
Browse files Browse the repository at this point in the history
Added support Symfony 7.0 and PHP 8.3
  • Loading branch information
pyrech authored Dec 3, 2023
2 parents d1ac32e + ee34be9 commit 34d89b5
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['8.0', '8.1', '8.2']
php-version: ['8.2', '8.3']
minimum-stability: ['']
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 released yet

* Updated GIF optimization command
* Dropped support for PHP < 8.1
* Added support for PHP 8.3
* Added support for Symfony 7.0

## 1.8.1 (2023-06-07)

Expand Down
30 changes: 15 additions & 15 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,27 @@
}
},
"require": {
"php": ">=8.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/twig-bundle": "^5.4 || ^6.0"
"php": ">=8.1",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/twig-bundle": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"doctrine/annotations": "^2.0",
"friendsofphp/php-cs-fixer": "^3.17",
"phpstan/phpstan": "^1.10",
"ps/image-optimizer": "^1.0.4 || ^2.0",
"symfony/asset": "^5.4 || ^6.0",
"symfony/browser-kit": "^5.4 || ^6.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/console": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/error-handler": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/monolog-bundle": "^3.8",
"symfony/phpunit-bridge": "^6.3",
"symfony/stopwatch": "^5.4 || ^6.0",
"symfony/web-profiler-bundle": "^5.4 || ^6.0",
"symfony/yaml": "^5.4 || ^6.0"
"symfony/asset": "^5.4 || ^6.0 || ^7.0",
"symfony/browser-kit": "^5.4 || ^6.0 || ^7.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/error-handler": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
"symfony/monolog-bundle": "^3.8 || ^7.0",
"symfony/phpunit-bridge": "^6.3 || ^7.0",
"symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
"symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0"
},
"config": {
"preferred-install": {
Expand Down

0 comments on commit 34d89b5

Please sign in to comment.