-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
34 lines (34 loc) · 865 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
{
"name": "daverandom/async-microsoft-translate-client",
"description": "Asynchronous Microsoft Translation API client built on the amp concurrency framework",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Chris Wright",
"email": "cw@daverandom.com"
}
],
"keywords": [
"microsoft",
"translate",
"translation",
"api",
"client",
"async",
"non-blocking",
"amp"
],
"autoload": {
"psr-4": {"DaveRandom\\AsyncMicrosoftTranslate\\": "src/"},
"files": ["src/helpers.php"]
},
"require": {
"php": ">=7",
"amphp/amp": "^1.2",
"amphp/artax": "^2",
"daverandom/exceptional-json": "^1.0",
"room11/dom-utils": "~1.1"
}
}