Skip to content

Commit 84d41a5

Browse files
authored
Merge pull request #14 from dmytrome/update-min-symfony-version
Update min symfony version to ^7.0.0
2 parents 6aa8109 + 3423a6b commit 84d41a5

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,18 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest]
1212
php: [8.1, 8.2]
13-
symfony: [5.4.*, 6.2.*]
13+
symfony: [5.4.*, 6.3.*, 6.4.*, 7.0.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
15+
include:
16+
- php: "8.1"
17+
symfony: "^5.4"
18+
- php: "8.1"
19+
symfony: "^6.3"
20+
- php: "8.1"
21+
symfony: "^6.4"
22+
exclude:
23+
- php: "8.1"
24+
symfony: "^7.0"
1525

1626
name: Tests P${{ matrix.php }} - SF${{ matrix.symfony }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
1727
steps:

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@
2020
"openai-php/client": "^0.8.0",
2121
"psr/http-client": "^1.0.3",
2222
"psr/http-factory": "^1.0.2",
23-
"symfony/config": "^5.4.21|^6.3.8",
24-
"symfony/dependency-injection": "^5.4.21|^6.3.8",
25-
"symfony/http-client": "^5.4.21|^6.3.8",
26-
"symfony/http-kernel": "^5.4.21|^6.3.8"
23+
"symfony/config": "^5.4|^6.3|^7.0",
24+
"symfony/dependency-injection": "^5.4|^6.3|^7.0",
25+
"symfony/http-client": "^5.4|^6.3|^7.0",
26+
"symfony/http-kernel": "^5.4|^6.3|^7.0"
2727
},
2828
"require-dev": {
2929
"laravel/pint": "^1.13.6",
3030
"phpstan/phpstan": "^1.10.44",
3131
"rector/rector": "^0.14.8",
32-
"symfony/phpunit-bridge": "^6.3.8"
32+
"symfony/phpunit-bridge": "^5.4|^6.3|^7.0"
3333
},
3434
"autoload": {
3535
"psr-4": {

0 commit comments

Comments
 (0)