* enhance(view): Add light default styling for Tailwind * chore(view): Clean up unnecessary selectors and spacing * feat(acorn): Update Acorn for Laravel 8.x * chore(acorn): Create default `bootstrap/` project directory for Laravel 8.x * refactor(acorn): Split the Acorn bootloader between `functions.php` and `bootstrap/app.php` to coincide with Laravel * refactor(assets): Lighten the out of the box CSS boilerplate * refactor(assets): Rename `dist/` to `public/` to coincide with Laravel * refactor(assets): Flatten the `assets/` directory into `resources/` to coincide with Laravel * refactor(assets): Rename `scripts/` to `js/` to coincide with Laravel * refactor(assets): Rename `styles/` to `css/` to coincide with Laravel * feat(deps): Update to Laravel Mix ^6.0 * chore(deps): Change Mix-related package.json `scripts` to the new `mix` binary * chore(deps): Remove PurgeCSS in favor of Tailwind's built in purge * chore(deps): Remove deprecated/unnecessary/unused dependencies * chore(deps): Bump minimum PHP version to 7.3 to coincide with Laravel 8.x
63 lines
2.0 KiB
PHP
63 lines
2.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Create The Application
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The first thing we will do is create a new Acorn application instance
|
|
| which serves as the "glue" for all the components of Laravel, and is
|
|
| the IoC container for the system binding all of the various parts.
|
|
|
|
|
*/
|
|
|
|
$app = new Roots\Acorn\Bootloader();
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Register Sage Theme Files
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Out of the box, Sage ships with categorically named theme files
|
|
| containing common functionality and setup to be bootstrapped with your
|
|
| theme. Simply add (or remove) files from the array below to change what
|
|
| is registered alongside Sage.
|
|
|
|
|
*/
|
|
|
|
collect(['helpers', 'setup', 'filters', 'admin'])
|
|
->each(function ($file) {
|
|
if (! locate_template($file = "app/{$file}.php", true, true)) {
|
|
wp_die(
|
|
sprintf(__('Error locating <code>%s</code> for inclusion.', 'sage'), $file)
|
|
);
|
|
}
|
|
});
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Enable Sage Theme Support
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Once our theme files are registered and available for use, we are almost
|
|
| ready to boot our application. But first, we need to signal to Acorn
|
|
| that we will need to initialize the necessary service providers built in
|
|
| for Sage when booting.
|
|
|
|
|
*/
|
|
|
|
add_theme_support('sage');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Return The Application
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This script returns the application instance. The instance is given to
|
|
| the calling script so we can separate the building of the instances
|
|
| from the actual running of the application and sending responses.
|
|
|
|
|
*/
|
|
|
|
return $app;
|