Skip to content

Commit

Permalink
Merge pull request #7 from Oluwatobi-beebittech/chore/config-publishing
Browse files Browse the repository at this point in the history
fix: removed post install script
  • Loading branch information
Oluwatobi-beebittech authored Aug 2, 2022
2 parents 9332a37 + c1bef70 commit 5334fe0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html coverage",
"post-install-cmd": [
"php artisan vendor:publish --tag=modulr-config"
]
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html coverage"
},
"extra": {
"laravel": {
Expand Down
2 changes: 1 addition & 1 deletion src/ModulrAuthServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ModulrAuthServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
dirname(__DIR__, 1).'/resources/config/modulr.php' => config_path('modulr.php'),
__DIR__.'/../resources/config/modulr.php' => config_path('modulr.php'),
], 'modulr-config');
}

Expand Down

0 comments on commit 5334fe0

Please sign in to comment.