PHP code example of eto-pesets / liqueur-js

1. Go to this page and download the library: Download eto-pesets/liqueur-js 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/ */

    

eto-pesets / liqueur-js example snippets


$this->publishes([
    // modules
    __DIR__.'/../../vendor/eto-pesets/liqueur-js/src' => public_path('assets/js/liqueur-js/src'),
    // browser bundle
    __DIR__.'/../../vendor/eto-pesets/liqueur-js/dist' => public_path('assets/js/liqueur-js/dist'),
], 'liqueur-js');
shell
php artisan vendor:publish --tag=liqueur-js
js

"post-update-cmd": [
    ...,
    "@php artisan vendor:publish --tag=liqueur-js"
],