forked from Tuurlijk/t3ext-wizard_crpagetree
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 809 Bytes
/
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
{
"name": "reelworx/wizard-crpagetree",
"type": "typo3-cms-extension",
"description": "Wizard that will create a page tree for you. Feed it with a space indented tree structure of the desired pages and the pages will be created for you.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Michiel Roos",
"role": "Developer"
},
{
"name": "Reelworx GmbH",
"role": "Maintainer",
"homepage": "https://reelworx.at/"
}
],
"keywords": [
"wizard",
"typo3",
"pages",
"mass editing"
],
"require": {
"php": "^8.1",
"typo3/cms-backend": "^11.5 || ^12.4"
},
"autoload": {
"psr-4": {
"MichielRoos\\WizardCrpagetree\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "wizard_crpagetree"
},
"branch-alias": {
"dev-master": "6.x-dev"
}
}
}