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