-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 1.33 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": "bobbyshaw/ibm-watson-visual-recognition",
"type": "library",
"description": "A PHP library to provide API calls & handle authentication with the IBM Watson Visual Recognition",
"license": "Apache-2.0",
"keywords": ["ibm" ,"watson", "bluemix", "visual recognition"],
"homepage": "https://github.com/bobbyshaw/ibm-watson-visual-recognition-php",
"authors": [
{
"name": "Tom Robertshaw",
"email": "[email protected]",
"homepage": "http://tomrobertshaw.net",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "6.1.*",
"psr/http-message": "1.0.*",
"symfony/console": "2.6.*",
"symfony/http-foundation": "~2.1"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "2.*",
"phpunit/phpunit": "4.0.*",
"phpro/grumphp": "^0.7.0",
"fabpot/php-cs-fixer": "^1.11",
"squizlabs/php_codesniffer": "^2.5",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Bobbyshaw\\WatsonVisualRecognition\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bobbyshaw\\WatsonVisualRecognition\\": "Tests"
}
}
}