talentui33/active-campaign
Integration and API Consuming for ActiveCampaign
6,634
2
| Install | |
|---|---|
composer require talentui33/active-campaign |
|
| Latest Version: | v1.2.2 |
| PHP: | >=7.2 |
| License: | MIT |
| Last Updated: | Apr 19, 2023 |
| Links: | GitHub · Packagist |
Maintainer: kcifuentes
ActiveCampaign
Paquete para el uso de la API de ActiveCampaign Contiene métodos personalizados y soporte para laravel 5.x
Instalación
Instalación usando Composer.
composer require talentui33/active-campaign
Agregar las siguientes variables al archivo .env
ACTIVECAMPAIGN_API_URL='Your API Url'
ACTIVECAMPAIGN_API_KEY='Your API Key'
Testing
Para el uso de los test se debe de crear la clase TestCase.php en el directorio tests/ y debe de contener la siguiente estructura:
<?php
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');
}
}
Related Packages
codebykyle/activecampaign
Wrapper on the ActiveCampaign PHP API - with custom methods and support for Lara...
4,940
1
ghattrell/activecampaign
Wrapper on the ActiveCampaign PHP API - with custom methods and support for Lara...
61,604
2
gentor/activecampaign
Wrapper on the ActiveCampaign PHP API - with custom methods and support for Lara...
93,149
7
cyvelnet/laravel5-fractal
A simple fractal service provider and transformer generator with model attribute...
190,011
79
pixelpeter/laravel5-woocommerce-api-client
Laravel 5 wrapper for the Woocommerce REST API
106,676
123