flooris / ergonode-api-laravel
PHP Laravel package for consuming the Ergonode PIM backend
1.1.1
2025-11-19 13:23 UTC
Requires
- php: >=8.0
- guzzlehttp/guzzle: ^6.5.5|^7.0
- illuminate/config: ^7.0|^8.0|^9|^10|^11
This package is auto-updated.
Last update: 2026-05-19 14:19:04 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);