-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
73 lines (73 loc) · 2.12 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
70
71
72
73
{
"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",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"typo3/cms-core": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-backend": "^10.4 || ^11.5 || ^12.4"
},
"require-dev": {
"doctrine/dbal": "^2.11 || ^3.8",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpspec/prophecy": "^1.12.1",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^8.4 || ^9.0",
"typo3/cms-fluid-styled-content": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-indexed-search": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-workspaces": "^10.4 || ^11.5 || ^12.4",
"typo3/minimal": "^10.4 || ^11.5 || ^12.0",
"typo3/testing-framework": "^6.16 || ^7.0.2"
},
"conflict": {
"psr/container": "<1.1",
"typo3/testing-framework": ">=7.0.0 <7.0.4"
},
"autoload": {
"psr-4": {
"IchHabRecht\\ContentDefender\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"IchHabRecht\\ContentDefender\\Tests\\": "Tests/"
}
},
"replace": {
"typo3-ter/content-defender": "self.version"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"vendor-dir": ".Build/vendor",
"sort-packages": true
},
"extra": {
"typo3/cms": {
"extension-key": "content_defender",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
}
}