PHP code example of stephanecoinon / autoversion

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

    

stephanecoinon / autoversion example snippets


// Auto-load composer packages
t
AutoVersion::setDocumentRoot('/var/www/html/public');

'providers' => array(

	// Your current providers are here ...

	'Coinon\AutoVersion\AutoVersionServiceProvider',
),

// $pathToAsset is relative to the document root configured above
AutoVersion::asset($pathToAsset);

<link rel="stylesheet" href="<?=AutoVersion::asset('css/main.css') 

{{ HTML::style(AutoVersion::asset('css/main.css')) }}