mirror of
https://github.com/mrclay/minify.git
synced 2025-01-16 20:58:13 +01:00
b7cf3808d7
Shows how to install as a composer dependency
12 lines
226 B
PHP
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();
|