-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
114 lines (114 loc) · 3.94 KB
/
composer.json
File metadata and controls
114 lines (114 loc) · 3.94 KB
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
{
"name": "web-vision/deepl-base",
"type": "typo3-cms-extension",
"description": "DeepL Base - Provides shared things across deepl related extensions, for example a shared point when overriding same TYPO3 backend fluid files are required and similar.",
"license": [
"GPL-2.0-or-later"
],
"homepage": "https://www.web-vision.de/en/automated-translations-with-typo3-and-deepl.html",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": [
"TYPO3 CMS",
"extension",
"translate",
"deepl"
],
"authors": [
{
"name": "web-vision GmbH",
"email": "hello@web-vision.de",
"role": "Maintainer"
},
{
"name": "Stefan Bürk",
"role": "Maintainer",
"email": "stefan@buerk.tech"
},
{
"name": "Markus Hofmann",
"email": "typo3@calien.de",
"role": "Maintainer"
},
{
"name": "Riad Zejnilagic Trumic",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/web-vision/deepl-base/issues",
"source": "https://github.com/web-vision/deepl-base"
},
"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,
"vaimo/composer-patches": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "deepl_base",
"web-dir": ".Build/Web",
"Package": {
"providesPackages": []
},
"version": "2.0.1-dev"
},
"branch-alias": {
"dev-main": "2.0.x-dev"
},
"patches-search": "patches/"
},
"require": {
"php": "^8.2 || ^8.3 || ^8.4 || ^8.5",
"ext-json": "*",
"typo3/cms-backend": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-core": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-fluid": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-setup": "~13.4.28@dev || ~14.3.0@dev"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94.2",
"helmich/phpunit-json-assert": "^3.5.5",
"helmich/typo3-typoscript-lint": "^3.1.0",
"nikic/php-parser": "^4.15.1 || ^5.1.0",
"php-mock/php-mock-phpunit": "^2.15.0",
"phpstan/phpstan": "^2.1.40",
"phpunit/phpunit": "^11.2.5",
"ramsey/uuid": "^4.2",
"saschaegerer/phpstan-typo3": "^2.1.1 || ^3.0.1",
"sbuerk/typo3-site-based-test-trait": "^2.0.1 || ^3.0.0",
"typo3/cms-belog": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-dashboard": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-extbase": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-extensionmanager": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-filelist": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-fluid-styled-content": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-frontend": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-info": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-install": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-lowlevel": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-rte-ckeditor": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-styleguide": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-tstemplate": "~13.4.28@dev || ~14.3.0@dev",
"typo3/cms-workspaces": "~13.4.28@dev || ~14.3.0@dev",
"typo3/testing-framework": "^9.5.0",
"vaimo/composer-patches": "^6.0.1"
},
"autoload": {
"psr-4": {
"WebVision\\Deepl\\Base\\": "Classes/",
"WebVision\\Deepl\\Base\\Core13\\": "Core13/Classes/"
}
},
"autoload-dev": {
"psr-4": {
"WebVision\\Deepl\\Base\\Tests\\": "Tests"
}
}
}