-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 930 Bytes
/
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
{
"name": "hov/mask-permissions",
"type": "typo3-cms-extension",
"description": "Never configure mask permissions for editors manually ever again!",
"keywords": [
"TYPO3 CMS",
"Mask"
],
"authors": [
{
"name": "Nikita Hovratov",
"email": "entwicklung@nikita-hovratov.de",
"role": "Developer",
"homepage": "https://www.nikita-hovratov.de"
}
],
"license": "GPL-2.0-or-later",
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"require": {
"php": "^7.4 || ^8.0",
"typo3/cms-core": "^11.5 || ^12.0",
"mask/mask": "^7.2 || ^8.0"
},
"replace": {
"typo3-ter/mask-permissions": "self.version"
},
"autoload": {
"psr-4": {
"HOV\\MaskPermissions\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "mask_permissions",
"web-dir": ".Build/Web"
}
},
"require-dev": {
"typo3/tailor": "^1.2"
}
}