aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/core/config/testing.php
blob: 4bae194cababa31a28846d654cc8dca3b247e2dc (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
    ]
];