-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
40 lines (40 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
{
"name": "cubex-hro/contao-openai-bundle",
"type": "contao-bundle",
"license": "MIT",
"description": "enables the generation of meta-title and meta-descriptions in the backend of Contao using ChatGPT from OpenAi",
"authors": [
{
"name": "Christopher Griesch",
"email": "[email protected]",
"homepage": "https://www.code-buster.de",
"role": "Project leader"
}
],
"keywords": [
"contao",
"gpt",
"ki",
"ai",
"seo"
],
"require": {
"php": "^7.2 || ^8.0",
"contao/core-bundle": "^4.9 || ^4.13"
},
"require-dev": {
"contao/manager-plugin": "^2.3.1"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Codebuster\\GptBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Codebuster\\GptBundle\\ContaoManager\\Plugin"
}
}