PHPackages                             baorv/cleverreach - 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. baorv/cleverreach

ActiveLibrary[API Development](/categories/api)

baorv/cleverreach
=================

CleverReach API for PHP

v0.0.1(7y ago)447[2 issues](https://github.com/baorv/cleverreach/issues)MITPHPPHP ^7.0

Since Jan 18Pushed 7y ago2 watchersCompare

[ Source](https://github.com/baorv/cleverreach)[ Packagist](https://packagist.org/packages/baorv/cleverreach)[ RSS](/packages/baorv-cleverreach/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (3)Versions (2)Used By (0)

cleverreach
===========

[](#cleverreach)

> Easy CleverReach v3 integration for PHP

[![Build Status](https://camo.githubusercontent.com/92e27e27b0d997ddb1db43c5e7f0588b2ea4add983fa37ee23e0209488d43877/68747470733a2f2f7472617669732d63692e6f72672f62616f72762f636c6576657272656163682e7376673f6272616e63683d6d6173746572)](https://github.com/baorv/cleverreach)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)

- [Requirements](#requirements)
- [Installation](#installation)
- [Origin docs](#origin-docs)
- [Usage](#usage)
    - [Laravel](#laravel)
    - [PHP](#php)
- [Testing](#testing)
- [Issue](#issue)
- [License](#license)
- [Todo](#todo)

Requirements
------------

[](#requirements)

\#DependencyTypeVersionNote1PHPPlatform&gt;= 7.02LaravelLibrary&gt;= 5.5Only when using LaravelInstallation
------------

[](#installation)

### Packagist

[](#packagist)

- You can install this package via composer

```
composer require "baorv/cleverreach":"^0.0.1"
```

- Or `composer.json` way

```
{
  "require": {
    "baorv/cleverreach": "^0.0.1"
  }
}
```

and run

```
composer update "baorv/cleverreach"
```

### For Laravel

[](#for-laravel)

- Add [ServiceProvider](src/ServiceProvider.php) to `config/app.php`

```
Baorv\Cleverreach\ServiceProvider::class
```

- Change environment variables in `.env`

```
CLEVERREACH_CLIENT_ID=
CLEVERREACH_CLIENT_SECRET=
CLEVERREACH_ACCESS_TOKEN=
```

- If you want to customize [configuration](config/cleverreach.php). You also can publish the config

```
php artisan vendor:publish --provider="Baorv\\CleverReach\ServiceProvider"
```

Origin docs
-----------

[](#origin-docs)

The origin document from CleverReach located in

Usage
-----

[](#usage)

### PHP

[](#php)

- To authenticate CleverReach

```
