Looking to hire Laravel developers? Try LaraJobs

ergonode-api-laravel maintained by flooris

Description
PHP Laravel package for consuming the Ergonode PIM backend
Last update
2026/08/12 11:34 (dev-master)
Links
Downloads
2 053

Comments
comments powered by Disqus

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);