diff --git a/composer.json b/composer.json index 423e4b2..fbd1231 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "Library to add chat management for openai client", "type": "library", "require": { - "php" : "^7.3|^8.0|^8.1", + "php" : "^8.1", "illuminate/database": "^7.0|^8.0|^9.0|^10.0", "illuminate/support": "^7.0|^8.0|^9.0|^10.0", "openai-php/client": "^0.6.2" @@ -19,12 +19,19 @@ ], "autoload": { "psr-4": { - "Ogrre\\ChatGPT\\": "src/" + "Ogrre\\ChatGPT\\": "src" } }, "config": { "sort-packages": true }, + "extra": { + "laravel": { + "providers": [ + "Ogrre\\ChatGPT\\ChatServiceProvider" + ] + } + }, "minimum-stability": "dev", "prefer-stable": true }