-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
41 lines (41 loc) · 996 Bytes
/
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
39
40
41
{
"name": "adrenallen/ai-agents-laravel",
"description": "A package to build AI Agents on top of Laravel",
"keywords": ["laravel", "ai", "chatgpt"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Adrenallen\\AiAgentsLaravel\\": "src/"
}
},
"authors": [
{
"name": "Garrett",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"openai-php/client": ">=0.8.0",
"twilio/sdk": "^7.5",
"guzzlehttp/guzzle": "^7.8",
"yethee/tiktoken": "^0.5.0",
"laravel/frameowkr": "^12.0"
},
"extra": {
"laravel": {
"providers": [
"Adrenallen\\AiAgentsLaravel\\AiAgentsLaravelServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"phpunit/phpunit": "^10.5"
}
}