merajsiddiqui / ibm-watson
IBM Watson SDK PHP
dev-master
2017-03-21 12:21 UTC
Requires
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- phpunit/phpunit: 5.5.*
- xicrow/php-debug: ^2.0
This package is not auto-updated.
Last update: 2025-04-13 00:10:47 UTC
README
IBM Watson is PHP SDK of using IBM watson services provided by IBM. This sdk is unofficial. I personally wish to develop this and i will maintain is as long as possible.
You are free to fork this, use it, and create and issue, I also request you to fork , contribute and create a pull request.
Installation
It is advised to install it using composer.
composer require merajsiddiqui/ibm-watson
Signup IBM watson and get credentials to use API
/config/credential.json
{
"url": "https://gateway.watsonplatform.net/language-translator/api",
"username": "some random string password provided",
"password": "randompassword"
}
Authenticating to Service
<?php include dirname(__DIR__). "/vendor/autoload.php"; use IBMWatson\Config; $api_credintial_json_file = "/config/credential.json"; $config = Config::init($api_credintial_json_file);
Using services:
Translator Service
Authentication:
use IBMWatson\Language\LanguageTranslator\Translator; //$config as above $translator = new Translator($config);
Support or Contact
Having any trouble mail me at : merajsiddiqui@outlook.com or create an issue. Always use IBM watson API refrence for using this sdk.