-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
165 lines (165 loc) · 5.4 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "web-vision/deepltranslate-core",
"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": "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"
},
{
"name": "Stefan Bürk",
"role": "Developer",
"email": "stefan@buerk.tech"
}
],
"support": {
"issues": "https://github.com/web-vision/deepltranslate-core/issues",
"source": "https://github.com/web-vision/deepltranslate-core"
},
"conflict": {
"studiomitte/recordlist-thumbnail": "*",
"webvision/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,
"php-http/discovery": true
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "deepltranslate_core",
"ignore-as-root": false,
"web-dir": ".Build/Web",
"app-dir": ".Build"
},
"branch-alias": {
"dev-main": "5.x.x-dev"
}
},
"require": {
"php": "^8.1 || ^8.2 || ^8.3 || ^8.4",
"ext-curl": "*",
"ext-json": "*",
"ext-pdo": "*",
"deeplcom/deepl-php": ">=1.6.0 <=1.8.0",
"typo3/cms-backend": "^12.4.2",
"typo3/cms-core": "^12.4.2",
"typo3/cms-extbase": "^12.4.2",
"typo3/cms-fluid": "^12.4.2",
"typo3/cms-install": "^12.4.2",
"typo3/cms-scheduler": "^12.4.2",
"typo3/cms-setup": "^12.4.2"
},
"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": "^10.5",
"ramsey/uuid": "^4.2",
"saschaegerer/phpstan-typo3": "^1.9",
"sbuerk/typo3-cms-styleguide-version-sync": "^12",
"typo3/cms-belog": "^12.4.2",
"typo3/cms-dashboard": "^12.4.2",
"typo3/cms-extensionmanager": "^12.4.2",
"typo3/cms-filelist": "^12.4.2",
"typo3/cms-fluid-styled-content": "^12.4.2",
"typo3/cms-frontend": "^12.4.2",
"typo3/cms-info": "^12.4.2",
"typo3/cms-lowlevel": "^12.4.2",
"typo3/cms-rte-ckeditor": "^12.4.2",
"typo3/cms-styleguide": "^12.0.5",
"typo3/cms-tstemplate": "^12.4.2",
"typo3/cms-workspaces": "^12.4.2",
"typo3/testing-framework": "^8.2.7",
"web-vision/contribution": "@dev"
},
"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\\Deepltranslate\\Core\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"WebVision\\Deepltranslate\\Core\\Tests\\": "Tests",
"WebVision\\TestingFrameworkBackendUserHandlerReplacement\\": "Tests/Functional/Fixtures/Extensions/testing_framework_backenduserhandler_replacement/Classes"
}
},
"scripts": {
"cs": "@php .Build/bin/php-cs-fixer",
"tl": "@php .Build/bin/typoscript-lint",
"phpstan": "@php .Build/bin/phpstan",
"phpunit": "@php .Build/bin/phpunit",
"typo3": "@php .Build/bin/typo3",
"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:12": "@phpstan analyse --ansi --no-progress --memory-limit=768M --configuration=Build/phpstan/Core12/phpstan.neon",
"analyze:baseline:12": "@phpstan analyse --ansi --no-progress --memory-limit=768M --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",
"ddev:setup-instance": [
"@typo3 setup --driver=mysqli --host=db --port=3306 --dbname=db --username=db --password=db --project-name=deepltranslate-core --server-type=apache",
"@typo3 ddev:generate"
]
},
"scripts-descriptions": {
"ddev:setup-instance": "Setup new ddev instance using EXT:styleguide generator"
},
"repositories": {
"local": {
"type": "path",
"url": "packages/*"
}
}
}