-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
33 lines (33 loc) · 999 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
{
"name": "backdrop/openai",
"description": "A set of modules to enable OpenAI integration with Backdrop and augment the content experience with AI-assisted tools.",
"keywords": ["openai", "GPT-3", "DALL-E", "content generation", "AI", "artificial intelligence"],
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Justin Keiser",
"homepage": "https://keiserjb.com",
"role": "Maintainer"
}
],
"require": {
"php": ">=8.1",
"openai-php/client": ">=v0.7.8",
"guzzlehttp/guzzle": "^7.9",
"guzzlehttp/psr7": "^2.7",
"symfony/http-client": "^6.4",
"nyholm/psr7": "^1.8"
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"php-http/discovery": true,
"composer/installers": true
},
"optimize-autoloader": true,
"preferred-install": "dist"
}
}