webweave / floraathome-php-sdk
There is no license information available for the latest version (v1.1) of this package.
Flora@Home rest api sdk
v1.1
2019-05-25 11:17 UTC
Requires
- ext-json: *
- guzzlehttp/guzzle: ~6.0
This package is auto-updated.
Last update: 2025-03-19 23:53:14 UTC
README
PHP Client for the Flora@Home rest api
Installation
This project can easily be installed through Composer.
composer require webweave/floraathome-php-sdk
Usage
You need to have an api key, you can get this from your flora@home account.
Example
use Flora\SDK\Connection; use Flora\SDK\Flora; $connection = new Connection('your apikey'); $flora = new Flora($connection); //Get full product list $flora->Products()->getProducts();