Skip to content

Commit 2946fbc

Browse files
committed
chore: bumps dependencies
1 parent 905a8a1 commit 2946fbc

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@
1212
],
1313
"require": {
1414
"php": "^8.1.0",
15-
"nyholm/psr7": "^1.5.1",
16-
"openai-php/client": "^0.4.1",
17-
"psr/http-client": "^1.0.1",
18-
"psr/http-factory": "^1.0.1",
15+
"nyholm/psr7": "^1.8.0",
16+
"openai-php/client": "^0.4.2",
17+
"psr/http-client": "^1.0.2",
18+
"psr/http-factory": "^1.0.2",
1919
"symfony/config": "^5.4.21|^6.2.7",
20-
"symfony/dependency-injection": "^5.4.21|^6.2.7",
21-
"symfony/http-client": "^5.4.21|^6.2.7",
22-
"symfony/http-kernel": "^5.4.21|^6.2.7"
20+
"symfony/dependency-injection": "^5.4.21|^6.2.10",
21+
"symfony/http-client": "^5.4.21|^6.2.10",
22+
"symfony/http-kernel": "^5.4.21|^6.2.10"
2323
},
2424
"require-dev": {
25-
"laravel/pint": "^1.7.0",
26-
"phpstan/phpstan": "^1.10.8",
25+
"laravel/pint": "^1.10.0",
26+
"phpstan/phpstan": "^1.10.14",
2727
"rector/rector": "^0.14.8",
28-
"symfony/phpunit-bridge": "^6.2.7"
28+
"symfony/phpunit-bridge": "^6.2.10"
2929
},
3030
"autoload": {
3131
"psr-4": {

src/Resources/config/services.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
return static function (ContainerConfigurator $container) {
1313
$container->services()
1414
->set('openai.http_client', Psr18Client::class)
15-
->arg(0, service('http_client'))
15+
->arg(0, service('http_client'))
1616

1717
->set(Factory::class)
18-
->factory([OpenAI::class, 'factory'])
19-
->call('withHttpClient', [service('openai.http_client')])
18+
->factory([OpenAI::class, 'factory'])
19+
->call('withHttpClient', [service('openai.http_client')])
2020

2121
->set(Client::class)
22-
->factory([service(Factory::class), 'make'])
22+
->factory([service(Factory::class), 'make'])
2323

2424
->alias('openai', Client::class);
2525
};

0 commit comments

Comments
 (0)