Server IP : 66.29.132.124 / Your IP : 3.133.133.251 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/config/ |
Upload File : |
<?php use Illuminate\Validation\Rule; return [ /* |-------------------------------------------------------------------------- | Server Requirements |-------------------------------------------------------------------------- | | This is the default Laravel server requirements, you can add as many | as your application require, we check if the extension is enabled | by looping through the array and run "extension_loaded" on it. | */ 'core' => [ 'minPhpVersion' => '7.3.0' ], 'final' => [ 'key' => true, 'publish' => false ], 'requirements' => [ 'php' => [ 'openssl', 'pdo', 'mbstring', 'tokenizer', 'JSON', 'cURL', 'fileinfo' ], 'apache' => [ 'mod_rewrite', ], ], /* |-------------------------------------------------------------------------- | Folders Permissions |-------------------------------------------------------------------------- | | This is the default Laravel folders permissions, if your application | requires more permissions just add them to the array list bellow. | */ 'permissions' => [ 'public/uploads/' => '775', 'storage/framework/' => '775', 'storage/logs/' => '775', 'bootstrap/cache/' => '775' ], /* |-------------------------------------------------------------------------- | Environment Form Wizard Validation Rules & Messages |-------------------------------------------------------------------------- | | This are the default form vield validation rules. Available Rules: | https://laravel.com/docs/5.4/validation#available-validation-rules | */ 'environment' => [ 'form' => [ 'rules' => [ 'app_name' => 'required|string|max:50', 'environment' => 'required|string|max:50', 'environment_custom' => 'required_if:environment,other|max:50', 'app_debug' => [ 'required', 'in:1,0', ], 'app_log_level' => 'required|string|max:50', 'app_url' => 'required|url', 'database_connection' => 'required|string|max:50', 'database_hostname' => 'required|string|max:50', 'database_port' => 'required|numeric', 'database_name' => 'required|string|max:50', 'database_username' => 'required|string|max:50', 'broadcast_driver' => 'required|string|max:50', 'cache_driver' => 'required|string|max:50', 'session_driver' => 'required|string|max:50', 'queue_driver' => 'required|string|max:50', 'redis_hostname' => 'required|string|max:50', 'redis_password' => 'required|string|max:50', 'redis_port' => 'required|numeric', 'mail_driver' => 'required|string|max:50', 'mail_host' => 'required|string|max:50', 'mail_port' => 'required|string|max:50', 'mail_username' => 'required|string|max:50', 'mail_password' => 'required|string|max:50', 'mail_encryption' => 'required|string|max:50', 'pusher_app_id' => 'max:50', 'pusher_app_key' => 'max:50', 'pusher_app_secret' => 'max:50', ], ], ], /* |-------------------------------------------------------------------------- | Installed Middlware Options |-------------------------------------------------------------------------- | Different available status switch configuration for the | canInstall middleware located in `canInstall.php`. | */ 'installed' => [ 'redirectOptions' => [ 'route' => [ 'name' => 'welcome', 'data' => [], ], 'abort' => [ 'type' => '404', ], 'dump' => [ 'data' => 'Dumping a not found message.', ] ], ], /* |-------------------------------------------------------------------------- | Selected Installed Middlware Option |-------------------------------------------------------------------------- | The selected option fo what happens when an installer intance has been | Default output is to `/resources/views/error/404.blade.php` if none. | The available middleware options include: | route, abort, dump, 404, default, '' | */ 'installedAlreadyAction' => '', /* |-------------------------------------------------------------------------- | Updater Enabled |-------------------------------------------------------------------------- | Can the application run the '/update' route with the migrations. | The default option is set to False if none is present. | Boolean value | */ 'updaterEnabled' => 'true', ];