Skip to content

Commit 1acf8cc

Browse files
Normalize version constraints to ^X.0
Purely cosmetic: ^5 and ^5.0 are the same composer constraint. The CI matrix exclude entries are updated in lockstep since they match by exact string comparison.
1 parent ab3bd32 commit 1acf8cc

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/unit-tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ jobs:
1212
strategy:
1313
matrix:
1414
php-version: [8.1, 8.2, 8.3, 8.4]
15-
symfony-version: [^5, ^6, ^7, ^8]
16-
glide-version: [^2, ^3]
15+
symfony-version: [^5.0, ^6.0, ^7.0, ^8.0]
16+
glide-version: [^2.0, ^3.0]
1717
dependencies: [lowest, stable]
1818
exclude:
1919
- php-version: 8.1
20-
symfony-version: ^7
20+
symfony-version: ^7.0
2121
- php-version: 8.1
22-
symfony-version: ^8
22+
symfony-version: ^8.0
2323
- php-version: 8.2
24-
symfony-version: ^8
24+
symfony-version: ^8.0
2525
- php-version: 8.3
26-
symfony-version: ^8
26+
symfony-version: ^8.0
2727
steps:
2828
- name: Checkout
2929
uses: actions/checkout@v4

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require": {
1919
"php": "^8.1",
2020
"league/glide": "^2.0|^3.0",
21-
"symfony/http-foundation": "^5|^6|^7|^8"
21+
"symfony/http-foundation": "^5.0|^6.0|^7.0|^8.0"
2222
},
2323
"require-dev": {
2424
"mockery/mockery": "^1.3.3",

0 commit comments

Comments
 (0)