-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
58 lines (58 loc) · 1.36 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
52
53
54
55
56
57
58
{
"name": "uniwue/uw_a11y_check",
"type": "typo3-cms-extension",
"description": "Configurable a11y check for tt_content and extension records",
"authors": [
{
"name": "Torben Hansen on behalf of Universität Würzburg",
"email": "torben@derhansen.com",
"homepage": "https://www.uni-wuerzburg.de",
"role": "Developer"
}
],
"keywords": ["TYPO3 CMS", "a11y", "Accessibility"],
"license": [
"GPL-2.0+"
],
"require": {
"typo3/cms-core": "^11.5",
"symfony/dom-crawler": "^5.4",
"symfony/css-selector": "^5.4",
"symfony/serializer": "^5.4",
"symfony/property-access": "^5.4",
"symfony/property-info": "^5.4",
"ext-dom": "*"
},
"require-dev": {
"typo3/testing-framework": "^6.9.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"replace": {
"typo3-ter/uw-a11y-check": "self.version"
},
"autoload": {
"psr-4": {
"UniWue\\UwA11yCheck\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"UniWue\\UwA11yCheck\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "uw_a11y_check",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
}
}