Skip to content

Commit

Permalink
Update Symfony requirements to supported versions
Browse files Browse the repository at this point in the history
  • Loading branch information
MisatoTremor committed Feb 28, 2024
1 parent 5c58f49 commit 133cae3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,9 @@ jobs:
# Tests the lowest set of dependencies
- php-version: "7.4"
dependencies: "lowest"
stability: "stable"
symfony-deprecations-helper: "weak"

# Test against highest set of dependencies
# Test against the highest set of dependencies
- php-version: "8.3"
dependencies: "highest"
stability: "dev"
Expand All @@ -57,8 +56,8 @@ jobs:
ini-values: "zend.assertions=1"

- name: "Enforce using stable dependencies"
run: "composer config minimum-stability stable"
if: "${{ matrix.stability == 'stable' }}"
if: "${{ matrix.composer-stability }}"
run: "composer config minimum-stability ${{ matrix.composer-stability }}"

- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v2"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ CHANGELOG
1.1.x
-----

* Update Symfony requirements to supported versions
* Remove unused workflow options
* Fix artifact path
* Update artifact and codecov GH actions
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"doctrine/annotations": "^1.13 || ^2.0",
"doctrine/doctrine-bundle": "^1.12 || ^2.0",
"doctrine/orm": "^2.8",
"symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/form": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/routing": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^4.4 || ^5.0 || ^6.0 || ^7.0"
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/form": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/routing": "^6.4 || ^7.0",
"symfony/phpunit-bridge": "^6.4 || ^7.0"
},
"conflict": {
"doctrine/annotations": "<1.13 || >=3.0"
Expand Down

0 comments on commit 133cae3

Please sign in to comment.