-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.16 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": "linawolf/list-type-migration",
"description": "List type to CType migration, backward compatible for TYPO3 v11 and v12",
"type": "typo3-cms-extension",
"license": [
"GPL-2.0-or-later"
],
"require": {
"php": "^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3",
"typo3/cms-install": "^11.5 || ^12.4 || ^13.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.43",
"phpstan/phpstan": "^1.8.2",
"typo3/coding-standards": "*"
},
"autoload": {
"psr-4": {
"Linawolf\\ListTypeMigration\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms-core": "source"
},
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"extension-key": "list_type_migration",
"web-dir": ".Build/Web"
}
}
}