PHP code example of talentui33 / active-campaign

1. Go to this page and download the library: Download talentui33/active-campaign 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/ */

    

talentui33 / active-campaign example snippets





namespace Tests;


use Orchestra\Testbench\TestCase as BaseTestCase;

class TestCase extends BaseTestCase
{
    protected $userEmail = 'User email by default';
    protected function setUp(): void
    {
        parent::setUp();
        $this->app['config']->set('activecampaign.api_url', 'Your API Url');
        $this->app['config']->set('activecampaign.api_key', 'Your API Key');
    }
}