-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
53 lines (53 loc) · 1.26 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
{
"name": "deeplcom/deepl-php",
"type": "library",
"description": "Official DeepL API Client Library",
"keywords": [
"deepl",
"translation",
"translator",
"api"
],
"require": {
"php": ">=7.3.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"psr/http-client": "^1.0",
"php-http/discovery": "^1.18",
"ext-json": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"php-http/multipart-stream-builder": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^9",
"ramsey/uuid": "^4.2",
"squizlabs/php_codesniffer": "^3.3",
"friendsofphp/php-cs-fixer": "^3",
"php-mock/php-mock-phpunit": "^2.6",
"guzzlehttp/guzzle": "^7.7.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"DeepL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DeepL\\": "tests/"
}
},
"authors": [
{
"name": "DeepL SE",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}