-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
69 lines (69 loc) · 1.56 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
65
66
67
68
69
{
"name": "plan2net/sierrha",
"description": "404 'not found' and 403 'forbidden' error handlers. The 404 handler shows custom content for missing pages but not resources like CSS or JS. The 403 handler redirects to a login URL on unauthorized access.",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"keywords": [
"typo3",
"extension",
"site configuration",
"error page",
"error handler",
"http status 403",
"http status 404",
"http error forbidden",
"http error not found"
],
"authors": [
{
"name": "plan2net GmbH",
"email": "[email protected]",
"homepage": "https://www.plan2.net"
},
{
"name": "Martin Kutschker",
"role": "developer"
}
],
"replace": {
"typo3-ter/sierrha": "self.version"
},
"support": {
"issues": "https://github.com/plan2net/sierrha/issues",
"source": "https://github.com/plan2net/sierrha/"
},
"require": {
"php": ">=8.2",
"typo3/cms-backend": "^13.4",
"typo3/cms-frontend": "^13.4"
},
"require-dev": {
"typo3/testing-framework": "*"
},
"autoload": {
"psr-4": {
"Plan2net\\Sierrha\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Plan2net\\Sierrha\\Tests\\": "Tests/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "sierrha"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"test": [
"./vendor/bin/phpunit --config Build/UnitTests.xml"
]
}
}