diff --git a/app/Console/Commands/SecurityCheck.php b/app/Console/Commands/SecurityCheck.php new file mode 100644 index 00000000..a1260e75 --- /dev/null +++ b/app/Console/Commands/SecurityCheck.php @@ -0,0 +1,53 @@ +securityChecker = $securityChecker; + } + + /** + * Execute the console command. + * + * @return mixed + */ + public function handle() + { + return $this->securityChecker->check(base_path() . '/composer.lock'); + } +}