-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
25 lines (24 loc) · 856 Bytes
/
ext_emconf.php
File metadata and controls
25 lines (24 loc) · 856 Bytes
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
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'WFA Accessibility Toolkit',
'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.',
'category' => 'module',
'author' => 'Felix Spittel',
'author_email' => '[email protected]',
'author_company' => 'Websites für Alle',
'state' => 'beta',
'version' => '0.10.0',
'constraints' => [
'depends' => [
'typo3' => '13.4.0-13.4.99',
'php' => '8.2.0-8.4.99',
],
'conflicts' => [],
'suggests' => [],
],
'autoload' => [
'psr-4' => [
'MindfulMarkup\\MindfulA11y\\' => 'Classes/'
]
],
];