Download the PHP package wickedreports/old-php-isdk without Composer

On this page you can find all versions of the php package wickedreports/old-php-isdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package old-php-isdk

PHP iSDK

Note: This PHP-iSDK is deprecated, and will be removed from Infusionsoft's public github on April, 30 2015. Please use infusionsoft-php instead.

This SDK allows developers to easily use the Infusionsoft API with PHP

Install Instructions

This SDK requires at least PHP 5.2

  1. Clone the repository to your system
  2. Copy the "src" folder (or its contents) to the folder that will hold the SDK

Configuration

There are two ways we can connect to the API.

  1. First way is to use the src/conn.cfg.php configuration file

    A. You will need your Application Name and Your API Key

    B. In src/conn.cfg.php file you will need to replace the following:

  2. We can pass in the Application Name and API Key directly into the cfgCon function

    A. You will need your Application Name and Your API Key

Making Your First API Call

In the script you want to make the API call in you will need to do the following:

  1. We need to require the iSDK
  2. Next we need to create an object
  3. Next we need to create the connection
    • OR

  4. Next we will make our first API call using the ContactService.findByEmail method. This method returns contact information by an email address we send
  5. Finally we want to print the return information to the browser window

How to Use Logging

As of Version 1.8.3 the iSDK has the ability to log API calls to a CSV. By default logging is disabled.

To enable logging do the following:

  1. In the script you want to log the API Calls of add this after you create the object
  2. (Optional) You can set the location of the CSV. By default the csv is created in the same directory as isdk.php

Misc Functions

  1. infuDate() - formats your date string for use with the API. Has an optional parameter for doing UK date formats.

iSDK


All versions of old-php-isdk with dependencies

PHP Build Version
Package Version
Requires php Version >=5.2.0
ext-curl Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package wickedreports/old-php-isdk contains the following files

Loading the files please wait ....