1. Go to this page and download the library: Download thesmart/super-pack library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
thesmart / super-pack example snippets
// build a large pack for all of your common JavaScript
define('JS_BASE', 'JS_BASE');
$JS_PACK->register(JS_BASE, array(
'https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js',
'/js/ender/node_modules/underscore/underscore.js',
'/js/ender/node_modules/backbone/backbone.js',
'/js/bootstrap/bootstrap-button.js',
'/js/bootstrap/bootstrap-collapse.js',
'/js/bootstrap/bootstrap-modal.js',
'/js/bootstrap/bootstrap-alert.js',
'/js/bootstrap/bootstrap-carousel.js',
'/js/bootstrap/bootstrap-tooltip.js',
));
// create additional packs for supplemental pages
define('JS_PROFILE', 'JS_PROFILE');
$JS_PACK->register(JS_PROFILE, array(
'<script>alert("Hello, dear user.");</script>',
'alert("this also works.");'
));