-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
29 lines (29 loc) · 874 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
{
"name": "matthiasnoback/microsoft-translator",
"type": "library",
"description": "Library for making calls to the Microsoft Translator V2 API",
"keywords": ["translate","Microsoft Translator", "Bing"],
"homepage": "http://github.com/matthiasnoback/microsoft-translator",
"license": "MIT",
"authors": [
{
"name": "Matthias Noback",
"email": "[email protected]",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"require": {
"kriswallsmith/buzz": "^1.2",
"doctrine/cache": "^1.11"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-0" : { "MatthiasNoback" : "src/" }
},
"require-dev": {
"phpunit/phpunit": "9.5",
"cache/array-adapter": "^1.1",
"nyholm/psr7": "^1.4"
}
}