kubill / emay-for-laravel
emay SMS for laravel5.*
1.0.1
2018-01-11 17:16 UTC
This package is auto-updated.
Last update: 2024-09-29 05:08:10 UTC
README
亿美短信接口轮子
安装
使用composer安装
composer require kubill/emay-for-laravel
Laravel版本 < 5.5(可选)
在 config/app.php
中添加服务提供者
Kubill\Emay\EmayServiceProvider::class,
并在 config/app.php
中添加Agent别名
'Emay' => Kubill\Emay\Facades\Emay::class,
基本用法
首先创建一个Emay
实例(如果你使用Laravel,可以使用Emay
外观)
use Kubill\Emay\Emay; $emay = new Emay(); $emay->send(138xxxxxxxx,'hello world');
或者
use Kubill\Emay\Emay; Emay::send(138xxxxxxxx,'hello world');
许可
Laravel User Agent是在MIT许可(MIT)下发布的。