Skip to content

WebPHPack is a simple php alternative to webpack for auto combining multiple JS and CSS files into single files.

License

Notifications You must be signed in to change notification settings

webdevlabs/webphpack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WebPHPack

WebPHPack is a simple php alternative to webpack for automatic concatenation of multiple JavaScript and CSS files into single files.

This library replaces the style/script tags from the input html source code and returns plain html code ready for output. Loading is done asynchronously for both javascript/css.

Added HTTP2 Push support.

Usage

$webphpack = new WebPHPack($htmlsource);
$webphpack->caching = true;
$webphpack->httpush = true;
$webphpack->combineJS();
$webphpack->combineCSS();
$webphpack->output();

or nested

$webphpack = new WebPHPack($htmlsource);
$newHTMLsource = $webphpack->combineJS()->combineCSS()->output();

About

WebPHPack is a simple php alternative to webpack for auto combining multiple JS and CSS files into single files.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published