-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcomposer.json
50 lines (50 loc) · 924 Bytes
/
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
{
"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": "[email protected]",
"homepage": "https://ozana.cz"
}
],
"bin": [
"bin/potrans"
],
"require": {
"symfony/console": "^6.0",
"gettext/gettext": "^5.6",
"google/cloud-translate": "^1.12",
"symfony/cache": "^6.0",
"deeplcom/deepl-php": "^1.2",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"nette/tester": "^2.4"
},
"autoload": {
"psr-4": {
"potrans\\": "src/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}