-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.6 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.6 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
{
"name": "mindfulmarkup/mindfula11y",
"description": "Find and fix accessibility issues in TYPO3: viewhelpers for semantic headings and landmarks, missing image alt detection and generation with AI (ChatGPT). Integration of an external axe-core scanner. A backend module for quick remediation.",
"type": "typo3-cms-extension",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Felix Spittel",
"role": "Developer",
"homepage": "https://www.websites-fuer-alle.de"
}
],
"support": {
"issues": "https://github.com/crinis/mindfula11y/issues",
"source": "https://github.com/crinis/mindfula11y"
},
"require": {
"php": ">=8.2 <=8.4",
"typo3/cms-core": "~13.4.0",
"typo3/cms-backend": "~13.4.0",
"typo3/cms-fluid": "~13.4.0",
"typo3/cms-frontend": "~13.4.0",
"typo3/cms-extbase": "~13.4.0"
},
"autoload": {
"psr-4": {
"MindfulMarkup\\MindfulA11y\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "mindfula11y"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": false,
"typo3/class-alias-loader": false
}
},
"keywords": [
"TYPO3",
"accessibility",
"a11y",
"alt text",
"headings",
"landmarks",
"ARIA",
"WCAG",
"backend module",
"chatgpt",
"AI generation",
"semantic HTML",
"screen reader",
"extension"
]
}