-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
43 lines (43 loc) · 1.12 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
{
"name": "gengo/gengo",
"type": "library",
"description": "Gengo API client library for PHP",
"keywords": ["gengo", "translation", "api"],
"homepage": "http://github.com/gengo/gengo-php",
"license": "MIT",
"authors": [
{
"name": "Vladimir Bashkirtsev",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Gengo",
"email": "[email protected]",
"homepage": "http://gengo.com",
"role": "Developer"
}
],
"autoload" : {
"psr-4" : {
"Gengo\\": [ "src" ]
},
"files": [ "src/exceptions.php" ]
},
"require": {
"php": ">=8.1",
"ext-gettext": "*",
"ext-hash": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "~7.4"
},
"require-dev": {
"pdepend/pdepend": "^2.2",
"phpmd/phpmd": "^2.4",
"phploc/phploc": "^7.0",
"sebastian/phpcpd": "^2.0",
"phpdocumentor/phpdocumentor": "3.1",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "3.4"
}
}