| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 21 | 36 | public function boot() |
|
| 22 | { |
||
| 23 | 36 | $this->publishes([ |
|
| 24 | 36 | __DIR__ . '/config/composer-security-check.php' => config_path('composer-security-check.php'), |
|
| 25 | 36 | ], 'config'); |
|
| 26 | |||
| 27 | 36 | $this->loadViewsFrom(__DIR__ . '/views', 'composer-security-check'); |
|
| 28 | |||
| 29 | 36 | $this->publishes([ |
|
| 30 | 36 | __DIR__ . '/views' => base_path('resources/views/vendor/composer-security-check'), |
|
| 31 | ]); |
||
| 32 | 36 | } |
|
| 33 | |||
| 60 |