PHP Classes

File: modules/system/tests/fixtures/config/database.php

Recommend this page to a friend!
  Packages of Luke Towers   Winter   modules/system/tests/fixtures/config/database.php   Download  
File: modules/system/tests/fixtures/config/database.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 7 months ago
Size: 439 bytes
 

Contents

Class file image Download
<?php
// Fixture used for `winter:env` unit tests in `tests/unit/system/console/WinterEnvTest.php

return [
   
'default' => 'mysql',
   
'connections' => [
       
'mysql' => [
           
'host' => 'localhost',
           
'port' => 3306,
           
'database' => 'data#base',
           
'username' => 'teal\'c',
           
'password' => 'test"quotes\'test',
        ],
    ],
   
'useConfigForTesting' => false,
];