1
0
mirror of https://github.com/mrclay/minify.git synced 2025-01-16 20:58:13 +01:00
minify/example.index.php
Steve Clay b7cf3808d7 Improves README and add install doc page
Shows how to install as a composer dependency
2016-04-02 11:46:29 -04:00

12 lines
226 B
PHP

<?php
// template file for creating your own Minify endpoint
// remove this
die('disabled');
// adjust this path as necessary
require __DIR__ . '/../vendor/autoload.php';
$app = new \Minify\App(__DIR__);
$app->runServer();