mirror of
https://github.com/laravel/valet.git
synced 2026-02-06 08:40:09 +01:00
11 lines
248 B
PHP
11 lines
248 B
PHP
<?php
|
|
|
|
require_once './cli/Valet/Drivers/ValetDriver.php';
|
|
|
|
foreach (scandir('./cli/Valet/Drivers') as $file) {
|
|
$path = './cli/Valet/Drivers/'.$file;
|
|
if (substr($file, 0, 1) !== '.' && ! is_dir($path)) {
|
|
require_once $path;
|
|
}
|
|
}
|