PHP code example of rieznyk / laravel-infusionsoft

1. Go to this page and download the library: Download rieznyk/laravel-infusionsoft library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

rieznyk / laravel-infusionsoft example snippets


$app->register(Upwebdesign\Infusionsoft\InfusionsoftLumenServiceProvider::class);

// Add the ability to read the `infusionsoft` config file
$app->configure('infusionsoft');


... 

$app->configure('filesystems');

...

$app->singleton(
    Illuminate\Contracts\Filesystem\Factory::class,
    function ($app) {
        return new Illuminate\Filesystem\FilesystemManager($app);
    }
);
...

class_alias(Upwebdesign\Infusionsoft\InfusionsoftFacade::class, 'Infusionsoft');
shell
php artisan vendor:publish --provider="Upwebdesign\Infusionsoft\InfusionsoftServiceProvider" --tag="config"