flooris / ergonode-api-laravel
PHP Laravel package for consuming the Ergonode PIM backend
Installs: 1 324
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 3
Open Issues: 1
Requires
- php: >=8.0
- guzzlehttp/guzzle: ^6.5.5|^7.0
- illuminate/config: ^7.0|^8.0|^9|^10
- dev-master
- 1.1.0
- 1.0.0
- 0.7.1
- 0.7.0
- v0.6.1
- 0.6.0
- 0.5.7
- 0.5.6
- 0.5.5
- 0.5.4
- 0.5.3
- 0.5.2
- 0.5.1
- 0.5.0
- 0.4.0
- 0.3.9
- 0.3.8
- 0.3.7
- 0.3.6
- 0.3.5
- 0.3.4
- v0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
- dev-feature/decoderesponse-on-all-requesttypes
- dev-feature/laravel-9-compatibility
- dev-feature/multi-language-support
- dev-development
- dev-feature/refactor-models
- dev-feature/image-upload
- dev-refactoring
- dev-feature/get-all-products-with-paginations-and-parameters
- dev-hotfix/IRP---Ergonode-integratie-met-Shopware---attributen-goed-zetten
This package is auto-updated.
Last update: 2024-11-14 14:41:27 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);