uegmobile / uuid-twig-extension-bundle
Symfony twig extension bundle to use uuid function (based on ramsey/uuid bundle)
Package info
github.com/UEGMobile/uuid-twig-extension-bundle
Type:symfony-bundle
pkg:composer/uegmobile/uuid-twig-extension-bundle
v1.0.2
2022-11-16 09:10 UTC
Requires
- php: ^5.4||^7||^8
- ramsey/uuid: ^3.7||~4
- symfony/symfony: ^2.3||~3||~4||~5
This package is not auto-updated.
Last update: 2026-03-19 02:07:54 UTC
README
Symfony twig extension bundle to use uuid function (based on ramsey/uuid bundle)
installation
Through composer in your symfony project:
composer require uegmobile/uuid-twig-extension-bundle
In Symfony <= 3, Then, register the bundle in your AppKernel by adding the following line:
new UEGMobile\UUIDTwigExtensionBundle\UUIDTwigExtensionBundle()
In Symfony >= 4, Then, register the bundle in your bundle.php file by adding the following line:
UEGMobile\UUIDTwigExtensionBundle\UUIDTwigExtensionBundle::class => ['all' => true]
twig extensions
uuid function:
- link function to ramsey/uuid
Examples
Print new UUID in a twig template:
{{ uuid() }}