This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
v0.17
Features
5e4a020 - Adds
Kernel
default
Kernel
args
- We can configure the Kernel args to setup custom directory structure.
$args = [
'web_root' => 'public',
'wp_dir_path' => 'wp',
'asset_dir' => 'assets',
'content_dir' => 'content',
'plugin_dir' => 'plugins',
'mu_plugin_dir' => 'mu-plugins',
'disable_updates' => true,
];
$http_app = new Kernel(__DIR__, $args);
// or
$http_app = new Kernel(__DIR__, ['content_dir' => 'content']);