2017 © Pedro Peláez
 

library laravel-getresponse

A Laravel 5 wrapper for the GetResponse API

image

dangermark/laravel-getresponse

A Laravel 5 wrapper for the GetResponse API

  • Tuesday, February 14, 2017
  • by dangermark
  • Repository
  • 2 Watchers
  • 2 Stars
  • 2,936 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 1 Open issues
  • 1 Versions
  • 14 % Grown

The README.md

Laravel-GetResponse

A Laravel 5 wrapper for the GetResponse API, (*1)

Installation

To get the latest version of Laravel-GetResponse simply require it in your composer.json file., (*2)

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

You'll then need to run composer install to download it and have the autoloader updated., (*3)

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., (*4)

<?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., (*5)

<?php

'aliases' => [

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

]

Create the configuration file using artisan, (*6)

$ php artisan vendor:publish

And set your own API key:, (*7)

<?php

return [

    'api_key' => env('GETRESPONSE_API_KEY')

];

The Versions

14/02 2017

dev-master

9999999-dev

A Laravel 5 wrapper for the GetResponse API

  Sources   Download

MIT

The Requires

 

by Mark Halcroft

laravel laravel5 getresponse