-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.09 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
{
"name": "nhovratov/mask-to-content-blocks",
"type": "typo3-cms-extension",
"description": "Migrate Mask Content Elements to Content Blocks",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"NH\\MaskToContentBlocks\\": "Classes/"
}
},
"authors": [
{
"name": "Nikita Hovratov",
"email": "[email protected]"
}
],
"require": {
"typo3/cms-core": "^13.4",
"mask/mask": "^9",
"friendsoftypo3/content-blocks": "^1.1"
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
},
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"web-dir": ".Build/public",
"extension-key": "mask_to_content_blocks"
}
},
"require-dev": {
"typo3/cms-install": "^13.4",
"typo3/cms-rte-ckeditor": "^13.4",
"typo3/cms-lowlevel": "^13.4",
"phpstan/phpstan": "^2.0"
}
}