dangermark/laravel-getresponse

A Laravel 5 wrapper for the GetResponse API
17,925 6
Install
composer require dangermark/laravel-getresponse
Latest Version:0.1
PHP:>=5.4.0
License:MIT
Last Updated:Jun 12, 2020
Links: GitHub  ·  Packagist
Maintainer: dangermark

Laravel-GetResponse

A Laravel 5 wrapper for the GetResponse API

Installation

To get the latest version of Laravel-GetResponse simply require it in your composer.json file.

"dangermark/laravel-getresponse": "dev-master"

You'll then need to run composer install to download it and have the autoloader updated.

Once Laravel-GetResponse is installed you need to register the service provider with the application. Open up app/config/app.php and find the providers key.

<?php

'providers' => [

    Dangermark\GetResponse\GetResponseServiceProvider::class,

]

Laravel-GetResponse also ships with a facade. You can register the facade in the aliases key of your app/config/app.php file.

<?php

'aliases' => [

    'GetResponse' => Dangermark\GetResponse\Facades\GetResponse::class,

]

Create the configuration file using artisan

$ php artisan vendor:publish

And set your own API key:

<?php

return [

    'api_key' => env('GETRESPONSE_API_KEY')

];

Related Packages

faulker/laravel5-rackspace-cloudqueue

Rackspace CloudQueue driver for Laravel 5 Queue

13,992 0
nilportugues/laravel5-json-api-dingo

Laravel5 JSONAPI and Dingo together to build APIs fast

1,498 30
lucasromanojf/laravel5-pdf

Provides the HTML2PDF functionality using the wkhtmltopdf library (Laravel 5)

72,403 7
dansmith/laravel5-foundation

Zurb Foundation components for Laravel5

4,614 10