This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Minify class file. | |
| * | |
| * This file defines the Minify class, which provides methods to minify CSS and JS content. | |
| * It strips comments, whitespace, and other unnecessary characters to produce smaller, | |
| * more efficient code. | |
| * | |
| * @package Minify | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * ImageOptimizer class. | |
| * | |
| * A class providing image optimization, conversion, resizing, and metadata management capabilities. | |
| * The class uses PHP's built-in GD library and finfo for mime detection. It does not rely on external APIs | |
| * or third-party libraries. | |
| * | |
| * @package ImageOptimizer | |
| * @author Shubham <shub@shubkb.com> |