PHPackages                             conesso/client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. conesso/client

ActiveLibrary[API Development](/categories/api)

conesso/client
==============

API client written in PHP for https://www.conesso.io/.

0.1.2(2y ago)09MITPHPPHP ^7.4 | ^8.0

Since Nov 13Pushed 2y agoCompare

[ Source](https://github.com/Conesso/api-php)[ Packagist](https://packagist.org/packages/conesso/client)[ RSS](/packages/conesso-client/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelogDependencies (15)Versions (5)Used By (0)

 [![Conesso header](https://raw.githubusercontent.com/Conesso/api-php/develop/art/header.png)](https://raw.githubusercontent.com/Conesso/api-php/develop/art/header.png)

 [![](https://camo.githubusercontent.com/580af27e3050ee3d9375b93dacccda1b87ad3b682fbbd3c7ce4e95f42f495c2f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f434f4e4553534f2d626c75653f7374796c653d666f722d7468652d6261646765266c6f676f436f6c6f723d253233313733453538)](https://www.conesso.io) [![](https://camo.githubusercontent.com/9a640defd56dcee131380444397a53c6535de092526d1b7a3ba58b226a9fdb3c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f636f6e6573736f2f6170692d7068702f74657374732e796d6c3f7374796c653d666f722d7468652d6261646765)](https%3A%2F%2Fgithub.com%2FConesso%2Fapi-php%2Factions%2Fworkflows%2Ftests.yml) [![](https://camo.githubusercontent.com/0b5a15ab703502f75684d44d708734827642cfebfdcf5aa6ff6611bb2df0a83d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636f6e6573736f2f636c69656e743f7374796c653d666f722d7468652d6261646765)](https%3A%2F%2Fpackagist.org%2Fpackages%2Fconesso%2Fclient) [![](https://camo.githubusercontent.com/efd14fea5b64347e8d22104faeb503413fdb7f1afae74fd2e5951ce2cdc1bc0e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636f6e6573736f2f636c69656e743f7374796c653d666f722d7468652d6261646765)](https%3A%2F%2Fpackagist.org%2Fpackages%2Fconesso%2Fclient%2Fstats)

---

Getting started
===============

[](#getting-started)

```
composer require conesso/client
```

This library is designed to use any PSR-18 client already integrated into your project. Ensure that the `php-http/discovery` composer plugin is allowed to run or install a client of your choice manually.

Guzzle is a well known and widely used PSR-18 HTTP client package.

```
composer require guzzlehttp/guzzle
```

Create your configured API client.
----------------------------------

[](#create-your-configured-api-client)

```
use Conesso\Conesso;

$apiKey = '9gba262882g87f3b31e4f843adf3d66f19d322d6d7673b19c3e61f6f07abf2a5';

$client = Conesso::client($apiKey);
```

If you require more control over the HTTP client is it possible to create and configure your own.

```
