forked from swoole-inc/open-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (43 loc) · 890 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
42
43
44
{
"name": "guanhui07/open-ai",
"description": "OpenAI API Client in PHP",
"keywords": [
"swoole",
"open-ai"
],
"homepage": "https://github.com/swoole-inc/open-ai",
"license": "MIT",
"authors": [
{
"name": "guanhui07",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"ext-curl": "*"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"SwooleAi\\OpenAi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Swoole\\OpenAi\\Tests\\": "tests"
}
},
"scripts": {
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}