-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
63 lines (63 loc) · 2.04 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
{
"name": "ezsystems/ezplatform-automated-translation",
"description": "eZ Platform Automated Translation Bundle provides interfaces to automatically translate a new content translation from different translation providers.",
"keywords": [
"novactive",
"ezplatform",
"translation",
"deepl",
"googletranslate"
],
"homepage": "https://github.com/ezsystems/ezplatform-automated-translation",
"type": "ezplatform-bundle",
"authors": [
{
"name": "Novactive",
"homepage": "http://www.novactive.us",
"email": "[email protected]"
}
],
"license": [
"GPL-2.0"
],
"require": {
"php": "^7.3 || ^8.0",
"symfony/yaml": "^5.0",
"symfony/routing": "^5.0",
"symfony/console": "^5.0",
"symfony/form": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/event-dispatcher": "^5.0",
"guzzlehttp/guzzle": "^6.3.0",
"ezsystems/ezplatform-kernel": "^1.2",
"ezsystems/ezplatform-richtext": "^2.0",
"ezsystems/ezplatform-admin-ui": "^2.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.2",
"phpmd/phpmd": "^2.6",
"friendsofphp/php-cs-fixer": "^2.10",
"phpunit/phpunit": "^8.5",
"ezsystems/ezplatform-code-style": "^0.1.0",
"dg/bypass-finals": "^1.3"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformAutomatedTranslation\\": "lib",
"EzSystems\\EzPlatformAutomatedTranslationBundle\\": "bundle",
"EzSystems\\EzPlatformAutomatedTranslationBundle\\Tests\\": "tests"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\AutomatedTranslation\\": "tests/lib/",
"EzSystems\\EzPlatformAutomatedTranslation\\Tests\\": "tests/lib/",
"EzSystems\\EzPlatformAutomatedTranslationBundle\\Tests\\": "tests/bundle/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev"
}
}
}