Skip to content

Instantly share code, notes, and snippets.

@su-narthur
su-narthur / minify-middleware.php
Created October 18, 2016 18:52 — forked from frugan-dev/middleware.php
Silex minify HTML middleware
<?php
$app->after(function (\Symfony\Component\HttpFoundation\Request $request, \Symfony\Component\HttpFoundation\Response $response) use ($app) {
if ($app['debug']) return;
$search = array(
'#\/\*.+?\*\/#', // /* JS Comments */
'#^\s+\/\/.+#m', // // JS Comments
'/<!--.+?-->/', // <!-- HTML Comments -->
'/\n/',