delarocha / laravel-encompass-manager
Encompass Manager for Laravel
Installs: 119
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
pkg:composer/delarocha/laravel-encompass-manager
Requires
- php: >=7.1
 - guzzlehttp/guzzle: ^6.5
 
Requires (Dev)
- phpunit/phpunit: ^8.5
 
Suggests
- guzzlehttp/guzzle: Allows for implementation of the Guzzle HTTP client
 
This package is auto-updated.
Last update: 2025-10-29 02:50:50 UTC
README
This repository contains the open source PHP SDK that allows you to access the Encompass Platform from your Lumen/Laravel app.
Lumen Configuration
Install with composer
composer require delarocha/laravel-Encompass-sdk
Create Encompass.php file in config directory.
app
config
  Encompass.php
Add the following configuration array.
return array(
    'user' => env('Encompass_USER'),
    'password' => env('Encompass_PASSWORD'),
    'domain' => env('Encompass_DOMAIN'),
);
Include Encompass config file file in boostrap/app
$app->configure('Encompass');
Example
use Encompass\Encompass;
    $Encompass = new Encompass;
    $segments = $Encompass->getService()->get('/segments')->getItems();
License
MIT