forked from web-vision/wv_deepltranslate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
123 lines (123 loc) · 3.86 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
{
"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.",
"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": "hello@web-vision.de",
"role": "Maintainer"
},
{
"name": "Mark Houben",
"email": "markhouben91@gmail.com",
"role": "Developer"
},
{
"name": "Markus Hofmann",
"email": "typo3@calien.de",
"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-main": "4.x.x-dev"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-pdo": "*",
"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"
},
"require-dev": {
"b13/container": "^2.2.2",
"friendsofphp/php-cs-fixer": "^3.14.1",
"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",
"phpstan/phpstan": "^1.3",
"phpunit/phpunit": "^9.6.8 || ^10.1",
"saschaegerer/phpstan-typo3": "^1.0",
"symfony/var-dumper": "^5.4",
"typo3/cms-belog": "^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-tstemplate": "^11.5 || ^12.4",
"typo3/cms-workspaces": "^11.5 || ^12.4",
"typo3/testing-framework": "~7.0@dev"
},
"autoload": {
"psr-4": {
"WebVision\\WvDeepltranslate\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"WebVision\\WvDeepltranslate\\Tests\\": "Tests"
}
},
"scripts": {
"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",
"test:php:unit10": ".Build/bin/phpunit --colors=always --configuration Build/phpunit/UnitTests-10.xml",
"test:php:functional10": "@test:php:unit --configuration Build/phpunit/FunctionalTests-10.xml"
}
}