nodejs-php-fallback / uglify
PHP wrapper to execute uglify-js/clean-css node package or fallback to PHP alternatives
Fund package maintenance!
kylekatarnls
Open Collective
Tidelift
Installs: 119 600
Dependents: 3
Suggesters: 0
Security: 0
Stars: 17
Watchers: 4
Forks: 2
Open Issues: 0
Requires
Requires (Dev)
- codeclimate/php-test-reporter: dev-master
- composer/composer: ^1.2
- phpunit/phpunit: >=4.8 <6.0
This package is auto-updated.
Last update: 2024-10-16 14:57:35 UTC
README
Simple PHP class to minify both your javascript and css the best existing way (uglify-js for JS, clean-css for CSS) and if node is not available, PHP fallbacks are used instead.
Usage
First you need composer if you have not already. Then get the package with composer require nodejs-php-fallback/uglify
then require the composer autload in your PHP file if it's not already:
<?php use NodejsPhpFallback\Uglify; // Require the composer autoload in your PHP file if it's not already. // You do not need to if you use a framework with composer like Symfony, Laravel, etc. require 'vendor/autoload.php'; $uglify = new Uglify(array( 'path/to/my-first-file.js', 'path/to/my-second-file.js', )); $uglify->add('path/to/my-thrid-file.js'); // Output to a file: $uglify->write('path/to/destination.min.js'); // Output to the browser: header('Content-type: text/javascript'); echo $uglify;
Uglify will use js minification by default. If the first source path end with .css or you use ->write()
with a path ending with .css, it will switch to CSS mode. Else you can switch manually or get explicitly JS/CSS minified:
$uglify->jsMode(); echo $uglify; // display minified javascript $uglify->cssMode(); echo $uglify; // display minified css // or echo $uglify->getMinifiedJs(); // display minified javascript echo $uglify->getMinifiedCss(); // display minified css
Security contact information
To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.