sairiz / infusionsoft
Infusionsoft Official iSDK Wrapper for Laravel 4
Installs: 94
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/sairiz/infusionsoft
Requires
- php: >=5.3.0
 - illuminate/support: 4.2.*
 
Requires (Dev)
- phpunit/phpunit: 3.7.*
 
This package is not auto-updated.
Last update: 2025-10-25 20:26:22 UTC
README
Installation :
- 
Install the package via composer
 - 
Add the following entry to the array of service providers found in app/config/app.php :
'Sairiz\Infusionsoft\InfusionsoftServiceProvider', - 
Publish the config file to your app/config/ directory by running the following from command line in your project root :
php artisan config:publish sairiz/infusionsoft - 
Setup your Infusionsoft application name and api key at app/config/packages/sairiz/infusionsoft/config.php
 
Usage
Call any method using Facade alias (Fuse)
Example :
Fuse::loadCon(1);
Fuse::dsQuery('Contact',100,0,['Id' => %],['Id','FirstName']);