PHP code example of opctim / vite-bundle-php72
1. Go to this page and download the library: Download opctim/vite-bundle-php72 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/ */
opctim / vite-bundle-php72 example snippets
use Twig\Extension\AbstractExtension;
use Pentatrion\ViteBundle\Asset\EntrypointRenderer;
use Pentatrion\ViteBundle\Asset\EntrypointsLookup;
class YourTwigExtension extends AbstractExtension
{
public function __contruct(
private EntrypointsLookup $entrypointsLookup,
private EntrypointRenderer $entrypointsRenderer
) {
// ...
}
}
twig
<body>
<img src="{{ asset('assets/images/avatar.jpg') }}" />
</body>