1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-06 08:40:09 +01:00

load extensions

This commit is contained in:
Taylor Otwell
2016-05-11 20:32:53 -05:00
parent f48b6c7563
commit 14588a40d8
8 changed files with 60 additions and 31 deletions

View File

@@ -11,16 +11,6 @@
}
use Silly\Application;
use Valet\Facades\Brew;
use Valet\Facades\Site;
use Valet\Facades\Valet;
use Valet\Facades\Caddy;
use Valet\Facades\Ngrok;
use Valet\Facades\PhpFpm;
use Valet\Facades\DnsMasq;
use Valet\Facades\Filesystem;
use Valet\Facades\CommandLine;
use Valet\Facades\Configuration;
use Illuminate\Container\Container;
/**
@@ -227,6 +217,13 @@
}
})->descriptions('Determine if this is the latest version of Valet');
/**
* Load all of the Valet extensions.
*/
foreach (Valet::extensions() as $extension) {
include $extension;
}
/**
* Run the application.
*/