Mercurial > packages > developer
annotate src/DevelopmentServiceProvider.php @ 1:7f5276e3dc83 default tip
improving tag generation
| author | Luka Sitas <sitas.luka.97@gmail.com> |
|---|---|
| date | Tue, 09 Sep 2025 15:58:49 -0400 |
| parents | 8b04d7d6d91a |
| children |
| rev | line source |
|---|---|
| 0 | 1 <?php |
| 2 | |
| 3 namespace Wizard\Development; | |
| 4 | |
| 5 use Illuminate\Support\ServiceProvider; | |
| 6 | |
| 7 class DevelopmentServiceProvider extends ServiceProvider | |
| 8 { | |
| 9 | |
| 10 public function register(): void | |
| 11 {} | |
| 12 | |
| 13 public function boot(): void | |
| 14 { | |
| 15 $publish_path = __DIR__.'/../publishable'; | |
| 16 | |
| 17 $this->publishes([ | |
| 18 $publish_path.'/vimrc' => base_path('.vimrc'), | |
| 19 $publish_path.'/hgignore' => base_path('.hgignore'), | |
| 20 ]); | |
| 21 | |
| 22 } | |
| 23 } |
