aeyoll/laravel-free-mobile-notification-sender
Composer 安装命令:
composer require aeyoll/laravel-free-mobile-notification-sender
包简介
Laravel wrapper for FreemobileNotificationSender
关键字:
README 文档
README
This package is a Laravel wrapper for FreemobileNotificationSender (https://github.com/tibounise/FreemobileNotificationSender)
Installation
Begin by installing the package through Composer. Edit your project's composer.json file to require aeyoll/laravel-free-mobile-notification-sender.
"require": { "aeyoll/laravel-free-mobile-notification-sender": "1.*" }
Next, use Composer to update your project from the the Terminal:
php composer.phar update
Once the package has been installed you'll need to add the service provider. Open your app/config/app.php configuration file, and add a new item to the providers array.
'Aeyoll\LaravelFreeMobileNotificationSender\LaravelFreeMobileNotificationSenderServiceProvider'
After doing this you also need to add an alias. In your app/config/app.php file, add this to the aliases array.
'LaravelFreeMobileNotificationSender' => 'Aeyoll\LaravelFreeMobileNotificationSender\LaravelFreeMobileNotificationSender'
Then, you need to publish the package configuration:
php artisan config:publish aeyoll/laravel-free-mobile-notification-sender
Finally, add you userid and apikey from your user profile on mobile.free.fr in the app/config/packages/aeyoll/laravel-free-mobile-notification-sender/config.php file.
Usage
Once you've followed all the steps and completed the installation you can use LaravelFreeMobileNotificationSender.
Sending message
You can simply send a message by doing this:
LaravelFreeMobileNotificationSender::sendMessage('Hello world!');
统计信息
- 总下载量: 30
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-06-14