Skip to content

Commit

Permalink
symfony 7
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed Feb 17, 2024
1 parent d1e3ba5 commit 2a575aa
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ jobs:
symfony-version: "6"

- php-version: "8.1"
symfony-version: "6"
- php-version: "8.2"
- php-version: "8.3"

steps:
- name: "Checkout project"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"

- name: "Install and configure PHP"
uses: "shivammathur/setup-php@v2"
Expand All @@ -45,7 +46,7 @@ jobs:
run: composer require --no-update symfony/flex && composer config extra.symfony.require ${{ matrix.symfony-version}}

- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v1"
uses: "ramsey/composer-install@v2"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "--prefer-dist"
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

3.0.2
-----

* Allow installation with Symfony 7.

3.0.1
-----

Expand Down
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@
],
"require": {
"php": "^8.0",
"symfony/routing": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/routing": "^6.0 || ^7.0",
"symfony/http-kernel": "^6.0 || ^7.0",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"doctrine/annotations": "^1.5",
"symfony/phpunit-bridge": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/config": "^6.0",
"symfony/event-dispatcher": "^6.0"
"symfony/phpunit-bridge": "^7.0.3",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/config": "^6.0 || ^7.0",
"symfony/event-dispatcher": "^6.0 || ^7.0"
},
"suggest": {
"symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version ^6.0"
Expand Down

0 comments on commit 2a575aa

Please sign in to comment.