| 1 |
<?php |
| 2 |
$path = 'vendor/matthiasmullie'; |
| 3 |
require_once $path . '/minify/src/Minify.php'; |
| 4 |
require_once $path . '/minify/src/CSS.php'; |
| 5 |
require_once $path . '/minify/src/JS.php'; |
| 6 |
require_once $path . '/minify/src/Exception.php'; |
| 7 |
require_once $path . '/minify/src/Exceptions/BasicException.php'; |
| 8 |
require_once $path . '/minify/src/Exceptions/FileImportException.php'; |
| 9 |
require_once $path . '/minify/src/Exceptions/IOException.php'; |
| 10 |
require_once $path . '/path-converter/src/ConverterInterface.php'; |
| 11 |
require_once $path . '/path-converter/src/Converter.php'; |
| 12 |
|