Testing stuff
This commit is contained in:
parent
60ad613ca3
commit
d7859e6367
|
@ -10,7 +10,7 @@ In your composer.json, add :
|
||||||
"require": {
|
"require": {
|
||||||
"bluescale/laravel-bmail": "dev-master"
|
"bluescale/laravel-bmail": "dev-master"
|
||||||
}
|
}
|
||||||
````
|
```
|
||||||
|
|
||||||
and
|
and
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ class BMailServiceProvider extends ServiceProvider
|
||||||
public function register()
|
public function register()
|
||||||
{
|
{
|
||||||
$this->mergeConfigFrom(
|
$this->mergeConfigFrom(
|
||||||
__DIR__ . '/../config/services.php',
|
__DIR__ . '/../config/bmail.php',
|
||||||
'services'
|
'services'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,7 @@ class BMailServiceProvider extends ServiceProvider
|
||||||
public function boot()
|
public function boot()
|
||||||
{
|
{
|
||||||
$this->publishes([
|
$this->publishes([
|
||||||
__DIR__ . '/../config/services.php' => config_path('services.php')
|
__DIR__ . '/../config/bmail.php' => config_path('services.php')
|
||||||
], 'config');
|
], 'config');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue