-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
39 lines (39 loc) · 1.22 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
{
"name": "plugins-world/translate",
"description": "An extension package that supports multi platform translation, such as Baidu translation, Google translation, Jinshan translation and Youdao translation",
"keywords": ["translate", "content recognizer", "language recognizer", "baidu", "google", "jinshan", "youdao"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "mouyong",
"email": "[email protected]",
"homepage": "https://github.com/mouyong",
"role": "Creator & Developer"
}
],
"support": {
"source": "https://github.com/plugins-world/translate",
"homepage": "https://github.com/plugins-world/translate",
"issues": "https://github.com/plugins-world/translate/issues"
},
"require": {
"php": ">=8.0",
"guzzlehttp/guzzle": "^7.4.5|^8.0",
"stichoza/google-translate-php": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"mockery/mockery": "*"
},
"autoload": {
"psr-4": {
"Plugins\\Translate\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Plugins\\Translate\\Test\\": "tests"
}
}
}