aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/core/config/testing.php
blob: 4d5bb0407714f3370fcc6c0063b9a278f71bceae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

/**
 * Default testing config file for UserFrosting.  You may override/extend this in your site's configuration file to customize deploy settings.
 *
 */

return [
    'cache' => [
        'illuminate' => [
            'default' => 'array',
        ]
    ],
    'db' => [
        'test_integration' => [
            'driver' => 'sqlite',
            'database' => ':memory:',
        ]
    ],
    'settings' => [
        'displayErrorDetails' => FALSE
    ]
];