-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
77 lines (77 loc) · 1.78 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "adam-paterson/ibm-watson-sdk",
"description": "IBM Watson SDK",
"homepage": "https://github.com/adam-paterson/ibm-watson-sdk",
"support": {
"issues": "https://github.com/adam-paterson/ibm-watson-sdk/issues",
"source": "https://github.com/adam-patereson/ibm-watson-sdk"
},
"keywords": [
"IBM Watson SDK",
"Machine Learning",
"Artificial Intelligence",
"AI",
"ML"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Adam Paterson",
"email": "[email protected]",
"homepage": "https://adampaterson.co.uk"
},
{
"name": "Contributors",
"homepage": "https://github.com/adam-paterson/ibm-watson-sdk/contributors"
}
],
"require": {
"php": "~7.0",
"ext-json": "*",
"php-http/client-implementation": "*",
"php-http/client-common": "^1.8",
"php-http/discovery": "^1.4",
"php-http/httplug": "^1.1",
"php-http/message": "^1.7",
"php-http/message-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"mockery/mockery": "^1.1",
"phpspec/phpspec": "^5.0",
"phpunit/phpunit": "^7.3",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4": {
"IBM\\Watson\\": "src"
}
},
"scripts": {
"test": [
"@unit-tests",
"@spec-tests",
"@code-smell"
],
"unit-tests": "phpunit",
"spec-tests": "phpspec run",
"code-smell": "phpcs ",
"fix-style": ""
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true,
"bin-dir": "bin"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"php-http/guzzle6-adapter": "In order to use Guzzle v6 as the HTTP client"
}
}