1. Go to this page and download the library: Download idleberg/vite-manifest 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/ */
idleberg / vite-manifest example snippets
new Manifest(string $manifestPath, string $baseUri, string $algorithm = "sha256");
use Idleberg\ViteManifest\Manifest;
$baseUrl = "https://idleberg.github.io";
$manifest = "path/to/manifest.json";
$vm = new Manifest($manifest, $baseUrl);