Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/promatik/php-js-css-minifier
📉 PHP JS and CSS Minifier uses the APIs provided by Andy Chilton to minify you JS and CSS via PHP curl requests.
https://github.com/promatik/php-js-css-minifier
Last synced: 20 days ago
JSON representation
📉 PHP JS and CSS Minifier uses the APIs provided by Andy Chilton to minify you JS and CSS via PHP curl requests.
- Host: GitHub
- URL: https://github.com/promatik/php-js-css-minifier
- Owner: promatik
- License: mit
- Created: 2013-08-26T17:58:08.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2021-11-01T13:43:37.000Z (about 3 years ago)
- Last Synced: 2024-10-14T10:48:09.685Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 6.84 KB
- Stars: 142
- Watchers: 19
- Forks: 59
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PHP, JS and CSS Minifier
====================## Description
With this plugin, you can minify you js's and css's via PHP providing input and output path's.
This plugin uses an online service provided by Andy Chilton, http://chilts.org/## Download
* [Master branch](https://github.com/promatik/php-js-css-minifier/archive/master.zip)## Setup
* How to setup the plugin:```php
include_once 'minifier.php';$js = [
'js/main.js' => 'js/main.min.js',
// ...
];
$css = [
'css/main.css'=> 'css/main.min.css',
// ...
];minifyJS($js);
minifyCSS($css);
```## Features
* **Instantly compress all your JS's and CSS's**
This allows you to add js and css files to a list, that you can minify at any time.## Requirements
* PHP Webserver## License
Released under the [MIT license](http://www.opensource.org/licenses/MIT).