File tree Expand file tree Collapse file tree 3 files changed +14
-9
lines changed Expand file tree Collapse file tree 3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 11
11
matrix :
12
12
php : [8.2, 8.3, 8.4]
13
13
symfony : [6.4.*, 7.3.*]
14
- dependency-version : [prefer- stable]
14
+ dependency-version : [stable]
15
15
include :
16
- - { php: 8.2, symfony: 6.4.*, dependency-version: prefer-lowest }
16
+ - { php: 8.2, symfony: 6.4.*, dependency-version: lowest }
17
+ - { php: 8.3, symfony: 7.4.*, dependency-version: highest }
18
+ - { php: 8.4, symfony: 8.0.*, dependency-version: highest }
17
19
18
20
env :
19
21
SYMFONY_REQUIRE : ${{ matrix.symfony-version }}
39
41
tools : flex
40
42
41
43
- name : Install Composer dependencies
42
- run : composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist
44
+ uses : ramsey/composer-install@v2
45
+ with :
46
+ dependency-versions : ${{ matrix.php }}
43
47
44
48
- name : Integration Tests
45
49
run : php ./vendor/bin/simple-phpunit
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9
9
- Refactored into a single ` OpenAI\Symfony\OpenAIBundle ` class
10
10
- Add ` project ` and ` base_uri ` configuration options
11
11
- Drop support for unsupported Symfony versions. Now requires Symfony 6.4 or 7.3+
12
+ - Add support for Symfony 8.0
12
13
13
14
## v0.12.0 (2025-05-06)
14
15
### Changed
Original file line number Diff line number Diff line change 20
20
"openai-php/client" : " ^0.16.0" ,
21
21
"psr/http-client" : " ^1.0.3" ,
22
22
"psr/http-factory" : " ^1.1.0" ,
23
- "symfony/config" : " ^6.4|^7.3" ,
24
- "symfony/dependency-injection" : " ^6.4|^7.3" ,
25
- "symfony/http-client" : " ^6.4|^7.3" ,
26
- "symfony/http-kernel" : " ^6.4|^7.3"
23
+ "symfony/config" : " ^6.4|^7.3|^8.0 " ,
24
+ "symfony/dependency-injection" : " ^6.4|^7.3|^8.0 " ,
25
+ "symfony/http-client" : " ^6.4|^7.3|^8.0 " ,
26
+ "symfony/http-kernel" : " ^6.4|^7.3|^8.0 "
27
27
},
28
28
"require-dev" : {
29
29
"laravel/pint" : " ^1.24.0" ,
30
30
"phpstan/phpstan" : " ^2.1.22" ,
31
31
"rector/rector" : " ^2.1.5" ,
32
- "symfony/phpunit-bridge" : " ^6.4.25|^7.3" ,
33
- "symfony/framework-bundle" : " ^6.4|^7.3"
32
+ "symfony/phpunit-bridge" : " ^6.4.25|^7.3|^8.0 " ,
33
+ "symfony/framework-bundle" : " ^6.4|^7.3|^8.0 "
34
34
},
35
35
"autoload" : {
36
36
"psr-4" : {
You can’t perform that action at this time.
0 commit comments