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