1. Go to this page and download the library: Download oriondevelops/larashared 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/ */
oriondevelops / larashared example snippets
return [
/*
|--------------------------------------------------------------------------
| API Path
|--------------------------------------------------------------------------
|
| This is the URI path where API will be accessible from. Feel free to
| change this path to anything you like.
|
*/
'path' => env('LARASHARED_PATH', 'larashared'),
/*
|--------------------------------------------------------------------------
| Token
|--------------------------------------------------------------------------
|
| This value is the token the API will be accessible with.
|
*/
'token' => env('LARASHARED_TOKEN', '1|gnmyXCnxxN23MAMxx2dCv5BgT4cUOo6ZWSdUPqWT'),
];
$client = new Client();
$request = new Request('POST', 'https://example.com/larashared/optimize');
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
// app/http/middleware/PreventRequestsDuringMaintenance.php
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
* @var array<int, string>
*/
protected $except = [
'larashared/*'
];