-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
42 lines (42 loc) · 1.09 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
{
"name": "sourcebroker/restrictfe",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"description": "This extension blocks access to frontend and allows to show it only to some defined exception's like if the request is from an authorized backend user, has specific IP, header, domain, language or GET/POST vars. Useful to protect your staging and production instances.",
"require": {
"php": ">=8.0",
"typo3/cms-core": "^11 || ^12 || ^13",
"typo3/cms-fluid": "^11 || ^12 || ^13",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"SourceBroker\\Restrictfe\\": "Classes/"
}
},
"authors": [
{
"name": "Krystian Szymukowicz",
"email": "[email protected]"
}
],
"replace": {
"typo3-ter/restrictfe": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"web-dir": ".Build/Web",
"extension-key": "restrictfe"
}
}
}