forked from web-vision/deepltranslate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
123 lines (123 loc) · 3.83 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": "Fork of deepltranslate from pitsolutions. 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"],
"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": "Ricky Mathew",
"role": "Developer"
},
{
"name": "Anu Bhuvanendran Nair",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/web-vision/wv_deepltranslate/issues",
"source": "https://github.com/web-vision/wv_deepltranslate"
},
"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"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-gd": "*",
"ext-curl": "*",
"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-extensionmanager": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-fluid": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-frontend": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-install": "^9.5 || ^10.4 || ^11.5",
"typo3fluid/fluid": "^2.7"
},
"require-dev": {
"armin/editorconfig-cli": "^1.5",
"b13/container": "^1.6",
"friendsofphp/php-cs-fixer": "^3.0",
"helhum/typo3-console": "^5.8",
"helmich/typo3-typoscript-lint": "^2.5",
"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-filelist": "^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",
"typo3/testing-framework": "^4.11.1"
},
"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",
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"ec:check": "ec -v -n --no-progress -e'var/log' -e'.Build' -e'.ddev' -e'phpstan-baseline.neon'",
"ec:fix": "ec -v -n --fix -e'var/log' -e'.Build' -e'.ddev'",
"cs:check": "php-cs-fixer fix --config .config/.php-cs-rules.php --ansi --diff --verbose --dry-run",
"cs:fix": "php-cs-fixer fix --config .config/.php-cs-rules.php --ansi",
"analyze:php": "phpstan analyse --ansi --no-progress --memory-limit=768M --configuration=.config/phpstan.neon",
"lint:typoscript": "typoscript-lint --ansi --config=./.config/typoscript-lint.yml",
"test:php": [
"@test:php:unit",
"@test:php:functional"
],
"test:php:unit": "phpunit --colors=always --configuration .config/phpunit-unit.xml",
"test:php:functional": "@test:php:unit --configuration .config/phpunit-functional.xml",
"post-autoload-dump": [
"@prepare-extension-test-structure"
]
}
}