PHPackages                             joshuachinemezu/smsglobal-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. joshuachinemezu/smsglobal-laravel

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

joshuachinemezu/smsglobal-laravel
=================================

A Laravel packaage for integrating SmsGlobal

v0.1.0(5y ago)39052[1 issues](https://github.com/joshuachinemezu/smsglobal-laravel/issues)MITPHPPHP ^7.3CI failing

Since May 30Pushed 5y ago2 watchersCompare

[ Source](https://github.com/joshuachinemezu/smsglobal-laravel)[ Packagist](https://packagist.org/packages/joshuachinemezu/smsglobal-laravel)[ RSS](/packages/joshuachinemezu-smsglobal-laravel/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (5)Versions (2)Used By (0)

SmsGlobal Laravel Package
=========================

[](#smsglobal-laravel-package)

[![Latest Stable Version](https://camo.githubusercontent.com/d95c03c496994a43b927fda716519ae452895d2e56182ab5e647bc944153b5b2/68747470733a2f2f706f7365722e707567782e6f72672f6a6f736875616368696e656d657a752f736d73676c6f62616c2d6c61726176656c2f762f737461626c652e737667)](https://packagist.org/packages/joshuachinemezu/smsglobal-laravel)[![License](https://camo.githubusercontent.com/c0a26dd40528aff31694cfb3c59c11a3704fe132b5768dc10f0bd8f533921675/68747470733a2f2f706f7365722e707567782e6f72672f6a6f736875616368696e656d657a752f736d73676c6f62616c2d6c61726176656c2f6c6963656e7365)](//packagist.org/packages/joshuachinemezu/smsglobal-laravel)[![Quality Score](https://camo.githubusercontent.com/844337be250178d9423fa9cc00949d6a6527637b03fde950fb7f2de922694c2a/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6a6f736875616368696e656d657a752f736d73676c6f62616c2d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/joshuachinemezu/smsglobal-laravel)[![Total Downloads](https://camo.githubusercontent.com/3e4953b81b745f9127cb02fd52d70102d1f8d3c3550da826da973b6157e6d4a3/68747470733a2f2f706f7365722e707567782e6f72672f6a6f736875616368696e656d657a752f736d73676c6f62616c2d6c61726176656c2f646f776e6c6f616473)](//packagist.org/packages/joshuachinemezu/smsglobal-laravel)

Laravel 5, 6 and 7 Package for SmsGlobal

> A Laravel Package for integrating SmsGlobal seamlessly

Installation
------------

[](#installation)

[PHP](https://php.net) 5.4+ or [HHVM](http://hhvm.com) 3.3+, [Laravel](https://laravel.com/) 5.6+, and [Composer](https://getcomposer.org) are required.

To get the latest version of SmsGlobal Laravel, simply require it

```
composer require joshuachinemezu/smsglobal-laravel
```

Or add the following line to the require block of your `composer.json` file.

```
"joshuachinemezu/smsglobal-laravel": "^0.1.*"

```

You'll then need to run `composer install` or `composer update` to download it and have the autoloader updated.

Once the package is installed, you need to register the service provider. Open up `config/app.php` and add the following to the `providers` key.

```
'providers' => [
    ...
    JoshuaChinemezu\SmsGlobal\SmsGlobalServiceProvider::class,
    ...
]
```

> If you use **Laravel &gt;= 5.5** you can skip this step and go to [**`configuration`**](https://github.com/joshuachinemezu/smsglobal-laravel#configuration)

- `JoshuaChinemezu\SmsGlobal\SmsGlobalServiceProvider::class`

Also, register the Facade like so:

```
'aliases' => [
    ...
    'SmsGlobal' => JoshuaChinemezu\SmsGlobal\Facades\SmsGlobal::class,
    ...
]
```

Configuration
-------------

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="JoshuaChinemezu\SmsGlobal\SmsGlobalServiceProvider"
```

A configuration-file named `smsglobal.php` with the defaults will be placed in your `config` directory:

```
