Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanpisa committed May 28, 2023
1 parent 3c0a938 commit 383c5a7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/StarterKitServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,19 @@ public function boot()
parent::boot();

$this->publishes([
// Configuration stubs
__DIR__.'/../stubs/duster.stub' => $this->app->basePath('duster.json'),
__DIR__.'/../stubs/phpstan.stub' => $this->app->basePath('phpstan.neon'),
__DIR__.'/../stubs/pint.stub' => $this->app->basePath('pint.json'),
__DIR__.'/../stubs/tlint.stub' => $this->app->basePath('tlint.json'),
__DIR__.'/../stubs/env-testing.stub' => $this->app->basePath('.env.testing'),
// Laravel stubs
__DIR__.'/../stubs/laravel' => $this->app->basePath('stubs'),
// Tests stubs
__DIR__.'/../stubs/tests/pest.stub' => $this->app->basePath('tests/Pest.php'),
__DIR__.'/../stubs/env-testing.stub' => $this->app->basePath('.env.testing'),
__DIR__.'/../stubs/tests/Unit/example-test.stub' => $this->app->basePath('tests/Unit/ExampleTest.php'),
__DIR__.'/../stubs/tests/Feature/architecture-test.stub' => $this->app->basePath('tests/Feature/ArchitectureTest.php'),
__DIR__.'/../stubs/tests/Feature/example-test.stub' => $this->app->basePath('tests/Feature/ExampleTest.php'),
__DIR__.'/../stubs/tests/Unit/example-test.stub' => $this->app->basePath('tests/Unit/ExampleTest.php'),
]);
}
}

0 comments on commit 383c5a7

Please sign in to comment.