php-extended/php-api-com-userstack-object

A library that implements the php-extended/php-api-com-userstack-interface library

7.0.2 2024-04-08 21:41 UTC

README

A php API wrapper to connect to userstack.com API.

coverage build status

Installation

The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.

  • Download composer.phar from their website.
  • Then run the following command to install this library as dependency :
  • php composer.phar php-extended/php-api-com-userstack-object ^7

Basic Usage

You may use this library the following way :


use PhpExtended\Endpoint\HttpEndpoint;
use PhpExtended\UserstackComApi\UserstackComApiEndpoint;

/* @var $client \Psr\Http\Client\ClientInterface */
/* @var $apiKey string */

$endpoint = new UserstackComApiEndpoint(new HttpEndpoint($client), $apiKey);

$userAgent = $endpoint->getUserAgent('<put here your user agent string (raw ascii, not encoded)>');
// $userAgent is now a \PhpExtended\UserstackComApi\UserstackComApiUserAgent

License

MIT (See license file).