Issues (152)

src/config.php (6 issues)

1
<?php
2
/**
3
 * Minify plugin for Craft CMS
4
 *
5
 * @link      https://nystudio107.com/
0 ignored issues
show
The tag in position 1 should be the @copyright tag
Loading history...
6
 * @copyright Copyright (c) nystudio107
0 ignored issues
show
@copyright tag must contain a year and the name of the copyright holder
Loading history...
7
 * @license   MIT License https://opensource.org/licenses/MIT
8
 */
0 ignored issues
show
PHP version not specified
Loading history...
Missing @category tag in file comment
Loading history...
Missing @package tag in file comment
Loading history...
Missing @author tag in file comment
Loading history...
9
10
/**
11
 * Minify config.php
12
 *
13
 * This file exists only as a template for the Minify settings.
14
 * It does nothing on its own.
15
 *
16
 * Don't edit this file, instead copy it to 'craft/config' as 'minify.php'
17
 * and make your changes there to override default settings.
18
 *
19
 * Once copied to 'craft/config', this file will be multi-environment aware as
20
 * well, so you can have different settings groups for each environment, just as
21
 * you do for 'general.php'
22
 */
23
24
return [
25
26
    // if set to `true` then Minify will not minify anything
27
    "disableTemplateMinifying" => false,
28
29
    // if set to `true` then Minify will not minify anything if `devMode` is enabled
30
    "disableDevModeMinifying" => true,
31
32
];
33