Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 478 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 478 Bytes

Ergonode PHP API

Laravel PHP package for consuming the Ergonode PIM backend services.

Add the package to Laravel

composer require flooris/ergonode-api-laravel
php artisan vendor:publish --tag=ergonode-api-laravel
nano config/ergonode.php

Usage example

$hostname = config('ergonode.hostname');
$username = config('ergonode.username');
$password = config('ergonode.password');

$client = Flooris\Ergonode\Client($hostname, $username, $password);