-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
63 lines (63 loc) · 1.61 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
59
60
61
62
63
{
"name": "jweiland/avalex",
"type": "typo3-cms-extension",
"description": "The avalex extension allows to display an automatically generated and updated \"Data Privacy Statement\", \"Imprint\", \"Cancellation Policy\" and \"Terms and conditions\" within a TYPO3 web site.",
"license": "GPL-2.0-or-later",
"keywords": ["typo3", "TYPO3 CMS", "avalex"],
"homepage": "https://jweiland.net",
"authors": [
{
"name": "Stefan Froemken",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/jweiland-net/avalex/issues",
"source": "https://github.com/jweiland-net/avalex"
},
"require": {
"typo3/cms-core": "^13.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44",
"friendsofphp/php-cs-fixer": "^3.14",
"phpstan/phpdoc-parser": "^1.33",
"phpunit/phpunit": "^11.2.5",
"roave/security-advisories": "dev-latest",
"typo3/coding-standards": "^0.8",
"typo3/testing-framework": "^9.0.1"
},
"replace": {
"typo3-ter/avalex": "self.version"
},
"autoload": {
"psr-4": {
"JWeiland\\Avalex\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"JWeiland\\Avalex\\Tests\\": "Tests"
},
"exclude-from-classmap": ["/Tests/Functional/LegacyImports"]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"extension-key": "avalex",
"web-dir": ".Build/public"
}
}
}