From 26d5f0c2cba650f8235091404fdbee7bd90d4041 Mon Sep 17 00:00:00 2001 From: lakshmaji Date: Sun, 23 Apr 2017 00:02:50 +0530 Subject: [PATCH] Typo fix --- README.md | 10 +++++----- composer.json | 4 ++-- src/Facade/Plivo.php | 2 +- src/Plivo.php | 2 +- src/PlivoServiceProvider.php | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 15fbb1c..99713f1 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Laravel - plivo -~~[docs on web](http://lakshmajim.github.io/plivo/)~~ +~~[docs on web](http://lakshmaji.github.io/plivo/)~~ >## WHAT IT IS? @@ -8,7 +8,7 @@ - It requires *AuthId* and *AuthToken*, they can be generated by registering @at [Plivo](https://manage.plivo.com/dashboard/) - after registrion click on Dashboard ,there you will be able to see authid and authtoken. - sample snapshot: -![Image of plivo dashboard](https://raw.githubusercontent.com/lakshmajim/images/master/plivo.png) +![Image of plivo dashboard](https://raw.githubusercontent.com/lakshmaji/images/master/plivo.png) >### Version @@ -32,17 +32,17 @@ To install this package you will need: - PHP Install via composer ( you can install this package issuing the following command from the terminal ) - ``` composer require lakshmajim/plivo ``` + ``` composer require lakshmaji/plivo ``` >## Laravel INTEGRATION Once this has finished, you will need to add the service provider to the **providers** array in your app.php config as follows: ```php - Lakshmajim\Plivo\PlivoServiceProvider::class, + Lakshmaji\Plivo\PlivoServiceProvider::class, ``` Next, also in the app.php config file, under the **aliases** array, you are required to add the *Plivo* facade. ```php -'Plivo' => Lakshmajim\Plivo\Facade\Plivo::class, +'Plivo' => Lakshmaji\Plivo\Facade\Plivo::class, ``` Finally, you will want to publish the config using the following command: ```php diff --git a/composer.json b/composer.json index 7326848..830a9dd 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "lakshmajim/plivo", + "name": "lakshmaji/plivo", "license": "MIT", "require": { "plivo/plivo-php": "^1.1" @@ -16,7 +16,7 @@ ], "autoload": { "psr-4": { - "Lakshmajim\\Plivo\\": "src/" + "Lakshmaji\\Plivo\\": "src/" } }, "minimum-stability": "dev" diff --git a/src/Facade/Plivo.php b/src/Facade/Plivo.php index da92c16..b50955a 100644 --- a/src/Facade/Plivo.php +++ b/src/Facade/Plivo.php @@ -1,7 +1,7 @@