forked from IchHabRecht/content_defender
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.47 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.47 KB
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
{
"name": "ichhabrecht/content-defender",
"description": "Define allowed or denied content element types in your backend layouts",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"content",
"restrict",
"backend"
],
"homepage": "https://github.com/IchHabRecht/content_defender",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Nicole Cordes | CPS-IT GmbH",
"email": "typo3@cordes.co",
"role": "Developer"
}
],
"require": {
"typo3/cms-backend": "^8.7 || >=9.1 <9.3"
},
"require-dev": {
"nimut/testing-framework": "3.x-dev"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Tool to automatically fix PHP coding standards issues"
},
"autoload": {
"psr-4": {
"IchHabRecht\\ContentDefender\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"IchHabRecht\\ContentDefender\\Tests\\": "Tests/"
}
},
"replace": {
"content_defender": "self.version",
"typo3-ter/content-defender": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"extension-key": "content_defender",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
}
}