PHP code example of atelierspierrot / assets-manager
1. Go to this page and download the library: Download atelierspierrot/assets-manager 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/ */
atelierspierrot / assets-manager example snippets
$loader = \AssetsManager\Loader::getInstance(
__DIR__.'/..', // this is the project root directory
'www', // this is your assets root directory
__DIR__ // this is your web document root
);
// to get a package
$package = $loader->getPackage( package name );
// to retrieve a package asset file URL
echo $package->find( file name );
// to get a preset
$preset = $loader->getPreset( preset name );
// to write a preset dependencies
echo $preset->__toHtml();