1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-19 12:21:20 +02:00

Improves README and add install doc page

Shows how to install as a composer dependency
This commit is contained in:
Steve Clay
2016-04-02 11:46:29 -04:00
parent 5da955966b
commit b7cf3808d7
8 changed files with 98 additions and 46 deletions

11
example.index.php Normal file
View File

@@ -0,0 +1,11 @@
<?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();