Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshmaji committed Apr 22, 2017
1 parent 7675b6d commit 26d5f0c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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?
Expand All @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "lakshmajim/plivo",
"name": "lakshmaji/plivo",
"license": "MIT",
"require": {
"plivo/plivo-php": "^1.1"
Expand All @@ -16,7 +16,7 @@
],
"autoload": {
"psr-4": {
"Lakshmajim\\Plivo\\": "src/"
"Lakshmaji\\Plivo\\": "src/"
}
},
"minimum-stability": "dev"
Expand Down
2 changes: 1 addition & 1 deletion src/Facade/Plivo.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// Define namespace
namespace Lakshmajim\Plivo\Facade;
namespace Lakshmaji\Plivo\Facade;

// Inlcude namespace
use Illuminate\Support\Facades\Facade;
Expand Down
2 changes: 1 addition & 1 deletion src/Plivo.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// Define namespace
namespace Lakshmajim\Plivo;
namespace Lakshmaji\Plivo;

// Include required namespaces
use Config;
Expand Down
2 changes: 1 addition & 1 deletion src/PlivoServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// Define namespace
namespace Lakshmajim\Plivo;
namespace Lakshmaji\Plivo;

// Include namespaces
use Illuminate\Support\ServiceProvider;
Expand Down

0 comments on commit 26d5f0c

Please sign in to comment.