diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 15f7f29..92da102 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.1, 8.2, 8.3] + php: [8.1, 8.2, 8.3, 8.4] laravel: [11.*, 10.*, 9.*] dependency-version: [prefer-lowest, prefer-stable] exclude: diff --git a/README.md b/README.md index 601927f..57cc5a8 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,6 @@ > **Note:** This repository contains the integration code of the **OpenAI PHP** for Laravel. If you want to use the **OpenAI PHP** client in a framework-agnostic way, take a look at the [openai-php/client](https://github.com/openai-php/client) repository. -> **Looking for Assistants v2 support?** -> -> Check out the [0.10.x](https://github.com/openai-php/laravel/releases/tag/v0.10.0-beta.1) release (beta) ## Get Started diff --git a/composer.json b/composer.json index ea90647..1c015a5 100644 --- a/composer.json +++ b/composer.json @@ -11,16 +11,16 @@ ], "require": { "php": "^8.1.0", - "guzzlehttp/guzzle": "^7.8.1", - "laravel/framework": "^9.46.0|^10.34.2|^11.0", - "openai-php/client": "^v0.10.1" + "guzzlehttp/guzzle": "^7.9.2", + "laravel/framework": "^9.46.0|^10.34.2|^11.23.5", + "openai-php/client": "^0.10.2" }, "require-dev": { - "laravel/pint": "^1.13.6", - "pestphp/pest": "^2.27.0", - "pestphp/pest-plugin-arch": "^2.4.1", - "phpstan/phpstan": "^1.10.47", - "symfony/var-dumper": "^6.4.0|^7.0.1" + "laravel/pint": "^1.17.3", + "pestphp/pest": "^2.35.1|^3.0.0", + "pestphp/pest-plugin-arch": "^2.7.0|^3.0.0", + "phpstan/phpstan": "^1.12.4", + "symfony/var-dumper": "^6.4.0|^7.1.4" }, "autoload": { "psr-4": { @@ -51,7 +51,6 @@ }, "scripts": { "lint": "pint -v", - "refactor": "rector --debug", "test:lint": "pint --test -v", "test:types": "phpstan analyse --ansi", "test:unit": "pest --colors=always", diff --git a/src/Testing/OpenAIFake.php b/src/Testing/OpenAIFake.php index a4e2eb2..9ac5b3b 100644 --- a/src/Testing/OpenAIFake.php +++ b/src/Testing/OpenAIFake.php @@ -4,6 +4,4 @@ use OpenAI\Testing\ClientFake; -class OpenAIFake extends ClientFake -{ -} +class OpenAIFake extends ClientFake {}