Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Update nexmo/laravel versions in the README
Browse files Browse the repository at this point in the history
  • Loading branch information
mheap committed Sep 5, 2017
1 parent 04897bd commit b30241a
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,12 @@ Installation
------------

To install the PHP client library using Composer:

composer require nexmo/laravel

*Important note*: While the client library is in `beta`, requiring `nexmo/client` specifically avoids changing the
`minimum-stability` in your `composer.json`.
composer require nexmo/laravel

Alternatively, add these two lines to your composer require section:

"nexmo/laravel": "0.4.0"
"nexmo/laravel": "^1.0"

### Laravel 5.5+

Expand All @@ -25,23 +22,24 @@ If you're using Laravel 5.5 or above, the package will automatically register th
Add `Nexmo\Laravel\NexmoServiceProvider` to the `providers` array in your `config/app.php`:

Nexmo\Laravel\NexmoServiceProvider::class

If you want to use the facade interface, you can `use` the facade class when needed:

use Nexmo\Laravel\Facade\Nexmo;

Or add an alias in your `config/app.php`:

'Nexmo' => \Nexmo\Laravel\Facade\Nexmo::class

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

You can use `artisan vendor:publish` to copy the distribution configuration file to your app's config directory:

php artisan vendor:publish

Then update `config/nexmo.php` with your credentials. You can also update your `.env` file with the following:

Then update `config/nexmo.php` with your credentials. Alternatively, you can update your `.env` file with the following:

```
NEXMO_KEY = my_api_key
NEXMO_SECRET = my_secret
Expand All @@ -59,15 +57,14 @@ To use the Nexmo Client Library you can use the facade, or request the instance
]);

//or

$nexmo = app('Nexmo\Client');
$nexmo->message()->send([
'to' => '14845551244',
'from' => '16105552344',
'text' => 'Using the instance to send a message.'
]);


For more information on using the Nexmo client library, see the [official client library repository][client-library].

For more information on using the Nexmo client library, see the [official client library repository][client-library].

[client-library]: https://github.com/Nexmo/nexmo-php

0 comments on commit b30241a

Please sign in to comment.