Download the PHP package djaxho/laravel-infusionsoft-oauth2 without Composer

On this page you can find all versions of the php package djaxho/laravel-infusionsoft-oauth2. 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 laravel-infusionsoft-oauth2

laravel-infusionsoft-oauth2

Latest Version on Packagist Build Status Coverage Status Quality Score Total Downloads

Laravel package to facilitate the use of the Infusionsoft API using OAUTH2. This packages is quite specific to laravel

Install

Via Composer

Installation

(These instructions are for an 'alerady set-up' laravel project with a functioning database set up) Add the service provider for laravel by adding the following line to your 'providers' array in the file congig/app.php

Publish the package files to your project by running:

Add the following variable to your .env file or u them in your pdate config/laravel-infusionsoft-oauth2.php file with values obtained from your infusionsoft developer account and for ISDK_API_REDIRECT use the uri you are serving your site from (i.e. www.yoursite.dev)

Run your database migrations (first make sure you have your database info in your .env file or config files so you can successfully connect to the database of your choosing):

You may now navigate to your.url/authorize-infusionsoft-api (whichever url you used for ISDK_API_REDIRECT) and click 'authorize.' You will then be taken to infusionsoft to authorize your api connection. At the end of this process you will be led back to the your.url/authorize-infusionsoft-api page with a success message and the oauth2 key stored in your database

Usage

To start using the infusionsoft api after going through the steps above, add this to the top of your php file:

And in the methods of your classes (or in the constructor method) you can leverage laravel's automatic dependency injection to instantiate the infusionsoft api singleton. As an example of something you could do to test your api connection in a controller class:

Then you can use the infusionsoft api documentation to make api calls. As a simple example, you would use it liek this:

Change log

Please see CHANGELOG for more information on what has changed recently.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-infusionsoft-oauth2 with dependencies

PHP Build Version
Package Version
Requires php Version ~5.6|^7.3|^8.0
illuminate/support Version ^5.4
infusionsoft/php-sdk Version 1.1.*
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 djaxho/laravel-infusionsoft-oauth2 contains the following files

Loading the files please wait ....