-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.74 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": "t3thi/transfusion",
"type": "typo3-cms-extension",
"description": "Wizard module to deal with TYPO3 connected and free mode translations and to fix the notorious mixed mode",
"homepage": "https://typo3.org/community/teams/typo3-development/initiatives/translation-handling",
"license": ["GPL-2.0-or-later"],
"version": "0.0.1",
"keywords": ["TYPO3 CMS"],
"require": {
"typo3/cms-core": "^12.4"
},
"require-dev": {
"ergebnis/composer-normalize": "*",
"friendsofphp/php-cs-fixer": "*",
"saschaegerer/phpstan-typo3": "*",
"ssch/typo3-rector": "*",
"mockery/mockery": "*",
"phpspec/prophecy-phpunit": "*",
"typo3/cms-impexp": "*",
"typo3/minimal": "*",
"typo3/testing-framework": "*"
},
"autoload": {
"psr-4": {
"T3thi\\Transfusion\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"T3thi\\Transfusion\\Tests\\": "Tests/"
},
"classmap": [
"Tests/Functional/Fixtures/"
]
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"captainhook/plugin-composer": false
},
"bin-dir": ".Build/bin",
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "transfusion",
"web-dir": ".Build/Web"
}
},
"scripts": {
"ci": [
"@php-cs-fixer",
"@phpstan"
],
"php-cs-fixer": ".Build/bin/php-cs-fixer fix --config=.php-cs-fixer.php --dry-run --stop-on-violation --using-cache=no -v . > coding-style-errors.log",
"phpstan": ".Build/bin/phpstan analyse > phpstan-errors.log"
}
}