forked from findbrok/php-watson-api-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.22 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
{
"name": "findbrok/php-watson-api-bridge",
"description": "A simple PHP Wrapper around IBM Watson API",
"keywords": ["php", "ibm", "watson", "api", "bridge"],
"license": "MIT",
"authors": [
{
"name": "Percy Mamedy",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "6.3.*",
"illuminate/support": "~5.0",
"nesbot/carbon": "~1.20"
},
"require-dev": {
"orchestra/testbench": "~3.0.0|~3.0",
"phpunit/phpunit": "~5.5|~4.0"
},
"autoload": {
"psr-4": {
"FindBrok\\WatsonBridge\\" : "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
},
"laravel": {
"providers": [
"FindBrok\\WatsonBridge\\WatsonBridgeServiceProvider"
],
"aliases": {
"Bridge": "FindBrok\\WatsonBridge\\Facades\\Bridge",
"BridgeStack": "FindBrok\\WatsonBridge\\Facades\\BridgeStack",
"Carpenter": "FindBrok\\WatsonBridge\\Facades\\Carpenter"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}