flooris/ergonode-api-laravel

PHP Laravel package for consuming the Ergonode PIM backend

Maintainers

Package info

github.com/flooris/ergonode-api-laravel

pkg:composer/flooris/ergonode-api-laravel

Statistics

Installs: 1 936

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 1

1.1.1 2025-11-19 13:23 UTC

README

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