-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
46 lines (45 loc) · 1.01 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
39
40
41
42
43
44
45
46
{
"name": "illegal/laravel-ai",
"description": "A laravel plugin to interact with AI providers",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"ai",
"artificial intelligence",
"machine learning",
"openai",
"gpt3",
"gpt4"
],
"authors": [
{
"name": "Vincenzo Petrucci",
"email": "vincenzo.petrucci@gmail.com",
"role": "Maintainer"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.2",
"illegal/laravel-utils": "^1.1",
"laravel/framework": "^9.19|^10",
"openai-php/client": "^0.3.5"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"Illegal\\LaravelAI\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Illegal\\LaravelAI\\ServiceProvider"
]
}
},
"prefer-stable": true
}