定制 rhincodon/laravel-letsads 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

rhincodon/laravel-letsads

最新稳定版本:1.1.5

Composer 安装命令:

composer require rhincodon/laravel-letsads

包简介

Laravel LetsAds SMS Service Provider

README 文档

README

Laravel 5.x package for LetsAds SMS provider.

Latest Version on Packagist Software License Build Status Total Downloads

Install

You can install the package via composer:

$ composer require rhincodon/laravel-letsads

This service provider must be installed. And facade:

// config/app.php
'providers' => [
    ...
    Rhinodontypicus\LetsAds\LetsAdsServiceProvider::class,
];
'aliases' => [
    'LetsAds' => Rhinodontypicus\LetsAds\LetsAdsFacade::class,
];

You can publish the migration with:

php artisan vendor:publish --provider="Rhinodontypicus\LetsAds\LetsAdsServiceProvider"

Usage

In all cases will be returned SimpleXML object with appropriate information about action or ErrorException:

use LetsAds;

// Get balance
LetsAds::balance();

// Send messages
// $phones may be string or array
LetsAds::send($message, $from, $phones);

// Get messages statuses
LetsAds::status($messageId);

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-09-14