-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.53 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.53 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
42
43
44
45
46
47
48
49
{
"name": "sourceability/openai-client",
"description": "PHP 8.0+ OpenAI API client with fully typed/documented requests+responses models, guzzle and symfony/http-client support and async/parallel requests.",
"keywords": ["php", "OpenAI", "GPT", "GPT-3", "guzzle", "sdk"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Sourceability\\OpenAIClient\\": "src/",
"Sourceability\\OpenAIClient\\Generated\\": "generated/"
}
},
"autoload-dev": {
"psr-4": {
"Sourceability\\OpenAIClient\\Build\\": "build/",
"Sourceability\\OpenAIClient\\Tests\\": "tests/"
}
},
"require": {
"php": ">8.0",
"php-http/httplug": "^2.0",
"php-http/discovery": "^1.0",
"php-http/message": "^1.0",
"jane-php/open-api-runtime": "^7.0",
"brick/money": "^0.8.0"
},
"require-dev": {
"guzzlehttp/psr7": "^2.4",
"guzzlehttp/guzzle": "^7.5",
"php-http/guzzle7-adapter": "^1.0",
"jane-php/open-api-3": "^7.4",
"rector/rector": "^0.15.16",
"symplify/easy-coding-standard": "^11.2",
"slevomat/coding-standard": "^8.8",
"php-http/logger-plugin": "^1.3",
"phpunit/phpunit": "^10.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"extra": {
"symfony": {
"allow-contrib": "true"
}
}
}