flooris/ergonode-api-laravel

PHP Laravel package for consuming the Ergonode PIM backend

Installs: 1 773

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 3

Forks: 5

Open Issues: 1

pkg:composer/flooris/ergonode-api-laravel

1.1.0 2024-05-14 13:30 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);