Skip to content

Commit 3bbaadb

Browse files
committed
Add PHP 8.3 & Symfony 6.4 & 7.0 to CI
1 parent d6e8642 commit 3bbaadb

File tree

2 files changed

+43
-11
lines changed

2 files changed

+43
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 37 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,24 +96,56 @@ jobs:
9696
- php: '8.1'
9797
symfony: '6.3'
9898
dependencies: 'lowest'
99+
- php: '8.1'
100+
symfony: '6.4'
101+
dependencies: 'highest'
102+
- php: '8.1'
103+
symfony: '6.4'
104+
dependencies: 'lowest'
105+
99106
- php: '8.2'
100-
symfony: '6.1'
107+
symfony: '6.4'
101108
dependencies: 'highest'
102109
- php: '8.2'
103-
symfony: '6.1'
110+
symfony: '6.4'
104111
dependencies: 'lowest'
105112
- php: '8.2'
106-
symfony: '6.2'
113+
symfony: '7.0'
107114
dependencies: 'highest'
108115
- php: '8.2'
116+
symfony: '7.0'
117+
dependencies: 'lowest'
118+
119+
- php: '8.3'
120+
symfony: '6.1'
121+
dependencies: 'highest'
122+
- php: '8.3'
123+
symfony: '6.1'
124+
dependencies: 'lowest'
125+
- php: '8.3'
126+
symfony: '6.2'
127+
dependencies: 'highest'
128+
- php: '8.3'
109129
symfony: '6.2'
110130
dependencies: 'lowest'
111-
- php: '8.2'
131+
- php: '8.3'
112132
symfony: '6.3'
113133
dependencies: 'highest'
114-
- php: '8.2'
134+
- php: '8.3'
115135
symfony: '6.3'
116136
dependencies: 'lowest'
137+
- php: '8.3'
138+
symfony: '6.4'
139+
dependencies: 'highest'
140+
- php: '8.3'
141+
symfony: '6.4'
142+
dependencies: 'lowest'
143+
- php: '8.3'
144+
symfony: '7.0'
145+
dependencies: 'highest'
146+
- php: '8.3'
147+
symfony: '7.0'
148+
dependencies: 'lowest'
117149
env:
118150
SYMFONY_REQUIRE: ${{ matrix.symfony }}.*
119151
SYMFONY_PHPUNIT_VERSION: ${{ matrix.php >= 7.4 && '9.5' || '8.5' }}

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
"require": {
2121
"php": ">=7.2",
2222
"ext-dom": "*",
23-
"symfony/config": "^4.4 || ^5.2 || ^6.0",
24-
"symfony/console": "^4.4 || ^5.2 || ^6.0",
25-
"symfony/dependency-injection": "^4.4.2 || ^5.2 || ^6.0",
26-
"symfony/http-kernel": "^4.4 || ^5.2 || ^6.0",
27-
"symfony/process": "^4.4 || ^5.2 || ^6.0",
28-
"symfony/yaml": "^4.4 || ^5.2 || ^6.0"
23+
"symfony/config": "^4.4 || ^5.2 || ^6.0 || ^7.0",
24+
"symfony/console": "^4.4 || ^5.2 || ^6.0 || ^7.0",
25+
"symfony/dependency-injection": "^4.4.2 || ^5.2 || ^6.0 || ^7.0",
26+
"symfony/http-kernel": "^4.4 || ^5.2 || ^6.0 || ^7.0",
27+
"symfony/process": "^4.4 || ^5.2 || ^6.0 || ^7.0",
28+
"symfony/yaml": "^4.4 || ^5.2 || ^6.0 || ^7.0"
2929
},
3030
"require-dev": {
3131
"symfony/phpunit-bridge": "^6.4.1"

0 commit comments

Comments
 (0)