anomalyce/laravel-entrypoint

自定义您的Laravel入口结构。

v1.0.2 2023-04-19 18:46 UTC

This package is auto-updated.

Last update: 2024-09-19 21:49:39 UTC


README

灵活地构建您的Laravel应用程序结构。

定义入口点

在应用程序的根目录下创建一个 entrypoint.php 文件。

$entrypoint = new Anomalyce\LaravelEntrypoint\Entrypoint(__DIR__);

$entrypoint->loadConfigurationFrom('config');
$entrypoint->loadLocaleFrom('locale');
$entrypoint->loadRoutesFrom('routes');
$entrypoint->loadStorageFrom('storage');
$entrypoint->loadDatabaseFrom('storage/database');
$entrypoint->storeBootstrapCacheIn('storage/bootstrap');
$entrypoint->serveFrom('public');

return $entrypoint;

服务HTTP应用程序

参考 stubs/http.stub

服务控制台应用程序

参考 stubs/console.stub