PHP code example of enlitepro / enlite-assetic

1. Go to this page and download the library: Download enlitepro/enlite-assetic 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/ */

    

enlitepro / enlite-assetic example snippets


    'admin_js' => array(
        'assets' => array(
            // ...
        ),
        'filters' => array('?EnliteUglifyFilter'),
    ),

    'admin_js' => array(
        'assets' => array(
            // ...
        ),
        'filters' => array(
            '?EnliteCoffeeFilter' => ''
        ),
    ),

    'service_manager' => array(
        'aliases' => array(
            'AsseticConfiguration' => 'EnliteAssetic\Configuration'
        ),
    )