1. Go to this page and download the library: Download sammyjo20/lasso 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/ */
/*
* Lasso will can also trigger Webhooks after its commands have been
* successfully executed. You may specify URLs that Lasso will POST
* to, for each of the commands.
*/
'webhooks' => [
/*
* Specify which webhooks should be triggered after a successful
* "php artisan lasso:publish" command execution.
*/
'publish' => [
//
],
/*
* Specify which webhooks should be triggered after a successful
* "php artisan lasso:pull" command execution.
*/
'pull' => [
//
]
],
/*
* Lasso will automatically version the assets. This is useful if you
* suddenly need to roll-back a deployment and use an older version
* of built files. You can set the maximum amount of files stored here.
*/
'max_bundles' => 5,
/*
* If there any directories/files you would like to Lasso to
* exclude when uploading to the Filesystem, specify them below.
*/
'excluded_files' => [],
'excluded_directories' => [],