-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
57 lines (57 loc) · 1.64 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
{
"name": "in2code/migration",
"description": "Framework for any kind of TYPO3 migrations and imports. Also exports and imports content from and to json files.",
"keywords": ["typo3", "migration", "import", "templavoila", "gridelements", "news"],
"homepage": "https://github.com/einpraegsam/migration",
"authors": [
{
"name": "Alex Kellner",
"email": "[email protected]"
}
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"require": {
"php": "^7.4 || ^8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-pdo": "*",
"typo3/cms-core": "^11.5 || ^12.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.8",
"friendsofphp/php-cs-fixer": "^3.10"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/migration ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/migration"
],
"test:php:cs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --dry-run --config=.project/tests/.php-cs-fixer.php --diff",
"test:php:lint": "find *.php Classes Configuration -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l"
},
"replace": {
"typo3-ter/migration": "self.version"
},
"autoload": {
"psr-4": {
"In2code\\Migration\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"web-dir": ".Build/Web",
"extension-key": "migration"
}
}
}