-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
64 lines (64 loc) · 2 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
64
{
"name": "aaw-team/pagenotfoundhandling",
"type": "typo3-cms-extension",
"description": "Versatile Error Handler for the TYPO3 CMS Site Handling",
"keywords": ["typo3", "error handler", "http error", "error", "404", "403", "500", "page not found", "page unavailable", "site", "error page"],
"homepage": "https://github.com/aaw-team/pagenotfoundhandling",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Agentur am Wasser Team",
"email": "[email protected]",
"homepage": "https://web.agenturamwasser.ch/",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"typo3/cms-core": "^10.4.32 || ^11.5.17"
},
"require-dev": {
"nimut/testing-framework": "^6.0"
},
"replace": {
"typo3-ter/pagenotfoundhandling": "self.version"
},
"autoload": {
"psr-4": {
"AawTeam\\Pagenotfoundhandling\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"AawTeam\\Pagenotfoundhandling\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
},
"typo3/cms": {
"extension-key": "pagenotfoundhandling",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
},
"scripts":{
"ci:test:unit": [
".Build/bin/phpunit -c .Build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit"
]
},
"support": {
"source": "https://github.com/aaw-team/pagenotfoundhandling",
"issues": "https://github.com/aaw-team/pagenotfoundhandling/issues",
"docs": "https://docs.typo3.org/p/aaw-team/pagenotfoundhandling/master/en-us/"
}
}