forked from Gernott/mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
86 lines (86 loc) · 2.22 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
{
"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://mask.webprofil.at/",
"support": {
"source": "https://github.com/gernott/mask",
"docs": "https://docs.typo3.org/p/mask/mask/master/en-us/",
"issues": "https://github.com/gernott/mask/issues/",
"chat": "https://typo3.org/community/meet/chat-slack"
},
"funding": [
{
"type": "Nikita Hovratov (Developer)",
"url": "https://www.paypal.com/donate/?hosted_button_id=H2BYU35VHSGFY"
},
{
"type": "WEBprofil - Gernot Ploiner e.U. (Founder)",
"url": "https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=QBA9FNKYU98BQ"
}
],
"keywords": [
"TYPO3 CMS",
"Mask",
"Contentelements",
"Wizard"
],
"authors": [
{
"name": "WEBprofil - Gernot Ploiner e.U.",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.webprofil.at"
},
{
"name": "Nikita Hovratov",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.nikita-hovratov.de"
}
],
"license": "GPL-2.0-or-later",
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"platform-check": false
},
"require-dev": {
"typo3/testing-framework": "^6",
"phpunit/phpunit": "^8.4",
"friendsofphp/php-cs-fixer": "^3.0",
"typo3/tailor": "^1.2"
},
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"typo3/cms-core": "^10.4.16 || ^11.5.0",
"typo3/cms-backend": "^10.4.16 || ^11.5.0",
"typo3/cms-fluid": "^10.4.16 || ^11.5.0",
"typo3/cms-fluid-styled-content": "^10.4.16 || ^11.5.0"
},
"replace": {
"typo3-ter/mask": "self.version"
},
"autoload": {
"psr-4": {
"MASK\\Mask\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"MASK\\Mask\\Tests\\": "Tests"
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"extension-key": "mask",
"web-dir": ".Build/Web"
}
}
}