Download the PHP package peehaa/minifine without Composer
On this page you can find all versions of the php package peehaa/minifine. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package minifine
Minifine
Installation
Simply include this library into your projects using composer:
"require": {
"peehaa/minifine": "^2"
},
Requirements
PHP 7+
Usage
Basic usage
Only a couple of lines are needed to use Minifine. First an instance needs to be created. After that you can start combining and minifying resources:
</head>
results in:
<head>
<meta charset="UTF-8">
<title>Page title</title>
<link rel="stylesheet" href="/css/min.css">
</head>
And:
<?= $minifier->js(['/js/jquery-1.11.2.min.js', '/js/bootstrap.min.js', '/js/custom.js'], '/js/min.js'); ?>
</body>
</html>
results in:
<script src="/js/min.js"></script>
</body>
</html>
For more advanced usages like using different minifiers and/or chaining minifiers please consult the documentation.
Documentation
The documentation (including the contribution guidelines) can be found on the project's website.
License
All versions of minifine with dependencies
PHP Build Version
Package Version
The package peehaa/minifine contains the following files
Loading the files please wait ....