-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
38 lines (38 loc) · 1.05 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "ai/chatbot",
"description": "Chat Bot allows you to easily build a chat bot powered by AI based on a context you provide",
"keywords": ["laravel", "chatgpt", "openai", "chat", "customers", "chatbot", "context-prompt"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"ChatBot\\": "src/"
}
},
"authors": [
{
"name": "Mohamad Masri",
"email": "mdjbugz@gmail.com"
}
],
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan vendor:publish --tag=chat-bot --force"
]
},
"require": {
"php": "^7.4",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
"orhanerday/open-ai": "^3.5"
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"ChatBot\\Providers\\ChatBotServiceProvider"
]
}
}
}