PHP Classes

File: scanner_config.php

Recommend this page to a friend!
  Classes of Insolita   Laravel Interactive Jobs   scanner_config.php   Download  
File: scanner_config.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Interactive Jobs
Run background jobs and monitor progress on a page
Author: By
Last change:
Date: 4 years ago
Size: 505 bytes
 

Contents

Class file image Download
<?php
$projectPath
= __DIR__ ;
//Declare directories which contains php code
$scanDirectories = [
   
$projectPath . '/app/',
   
$projectPath . '/Acme/',
   
$projectPath . '/resources/views/',
   
$projectPath.'/routes/'
];
//Optionally declare standalone files
$scanFiles = [
   
$projectPath . '/helpers.php',
];
return [
   
'composerJsonPath' => $projectPath . '/composer.json',
   
'vendorPath' => $projectPath . '/vendor/',
   
'scanDirectories' => $scanDirectories,
   
'scanFiles'=>$scanFiles
];