-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.03 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
47
48
49
50
51
{
"name": "mfd/ai-filemetadata",
"type": "typo3-cms-extension",
"description": "Automatically generates FAL metadata for files by means of public LLMs",
"keywords": [
"TYPO3 CMS",
"Extension",
"AI",
"FAL"
],
"license": [
"GPL-3.0-or-later"
],
"authors": [
{
"name": "Christian Spoo",
"role": "Developer",
"email": "[email protected]",
"homepage": "https://www.marketing-factory.de"
}
],
"require": {
"php": ">=8.2",
"ext-intl": "*",
"openai-php/client": "^v0.10.1",
"typo3/cms-core": "^12 || ^13"
},
"replace": {
"typo3-ter/ai-filemetadata": "*"
},
"extra": {
"typo3/cms": {
"extension-key": "ai_filemetadata"
}
},
"autoload": {
"psr-4": {
"Mfd\\Ai\\FileMetadata\\": "Classes/"
}
},
"require-dev": {
"typo3/tailor": "^1.6"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
}
}