-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
62 lines (62 loc) · 1.68 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
{
"name": "ichhabrecht/mask-export",
"description": "Export your mask elements as extension",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"Mask",
"Export",
"Content Elements",
"Wizard"
],
"homepage": "https://github.com/IchHabRecht/mask_export",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Nicole Cordes",
"email": "typo3@cordes.co",
"role": "Developer"
}
],
"require": {
"php": "^7.2 || ^8.0",
"typo3/cms-core": "^9.5 || ^10.4.16 || ^11.5",
"typo3/cms-extbase": "^9.5 || ^10.4.16 || ^11.5",
"typo3/cms-extensionmanager": "^9.5 || ^10.4.16 || ^11.5",
"typo3/cms-fluid": "^9.5 || ^10.4.16 || ^11.5",
"mask/mask": "^4.0 || ^5.0 || ^6.0 || ^7.1"
},
"require-dev": {
"typo3/cms-fluid-styled-content": "^9.5 || ^10.4.16 || ^11.5",
"nimut/testing-framework": "6.x-dev",
"phpunit/phpunit": "^8.5"
},
"replace": {
"typo3-ter/mask-export": "self.version"
},
"autoload": {
"psr-4": {
"IchHabRecht\\MaskExport\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"IchHabRecht\\MaskExport\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"branch-alias": {
"dev-main": "4.x-dev"
},
"typo3/cms": {
"extension-key": "mask_export",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
}
}