laravel4-playsmsws
Laravel 4 PlaySMS API Integration, (*1)
Installation
Begin by installing this package through Composer. Edit your project's composer.json file to require javierslzr/playsmsws., (*2)
"require": {
"laravel/framework": "4.*",
"javierslzrh/playsmsws": "dev-master"
},
Next, update Composer from the Terminal:, (*3)
composer update
Once composer is finished, you need to add the service provider. Open app/config/app.php, and add a new item to the providers array., (*4)
'Javierslzrh\Playsmsws\PlaysmswsServiceProvider',
Then, add a Facade for more convenient usage. In app/config/app.php add the following line to the aliases array:, (*5)
'Playsms' => 'Playsmsws\Playsmsws\Facades\Playsmsws',
Publish config files from the Terminal, (*6)
php artisan config:publish javierslzrh/playsmsws
Edit config/packages/javierslzrh/playsmsws/config.php with your appropriate PlaySMS settings, (*7)
Usage
Sending a SMS Message, (*8)
Scheduling a SMS Message, (*9)
License
laravel4-playsmsws is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version., (*10)
laravel4-playsmsws is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details., (*11)
You should have received a copy of the GNU General Public License along with laravel4-playsmsws. If not, see http://www.gnu.org/licenses/., (*12)
You may find detail information about GPLv3 here:
http://www.gnu.org/licenses/gpl-3.0.html, (*13)
The GPLv3 full text is included in file LICENSE.md, (*14)