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
2025/11/19 14:23 (dev-master)
Links
Downloads
1 943

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