NetJoint / laravel-sms by yanzhou

SMS Component for Laravel 5 - 第三方短信平台客户端
26
0
3
Package Data
Maintainer Username: yanzhou
Maintainer Contact: netjoint@163.com (NetJoint Ltd)
Package Create Date: 2015-09-11
Package Last Update: 2015-09-14
Language: PHP
License: MIT
Last Refreshed: 2024-11-19 03:05:04
Package Statistics
Total Downloads: 26
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

SMS Component for Laravel 5 简体中文版

Supported SMS Providers

Installation

Add laravel-sms to your composer.json file

"require": {
  "netjoint/laravel-sms": "dev-master"
}

Registering the Package

For Laravel 5.1

Register the service provider within the providers array found in config/app.php

'providers' => array(
    // ...

    NetJoint\LaravelSms\LaravelSmsServiceProvider::class,
)

Add an alias within the aliases array found in config/app.php:

'aliases' => array(
    // ...

    'Sms' => NetJoint\LaravelSms\Facades\Sms::class,
)

For Laravel 5.0

Register the service provider within the providers array found in config/app.php

'providers' => array(
    // ...

    'NetJoint\LaravelSms\LaravelSmsServiceProvider',
)

Add an alias within the aliases array found in config/app.php:

'aliases' => array(
    // ...

    'Sms' => 'NetJoint\LaravelSms\Facades\Sms',
)

Configuration

Publish the package's config file to config/laravel-sms.php

php artisan vendor:publish --provider="NetJoint\LaravelSms\LaravelSmsServiceProvider"

Add the following to your .env file

# Default SMS Provider(lowercase)
SMS_PROVIDER=yimei
# Serial key for SMS Provider Yimei
SMS_YIMEI_CDKEY=2SDK-EMY-6688-AAAAA
# Password for SMS Provider Yimei
SMS_YIMEI_PASSWORD=123456

Usage

use NetJoint\LaravelSms\Facades\Sms;

// $mobile  mobile number
// $message SMS message
// return True if success and False if fail
Sms::send($mobile, $message);

Make a Contribution

Place your implementation of ProviderInterface in Provider under the namespace NetJoint\LaravelSms\Provider and then send me pull request.

Licence

MIT