-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
composer.json
96 lines (96 loc) · 2.59 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "mask/mask",
"type": "typo3-cms-extension",
"description": "Create your own content elements and page templates. Easy to use, even without programming skills because of the comfortable drag and drop user interface. Stored in structured database tables. Style your frontend with Fluid tags. Ideal, if you want to switch from Templavoila.",
"homepage": "https://extensions.typo3.org/extension/mask",
"support": {
"source": "https://github.com/gernott/mask",
"docs": "https://docs.typo3.org/p/mask/mask/main/en-us/",
"issues": "https://github.com/gernott/mask/issues/",
"chat": "https://typo3.slack.com/archives/C0FD5F6P2"
},
"funding": [
{
"type": "Nikita Hovratov (Developer)",
"url": "https://github.com/sponsors/nhovratov"
},
{
"type": "WEBprofil - Gernot Ploiner e.U. (Founder)",
"url": "https://github.com/sponsors/Gernott"
}
],
"keywords": [
"TYPO3 CMS",
"Mask",
"Contentelements",
"Wizard"
],
"authors": [
{
"name": "WEBprofil - Gernot Ploiner e.U.",
"email": "office@webprofil.at",
"role": "Developer",
"homepage": "https://www.webprofil.at"
},
{
"name": "Nikita Hovratov",
"email": "info@nikita-hovratov.de",
"role": "Developer",
"homepage": "https://www.nikita-hovratov.de"
}
],
"license": "GPL-2.0-or-later",
"minimum-stability": "RC",
"prefer-stable": true,
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"platform-check": false,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require-dev": {
"typo3/testing-framework": "^8",
"phpunit/phpunit": "^11",
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.4",
"bnf/phpstan-psr-container": "^1.0",
"friendsoftypo3/phpstan-typo3": "^0.9.0",
"phpstan/phpstan-phpunit": "^1.0",
"typo3/coding-standards": "0.8.x-dev"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"typo3/cms-core": "^13.4 || ^12.4",
"typo3/cms-backend": "^13.4 || ^12.4",
"typo3/cms-fluid": "^13.4 || ^12.4",
"typo3/cms-fluid-styled-content": "^13.4 || ^12.4",
"typo3/cms-install": "^13.4 || ^12.4"
},
"suggest": {
"b13/container": "Allows creating container elements to place your Mask elements into.",
"gridelementsteam/gridelements": "Allows creating container elements to place your Mask elements into."
},
"replace": {
"typo3-ter/mask": "self.version"
},
"autoload": {
"psr-4": {
"MASK\\Mask\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"MASK\\Mask\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"extension-key": "mask",
"web-dir": ".Build/Web"
}
}
}