-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Got verbstream initialized correctly
- Loading branch information
1 parent
ab7ace7
commit 2cd4741
Showing
5 changed files
with
28 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
20 changes: 0 additions & 20 deletions
20
packages/verbstream/src/Providers/SkeletonServiceProvider.php
This file was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
packages/verbstream/src/Providers/VerbstreamServiceProvider.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
namespace ArtisanBuild\Verbstream\Providers; | ||
|
||
use Illuminate\Support\ServiceProvider; | ||
|
||
class VerbstreamServiceProvider extends ServiceProvider | ||
{ | ||
public function register(): void | ||
{ | ||
$this->mergeConfigFrom(__DIR__.'/../../config/verbstream.php', 'verbstream'); | ||
} | ||
|
||
public function boot(): void | ||
{ | ||
$this->publishes([ | ||
__DIR__.'/../../config/verbstream.php' => config_path('verbstream.php'), | ||
], 'verbstream'); | ||
} | ||
} |