mehrkanal / twig-encore-extension
Twig Extension to use entrypoints.json in Twig Templates
Installs: 3 652
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^8.1
- symfony/twig-bridge: *
- symfony/webpack-encore-bundle: ^v2.0.0
- twig/twig: ^1.42.5 || ^2.12.5 || ^3.0.3
Requires (Dev)
- laminas/laminas-servicemanager: ^3.20.0
- phpstan/phpstan: ^1.4.8
- rector/rector: ^0.17.1
- symplify/easy-coding-standard: ^11.0.8
This package is auto-updated.
Last update: 2025-03-14 10:17:40 UTC
README
To use with twig/twig
and symfony/webpack-encore-bundle
Created for: Laminas/Mezzio
Applications without native Symfony Kernel.
Warning: If Symfony is available, just use the symfony/webpack-encore-bundle
bundle as is.
How to use and configure Encore
composer require symfony/webpack-encore-bundle
- npm i @symfony/webpack-encore
- webpack.config.js
setOutputPath()
should be in the public folder- i.e.
.setOutputPath('public/assets')
- i.e.
setPublicPath()
should be in the folder where the assets are in- i.e.
setPublicPath('/assets')
- i.e.
- Set
['twig']['asset_url']
to the absulute Path, for example in your twig.global.php- Best be set to:
/app/public/assets/
- Note: A Forward Slash is appended after asset_url in case the preceding path does not end on a forward slash
- i.e. asset_path is
/assets
the url will be<document_root>/assets/entrypoints.json
- i.e. asset_path is
- Best be set to:
- Include
Mehrkanal\EncoreTwigExtension\ConfigProvider::class
into your global config - Include
Mehrkanal\EncoreTwigExtension\Extensions\GetCssSourceTwigExtension:class
to your['twig']['extensions']
config. - Include
\Symfony\Bridge\Twig\Extension\AssetExtension::class
to your['twig']['extensions']
config. - Include
Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension:class
to your['twig']['extensions']
config.
use Mehrkanal\EncoreTwigExtension\Extensions\GetCssSourceTwigExtension; use Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension; use Twig\Environment; use Twig\Loader\FilesystemLoader; require_once 'vendor/autoload.php'; $container = require __DIR__ . '/container.php'; $loader = new FilesystemLoader('./templates'); $twig = new Environment($loader, [ 'debug' => true ]); $twig->addExtension($container->get(EntryFilesTwigExtension::class)); $twig->addExtension($container->get(GetCssSourceTwigExtension::class));
What can I do now?
- Use Encore NodeJS Scripts to automatically generate assets
- Use
encore_entry_link_tags(<entrypoint>)
function in Twig to get all required stylesheet link tags - Use
encore_entry_script_tags(<entrypoint>)
function in Twig to get all required script tags - Use
encore_get_css_source(<entrypoint>)
function in Twig to get all CSS Code from this entrypoint
Use in combination with setEntry of Encore Webpack Config.
Stan
docker run -it -v $PWD:/app -v $SSH_AUTH_SOCK:$SSH_AUTH_SOCK -w /app -e SSH_AUTH_SOCK=$SSH_AUTH_SOCK -e SSH_AGENT_PID=$SSH_AGENT_PID registry.mehrkanal.com/docker/phpx/cli:8.1-build bash composer up composer run stan composer run cf
Useful links:
- Original Code
- https://symfony.com/doc/current/frontend/encore/installation.html
- https://gitlab.mehrkanal.com/mehrkanal/skeleton.git