Download the PHP package label84/laravel-active-campaign without Composer

On this page you can find all versions of the php package label84/laravel-active-campaign. 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-active-campaign

[!WARNING]

This package is no longer maintained.

We have decided to stop maintaining this package. We don't use ActiveCampaign anymore and don't have the time to maintain this package.

Suggested alternative: https://github.com/rossbearman/laravel-active-campaign

Feel free to fork our code and adapt it to your needs.

Laravel ActiveCampaign

Latest Stable Version Total Downloads

This package provides a simple interface to the ActiveCampaign API v3.

Currently the packages only supports the endpoints Contacts, Custom Fields, Custom Fields Values, Tags and Lists. Feel free to PR the remaining endpoints.

Laravel Support

Version Release
10.x 1.2
9.x 1.1

Installation

1. Install the package via composer

2. Publish the config file

3. Add the base URL and API key to your .env

Usage

Access via facade:

Resolve directly out of the container:

Inject into a constructor or method via automatic injection:

Examples

The following examples use the facade for simplicity and assume Label84\ActiveCampaign\Facades\ActiveCampaign has been imported.

Contacts

Retrieve an existing contact

List all contact, search contacts, or filter contacts by query defined criteria

See the API docs for a full list of possible query parameters.

Create a new contact

Create a contact if they don't exist, or update an existing contact

Update an existing contact

Update the status of a contact on a list

The status should be 1 for subscribed and 2 for unsubscribed

Delete an existing contact

Add a tag to contact

Remove a tag from a contact

Custom Field Values

Retrieve an existing field value

Create a field value

Update an existing field value

Delete an existing field value

Custom Fields

Retrieve an existing field

Create a field

Update an existing field

Delete an existing field

Tags

Retrieve an existing tag

List all tags, optionally filtered by name

Create a tag

Update an existing tag

Delete an existing tag

Tests

License

MIT


All versions of laravel-active-campaign with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
illuminate/support Version ^9.0|^10.0
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 label84/laravel-active-campaign contains the following files

Loading the files please wait ....