├── .gitignore ├── README.md ├── composer.json ├── composer.lock └── src ├── Api ├── ConceptInsightsInterface.php └── ConfigInterface.php ├── ConceptInsights.php ├── ConceptInsights ├── Corpus.php └── Document.php ├── Config.php ├── Factory ├── CorpusFactory.php └── DocumentFactory.php ├── Ibm.php └── SpeechToText.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/composer.lock -------------------------------------------------------------------------------- /src/Api/ConceptInsightsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/src/Api/ConceptInsightsInterface.php -------------------------------------------------------------------------------- /src/Api/ConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/src/Api/ConfigInterface.php -------------------------------------------------------------------------------- /src/ConceptInsights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/src/ConceptInsights.php -------------------------------------------------------------------------------- /src/ConceptInsights/Corpus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/src/ConceptInsights/Corpus.php -------------------------------------------------------------------------------- /src/ConceptInsights/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/src/ConceptInsights/Document.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/Factory/CorpusFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/src/Factory/CorpusFactory.php -------------------------------------------------------------------------------- /src/Factory/DocumentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/src/Factory/DocumentFactory.php -------------------------------------------------------------------------------- /src/Ibm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/src/Ibm.php -------------------------------------------------------------------------------- /src/SpeechToText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brideo/IBM-Watson-PHP-Library/HEAD/src/SpeechToText.php --------------------------------------------------------------------------------