-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.05 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
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
39
40
41
{
"name": "wassenger/whatsapp-chatgpt-bot-php",
"description": "WhatsApp ChatGPT-powered multimodal AI chatbot in PHP using Wassenger API",
"type": "project",
"license": "MIT",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.9",
"vlucas/phpdotenv": "^5.5",
"monolog/monolog": "^3.4",
"openai-php/client": "^0.13",
"symfony/http-foundation": "^6.3",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"phpunit/phpunit": "^10.3"
},
"autoload": {
"psr-4": {
"Wassenger\\ChatGPTBot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wassenger\\ChatGPTBot\\Tests\\": "tests/"
}
},
"scripts": {
"start": "php public/index.php",
"dev": "DEV=true php public/index.php"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}