dangermark/laravel-getresponse 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

dangermark/laravel-getresponse

最新稳定版本:0.1

Composer 安装命令:

composer require dangermark/laravel-getresponse

包简介

A Laravel 5 wrapper for the GetResponse API

README 文档

README

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')

];

统计信息

  • 总下载量: 17.28k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 6
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 6
  • Watchers: 2
  • Forks: 10
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-07-11