PHP Classes

File: config/db.php

Recommend this page to a friend!
  Classes of Nahid Bin Azhar   Framework X Starter   config/db.php   Download  
File: config/db.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Framework X Starter
Implements MVC-based asynchronous applications
Author: By
Last change:
Date: 1 year ago
Size: 270 bytes
 

Contents

Class file image Download
<?php

return [
   
'driver' => env('DB_DRIVER', 'mysql'),
   
'host' => env('DB_HOST', 'localhost'),
   
'port' => env('DB_PORT', 3306),
   
'name' => env('DB_NAME', 'database'),
   
'username' => env('DB_USERNAME', 'root'),
   
'password' => env('DB_PASSWORD', ''),
];