wisembly / semantria-php
Semantria API client built on top of Guzzle 3
Installs: 5 746
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 16
Forks: 1
Open Issues: 2
Requires
- php: >=5.4.0
- guzzle/guzzle: ~3.9
Requires (Dev)
- phpunit/phpunit: ~3.7
This package is not auto-updated.
Last update: 2024-10-26 18:22:40 UTC
README
PHP SDK for Semantria API (http://semantria.com).
This SDK is NOT official, heavily inspired by intercom-php and by official Semantria PHP SDK
We developped and maintain this library for our own usage and released it open source (see LICENCE.md) if it could help. Semantria and its API belongs to Semantria.
Basic usage
Remember to include the Composer autoloader in your application:
<?php require_once 'vendor/autoload.php'; // Application code...
Configure your access credentials when creating a client:
<?php use Semantria\SemantriaAuthClient; $semantria = SemantriaAuthClient::factory(array( 'consumer_key' => 'my-consumer-key', 'consumer_secret' => 'my-consumer-secret', 'application_name' => 'my-app', 'use_compression' => false )); $semantria->addDocument([ 'id' => 'foo', 'text' => 'This method queues document onto the server for analysis. Queued document analyzes individually and will have its own set of results. If unique configuration ID provided, Semantria uses settings of that configuration during analysis, in opposite the primary configuration uses. Document IDs are unique in scope of configuration. If the same ID appears twice, Semantria overrides existing document with the new Data.' ]); $semantria->getDocument(['document_id' => 'foo']);
Testing
Run bin/phpunit
Resources
Resources this API supports:
Licence
See LICENCE file.