ZF3 module that minifies head links and head scripts using matthiasmullie/minify.
Require this module via composer:
$ composer require halfpastfouram/zend-headminifier
Add the module to modules.config.php
:
'Halfpastfour\HeadMinifier'
The following settings can be changed in your global configuration file:
'minify_head' => [
'script' => [
'enabled' => true,
'directories' => [
'public' => './public',
'cache' => './public/js',
],
],
'link' => [
'enabled' => true,
'directories' => [
'public' => './public',
'cache' => './public/css',
],
],
],