Skip to content

Commit c121c69

Browse files
Merge pull request #159 from Paplow/master
Made the command description more specific
2 parents d358283 + 578753f commit c121c69

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,12 @@ line to the `aliases` array if you want to use a short class name:
4848

4949
In Laravel 4 you can publish the default config file to `app/config/packages/aloha/twilio/config.php` with the artisan command `config:publish aloha/twilio`.
5050

51-
In Laravel 5 you can publish the default config file to `config/twilio.php` with the artisan command `vendor:publish`.
51+
In Laravel 5 you can publish the default config file to `config/twilio.php` with the artisan command `vendor:publish --tag=config`.
52+
Or to ensure you publish only this package's tag use
53+
```shell
54+
php artisan vendor:publish --tag=config --provider=Aloha\Twilio\Support\Laravel\ServiceProvider
55+
```
56+
5257

5358
#### Facade
5459

src/Commands/TwilioCallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TwilioCallCommand extends Command
2020
*
2121
* @var string
2222
*/
23-
protected $description = 'Twilio command to test Twilio API Integration.';
23+
protected $description = 'Twilio command to test Twilio Call API Integration.';
2424

2525
/**
2626
* @var TwilioInterface

src/Commands/TwilioSmsCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TwilioSmsCommand extends Command
2020
*
2121
* @var string
2222
*/
23-
protected $description = 'Twilio command to test Twilio API Integration.';
23+
protected $description = 'Twilio command to test Twilio SMS API Integration.';
2424

2525
/**
2626
* @var \Aloha\Twilio\TwilioInterface

src/Support/Laravel/L5ServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function boot()
1616
{
1717
$this->publishes([
1818
__DIR__.'/../../config/config.php' => config_path('twilio.php'),
19-
]);
19+
], 'config');
2020

2121
$this->mergeConfigFrom(__DIR__.'/../../config/config.php', 'twilio');
2222

0 commit comments

Comments
 (0)