Download the PHP package ariad/exacttarget-laravel without Composer
On this page you can find all versions of the php package ariad/exacttarget-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ariad/exacttarget-laravel
More information about ariad/exacttarget-laravel
Files in ariad/exacttarget-laravel
Package exacttarget-laravel
Short Description Ariad customization to The best way to talk to Exact Target with Hypertext PreProcessor
License MIT
Homepage https://github.com/:vendor/:package_name
Informations about the package exacttarget-laravel
A Simple API for connecting a Laravel app to Exact Target
This Laravel package provides a collection of methods for clean and easy interaction with the all new Exact Target REST API as well as methods for use with Fuel SDK.
It implements the following Contract which explains what is currently available for use in your Controllers or models. You can get a good idea of what each one will do just from the comments. This is a work in progress and there are many more endpoints to make methods for.
This build includes one implementation for Laravel.
Installation
Begin by installing this package through Composer. Edit your project's composer.json
file to require digitaladditive/exacttargetlaravel
. Or just run composer require digitaladditive/exacttargetlaravel
"require-dev": {
"digitaladditive/ExactTargetLaravel": "~1.1"
}
Next, update Composer from the Terminal:
composer update --dev
Next, You will have to fill out your Exact Target CLIENT_ID and CLIENT_SECRET within the ExactTargetLaravelConfig.php file located in the root of this package with your Exact Target API credentials.
Make sure you have 'mcrypt' installed an enabled on your web server or Fuel SDK calls will fail
Now just write a use statement at the top of your Laravel app files like so:
use digitaladditive/ExactTargetLaravel/LaravelEtApi;
Usage
A few usage examples