forked from web-vision/wv_deepltranslate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
130 lines (130 loc) · 4.14 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "web-vision/wv_deepltranslate",
"type": "typo3-cms-extension",
"description": "This extension provides option to translate content element, and TCA record texts to Deepl and Google supported languages using Deepl and Googletranslate Api services.",
"license": ["GPL-2.0-or-later"],
"homepage": "https://www.web-vision.de/en/automated-translations-with-typo3-and-deepl.html",
"keywords": [
"TYPO3 CMS",
"extension",
"translate",
"deepl",
"googletranslate"
],
"authors": [
{
"name": "web-vision GmbH",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Mark Houben",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Markus Hofmann",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Riad Zejnilagic Trumic",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/web-vision/wv_deepltranslate/issues",
"source": "https://github.com/web-vision/wv_deepltranslate"
},
"conflict": {
"studiomitte/recordlist-thumbnail": "*"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"helhum/typo3-console-plugin": true
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "wv_deepltranslate",
"ignore-as-root": false,
"web-dir": ".Build/Web",
"app-dir": ".Build"
},
"branch-alias": {
"dev-3.0": "3.x.x-dev"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-pdo": "*",
"typo3/cms-backend": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-core": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-extbase": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-fluid": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-install": "^9.5 || ^10.4 || ^11.5"
},
"require-dev": {
"b13/container": "^1.6",
"friendsofphp/php-cs-fixer": "^3.0",
"helhum/typo3-console": "^5.8 || ^6.7 || ^7.1",
"helmich/phpunit-json-assert": "3.4.3",
"helmich/typo3-typoscript-lint": "^2.5",
"nikic/php-parser": "^4.15.1",
"nimut/testing-framework": "^6.0",
"phpstan/phpstan": "^1.3",
"saschaegerer/phpstan-typo3": "^1.0",
"symfony/var-dumper": "^5.4",
"typo3/cms-belog": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-extensionmanager": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-filelist": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-fluid-styled-content": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-frontend": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-info": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-lowlevel": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-tstemplate": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-workspaces": "^9.5 || ^10.4 || ^11.5",
"typo3/coding-standards": "^0.5"
},
"autoload": {
"psr-4": {
"WebVision\\WvDeepltranslate\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"WebVision\\WvDeepltranslate\\Tests\\": "Tests"
}
},
"scripts": {
"prepare-extension-test-structure": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/wv_deepltranslate ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/wv_deepltranslate",
"@package-states",
"Nimut\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"cs:check": ".Build/bin/php-cs-fixer fix --config Build/php-cs-fixer/php-cs-rules.php --ansi --diff --verbose --dry-run",
"cs:fix": ".Build/bin/php-cs-fixer fix --config Build/php-cs-fixer/php-cs-rules.php --ansi",
"analyze:php": ".Build/bin/phpstan analyse --ansi --no-progress --memory-limit=768M --configuration=Build/phpstan/phpstan.neon",
"lint:typoscript": ".Build/bin/typoscript-lint --ansi --config=./Build/typoscript-lint/typoscript-lint.yml",
"lint:php": "find .*.php *.php Classes Configuration Tests -name '*.php' -print0 | xargs -r -0 -n 1 -P 4 php -l",
"test:php": [
"@test:php:unit",
"@test:php:functional"
],
"test:php:unit": ".Build/bin/phpunit --colors=always --configuration Build/phpunit/UnitTests.xml",
"test:php:functional": "@test:php:unit --configuration Build/phpunit/FunctionalTests.xml",
"post-autoload-dump": [
"@prepare-extension-test-structure"
]
}
}