php-extended/php-api-com-useragentstring-object

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


README

A php API wrapper to connect to useragentstring.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-useragentstring-object ^7

Basic Usage

You may use this library the following way :


use PhpExtended\UserAgentStringComApi\UserAgentStringComApiEndpoint;
use PhpExtended\Endpoint\HttpEndpoint;

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

$endpoint = new UserAgentStringComApiEndpoint(new HttpEndpoint($client));

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

License

MIT (See license file).