opb/laravel-txtlocal 问题修复 & 功能扩展

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

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

opb/laravel-txtlocal

Composer 安装命令:

composer require opb/laravel-txtlocal

包简介

Library to use the TxtLocal online messaging service with Laravel 4

README 文档

README

#Laravel 4 Txtlocal package

##Version 1.0 update - May 2014

As of May 2014, this package has been upgraded, as Txtlocal have altered the way their API works. Major amendments:

  • Making use of Guzzle 4 as opposed to cURL directly
  • Removed functionality to process received text messages, as this is super simple to do in Laravel anyway, and this function brought nothing to the party.
  • Better in-line documentation.

Having said all that, Txtlocal do provide their own PHP library, though it's not on composer. I may look into producing a straight PHP version (as opposed to Laravel-specific) which makes more use of the functionality that Txtlocal expose through their API. Currently we're only doing send SMS and getting the account balance.

Any queries, please get in touch.

To do:

  • Add some tests for Travis

###About TxtLocal is a UK based service providing incoming and outgoing SMS services. This library aims to provide access to some of these functions within the Laravel PHP framework, as well as serving as package development practice for myself!

Currently provides the following functions:

  1. HTTP POST endpoint for incoming TxtLocal messagebox. (Txtlocal service which allows an SMS to be received by them and the details POSTed to a URL specified by you)
  2. Send SMS function through TxtLocal API using cURL
  3. Check the balance of SMS/MMS credits left on the account

###Installation

Installation via composer...

Add opb/laravel-txtlocal to your composer requirements:

"require": {
    "opb/laravel-txtlocal": "~1"
}

Now run composer update

Once the package is installed, open your app/config/app.php configuration file and locate the providers key. Add the following line to the end:

'Opb\LaravelTxtlocal\LaravelTxtlocalServiceProvider',

Next, locate the aliases key and add the following line:

'LaravelTxtlocal' => 'Opb\LaravelTxtlocal\Facades\LaravelTxtlocal',

Finally, publish the default configuration (it will end up in app/config/packages/opb/laravel-txtlocal/config.php):

$ php artisan config:publish opb/laravel-txtlocal

###Usage

  1. Send an SMS to one or more numbers. See the package config file to set up API access.

    // test route to demo SMS sending
    Route::get('send', function()
    {
        $result = LaravelTxtlocal::send(array('447712345678'), 'This is a test message', 'SenderName');
        return $result;
    }
  2. Check your balance of SMS and/or MMS credits

    // test route to get the account balance
    Route::get('checkbalance', function()
    {
        $result = LaravelTxtlocal::balance();
        return $result;
    }

统计信息

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

GitHub 信息

  • Stars: 2
  • Watchers: 3
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2013-09-02