-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Laravel SMPP | ||
This package is a tiny wrapper for the [onlinecity/php-smpp](https://github.com/onlinecity/php-smpp) library. | ||
It provides a basic SMPP interface and implementation for the Laravel 5.2 framework. | ||
|
||
## Installation | ||
You can install Laravel SMPP using Composer command: | ||
```bash | ||
$ composer require franzose/laravel-smpp | ||
``` | ||
|
||
Then you need to add `LaravelSmpp\LaravelSmppServiceProvider::class` to your providers array in the `config/app.php` | ||
and copy default configuration by invoking `$ php artisan vendor:publish` command. | ||
|
||
## Usage | ||
|
||
To be continued... |