Skip to content

Commit

Permalink
Fix problem with addressing
Browse files Browse the repository at this point in the history
  • Loading branch information
palvaneh committed Mar 2, 2017
1 parent 53828a7 commit 70028d5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This package makes it easy to send [Kavenegar SMS notifications](http://kavenega
You can install the package via composer:

``` bash
composer require kavenegar/laravel
composer require kavenegar/laravel-notification
```

You must install the service provider:
Expand All @@ -23,7 +23,7 @@ You must install the service provider:
// config/app.php
'providers' => [
...
Kavenegar\Laravel\KavenegarServiceProvider::class,
Kavenegar\LaravelNotification\KavenegarServiceProvider::class,
],
```

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kavenegar/laravel",
"description": "laravel 4 and 5 kavenegar integration",
"name": "kavenegar/laravel-notification",
"description": "laravel notificatiion channel for Kavenegar",
"type": "laravel-package",
"keywords": ["laravel","kavenegar","sms","notificatiion","api"],
"license": "MIT",
Expand All @@ -19,7 +19,7 @@
},
"autoload": {
"psr-4": {
"Kavenegar\\Laravel\\": "src/"
"Kavenegar\\LaravelNotification\\": "src/"
}
}
}
2 changes: 1 addition & 1 deletion src/KavenegarChannel.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Kavenegar\Laravel;
namespace Kavenegar\LaravelNotification;

use Illuminate\Notifications\Notification;
use Kavenegar\KavenegarApi;
Expand Down
2 changes: 1 addition & 1 deletion src/KavenegarServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Kavenegar\Laravel;
namespace Kavenegar\LaravelNotification;

use Kavenegar\KavenegarApi;
use Illuminate\Support\ServiceProvider;
Expand Down

0 comments on commit 70028d5

Please sign in to comment.