-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 939 Bytes
/
composer.json
File metadata and controls
50 lines (50 loc) · 939 Bytes
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
{
"name": "om/potrans",
"description": "Command line tool for translate Gettext with Google Translator API or DeepL API",
"keywords": [
"potrans",
"gettext",
"gettext-library",
"google",
"translator",
"translations",
"translation",
"translate",
"deepl",
"i18n"
],
"license": [
"MIT"
],
"authors": [
{
"name": "Roman Ožana",
"email": "roman@ozana.cz",
"homepage": "https://ozana.cz"
}
],
"bin": [
"bin/potrans"
],
"require": {
"gettext/gettext": "^5.7",
"google/cloud-translate": "^2.1",
"symfony/console": "^7.0 || ^8.0",
"symfony/cache": "^7.0 || ^8.0",
"deeplcom/deepl-php": "^1.16",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"nette/tester": "^2.5"
},
"autoload": {
"psr-4": {
"potrans\\": "src/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}