-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.43 KB
/
Copy pathcomposer.json
File metadata and controls
77 lines (77 loc) · 2.43 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "b13/ai-label",
"type": "typo3-cms-extension",
"description": "AI Label - Disclose AI-generated and AI-modified content as required by Article 50 of the EU AI Act: flag records in the backend, track editorial review, and mark flagged content in the frontend.",
"license": "GPL-2.0-or-later",
"keywords": [
"TYPO3 CMS",
"ai",
"ai act",
"compliance",
"transparency",
"disclosure",
"labelling"
],
"homepage": "https://b13.com",
"authors": [
{
"name": "b13 GmbH",
"email": "typo3@b13.com",
"homepage": "https://b13.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/b13/ai-label/issues",
"source": "https://github.com/b13/ai-label"
},
"require": {
"typo3/cms-backend": "^13.4 || ^14.3",
"typo3/cms-frontend": "^13.4 || ^14.3"
},
"suggest": {
"typo3/cms-fluid-styled-content": "Automatically renders the AI label on every content element via a DropIn/After/All.html override",
"typo3/cms-filelist": "Shows AI-label badges for flagged files in the File > Filelist backend module",
"b13/aim": "Enables FlagAiContentMiddleware, which automatically flags a record as AI-created/AI-modified once an aim request opts in via metadata"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"typo3/testing-framework": "^9",
"phpstan/phpstan": "^2.1",
"typo3/coding-standards": "^0.5.5",
"typo3/cms-workspaces": "^13.4 || ^14.3",
"typo3/cms-filelist": "^13.4 || ^14.3",
"typo3/cms-fluid-styled-content": "^13.4 || ^14.3",
"b13/aim": "*"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"autoload-dev": {
"psr-4": {
"B13\\AiLabel\\Tests\\": "Tests"
}
},
"autoload": {
"psr-4": {
"B13\\AiLabel\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"web-dir": ".Build/Web",
"app-dir": ".Build",
"extension-key": "ai_label",
"version": "1.0.0",
"Package": {
"providesPackages": {}
}
}
}
}