Download the PHP package projectrebel/laravel-active-campaign without Composer
On this page you can find all versions of the php package projectrebel/laravel-active-campaign. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download projectrebel/laravel-active-campaign
More information about projectrebel/laravel-active-campaign
Files in projectrebel/laravel-active-campaign
Download projectrebel/laravel-active-campaign
More information about projectrebel/laravel-active-campaign
Files in projectrebel/laravel-active-campaign
Vendor projectrebel
Package laravel-active-campaign
Short Description A fluent wrapper around version 3 of the Active Campaign API
License MIT
Package laravel-active-campaign
Short Description A fluent wrapper around version 3 of the Active Campaign API
License MIT
Please rate this library. Is it a good library?
Informations about the package laravel-active-campaign
Active Campaign for Laravel
A fluent wrapper around version 3 of the Active Campaign API.
Installation
The first thing to do is require the package using composer.
composer require projectrebel/laravel-active-campaign
Next, you'll need to add the service provider and facade to the related arrays in config/app.php
'providers' = [
...
ProjectRebel\ActiveCampaign\ActiveCampaignServiceProvider::class,
...
];
'aliases' => [
...
'ActiveCampaign' => ProjectRebel\ActiveCampaign\Facades\ActiveCampaign::class,
...
];
Once the package has been installed, you can publish the package's configuration to config/activecampaign.php
.
php artisan vendor:publish --provider="ProjectRebel\ActiveCampaign\ActiveCampaignServiceProvider" --tag="config"
Then add your Active Campaign key and subdomain to your .env
file.
ACTIVE_CAMPAIGN_KEY=your-key
ACTIVE_CAMPAIGN_SUBDOMAIN=your-subdomain
Usage
More documentation coming soon.
Available Commands
- init
- listContacts
- createContact
- syncContact
- addContactToList
- unsubscribeContactFromList
- searchForTag
- addTagToContact
All versions of laravel-active-campaign with dependencies
PHP Build Version
Package Version
Requires
guzzlehttp/guzzle Version
^7.0.1
The package projectrebel/laravel-active-campaign contains the following files
Loading the files please wait ....