leadferret / api-php-sdk
Client library for LeadFerret APIs
Requires
- php: >=5.5.1
- guzzlehttp/guzzle: ^6.0
- solvire/common-utilities: dev-master
- vlucas/phpdotenv: ^2.0
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2024-12-11 10:38:12 UTC
README
LeadFerret-API-PHP-SDK
Description
Client SDK for the LeadFerret API - written in PHP. Allows you to work with the LeadFerret End-User API.
This is in development - not ready for use
Installation
For now just check out the repo from git. Later we will add it to packagyst so you can composify it.
git clone https://github.com/leadferret/LeadFerret-API-PHP-SDK.git
sub-Alpha
This library is in sub-Alpha state. Contact us if you wish to have more details. If you wish to work on this or add features please fork it and send a pull request.
Usage
Make sure you set up your .env file properly. This client uses DotEnv to handle the environment and config items.
This distribution comes with an example config .env.example
and inside this file are some of the environment variables that should be used to set up the application.
Requirements
Developer Documentation
Please note documentation found at apiary.io
Basic Example
See the examples/ directory for examples of the key client features.
<?php include_once '../bootstrap.php'; use LeadFerret\LFClient; $client = new LFClient(); $token = $client->authenticate(); echo $token;