$ php composer.phar require elic-dev/staades-php-sdkFor composer documentation, please refer to getcomposer.org.
Initialize a new StaadesClient with your access key.
$config = array(
'app_key' => 'testapp',
'api_key' => 'testkey',
);
$client = \Staades\StaadesClient::factory($config);Start sending commands to Staades.
Add something to your ident:
$client->addValue('My.test.ident', 1);Set the value of your ident:
$client->setValue('My.test.ident', 1);