This is the application framework configuration file. You should only edit this if you know what you are doing,
and you want to add custom functionality to the core application. This preview has been shorted for brevity.
<?php
/*
|--------------------------------------------------------------------------
| Application Config
|--------------------------------------------------------------------------
|
| This configuration file is for the Hyde Core, which is useful if you
| want to contribute to the source code. However, if you are looking
| to customize your static site, you are probably looking for the
| Hyde config located in `config/hyde.php`!
|
*/
return [
/*
|--------------------------------------------------------------------------
| Application Name (Logo)
|--------------------------------------------------------------------------
*/
'name' => 'HydePHP',
/*
|--------------------------------------------------------------------------
| Application Version
|--------------------------------------------------------------------------
*/
'version' => Hyde\Framework\Hyde::version(),
/*
|--------------------------------------------------------------------------
| Application Environment
|--------------------------------------------------------------------------
*/
'env' => env('ENV', 'production'),
/*
|--------------------------------------------------------------------------
| Autoloaded Service Providers
|--------------------------------------------------------------------------
*/
'providers' => [
App\Providers\AppServiceProvider::class,
Hyde\Framework\HydeServiceProvider::class,
],
/*
|--------------------------------------------------------------------------
| Class Aliases
|--------------------------------------------------------------------------
*/
'aliases' => [
'Hyde' => Hyde\Framework\Hyde::class,
'Asset' => Hyde\Framework\Facades\Asset::class,
'Route' => Hyde\Framework\Facades\Route::class,
'MarkdownPost' => Hyde\Framework\Models\Pages\MarkdownPost::class,
'DocumentationPage' => Hyde\Framework\Models\Pages\DocumentationPage::class,
],
];