forked from web-vision/deepltranslate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
146 lines (146 loc) · 5.08 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "web-vision/wv_deepltranslate",
"type": "typo3-cms-extension",
"description": "This extension provides option to translate content element, and TCA record texts to DeepL supported languages using DeepL API services with TYPO3 CMS",
"license": ["GPL-2.0-or-later"],
"homepage": "https://www.web-vision.de/en/automated-translations-with-typo3-and-deepl.html",
"minimum-stability": "beta",
"prefer-stable": true,
"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,
"php-http/discovery": 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-main": "4.x.x-dev"
}
},
"require": {
"php": "^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3",
"ext-curl": "*",
"ext-json": "*",
"ext-pdo": "*",
"deeplcom/deepl-php": ">=1.6.0 <=1.8.0",
"typo3/cms-backend": "^11.5 || ^12.4",
"typo3/cms-core": "^11.5 || ^12.4",
"typo3/cms-extbase": "^11.5 || ^12.4",
"typo3/cms-fluid": "^11.5 || ^12.4",
"typo3/cms-install": "^11.5 || ^12.4",
"typo3/cms-setup": "^11.5 || ^12.4",
"typo3/cms-scheduler": "^11.5 || ^12.4"
},
"require-dev": {
"b13/container": "^2.2",
"friendsofphp/php-cs-fixer": "^3.41",
"helhum/typo3-console": "^7.1.6 || ^8.0.2",
"helmich/phpunit-json-assert": "^3.4.3 || ^3.5.1",
"helmich/typo3-typoscript-lint": "^3.1.0",
"nikic/php-parser": "^4.15.1",
"php-mock/php-mock-phpunit": "^2.6",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6.8 || ^10.1",
"ramsey/uuid": "^4.2",
"saschaegerer/phpstan-typo3": "^1.9",
"typo3/cms-belog": "^11.5 || ^12.4",
"typo3/cms-dashboard": "^11.5 || ^12.4",
"typo3/cms-extensionmanager": "^11.5 || ^12.4",
"typo3/cms-filelist": "^11.5 || ^12.4",
"typo3/cms-fluid-styled-content": "^11.5 || ^12.4",
"typo3/cms-frontend": "^11.5 || ^12.4",
"typo3/cms-info": "^11.5 || ^12.4",
"typo3/cms-lowlevel": "^11.5 || ^12.4",
"typo3/cms-rte-ckeditor": "^11.5 || ^12.4",
"typo3/cms-tstemplate": "^11.5 || ^12.4",
"typo3/cms-workspaces": "^11.5 || ^12.4",
"typo3/testing-framework": "^7.0"
},
"suggest": {
"b13/container": "Just to be loaded after EXT:container",
"web-vision/enable-translated-content": "Adds enable translated content button to language columns in page view",
"web-vision/deepltranslate-assets": "Enables the translation of files in FileList Modal via deepl",
"typo3/cms-dashboard": "Install the package to enable the widgets from deepltranslate packages"
},
"autoload": {
"psr-4": {
"WebVision\\WvDeepltranslate\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"WebVision\\WvDeepltranslate\\Tests\\": "Tests"
}
},
"scripts": {
"cs": ".Build/bin/php-cs-fixer",
"tl": ".Build/bin/typoscript-lint",
"phpstan": ".Build/bin/phpstan",
"phpunit": ".Build/bin/phpunit",
"cs:check": "@cs fix --config Build/php-cs-fixer/php-cs-rules.php --ansi --diff --verbose --dry-run",
"cs:fix": "@cs fix --config Build/php-cs-fixer/php-cs-rules.php --ansi",
"analyze:php": "@phpstan analyse --ansi --no-progress --memory-limit=768M",
"analyze:php:11": "@analyze:php --configuration=Build/phpstan/Core11/phpstan.neon",
"analyze:baseline:11": "@analyze:php --configuration=Build/phpstan/Core11/phpstan.neon --generate-baseline=Build/phpstan/Core11/phpstan-baseline.neon",
"analyze:php:12": "@analyze:php --configuration=Build/phpstan/Core12/phpstan.neon",
"analyze:baseline:12": "@analyze:php --configuration=Build/phpstan/Core11/phpstan.neon --generate-baseline=Build/phpstan/Core12/phpstan-baseline.neon",
"lint:typoscript": "@tl --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": "@phpunit --colors=always --configuration Build/phpunit/UnitTests.xml",
"test:php:functional": "@test:php:unit --configuration Build/phpunit/FunctionalTests.xml",
"test:php:unit10": "@phpunit --colors=always --configuration Build/phpunit/UnitTests-10.xml",
"test:php:functional10": "@test:php:unit --configuration Build/phpunit/FunctionalTests-10.xml"
}
}