shapecode / twig-string-loader-bundle
Adds a string loader to twig
Fund package maintenance!
Liberapay
paypal.me/nloges
Installs: 83 552
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.4|^8.0
- shapecode/twig-string-loader: ^1.1
- symfony/config: ^4.4|^5.4|^6.0
- symfony/dependency-injection: ^4.4|^5.4|^6.0
- symfony/framework-bundle: ^4.4|^5.4|^6.0
- symfony/http-kernel: ^4.4|^5.4|^6.0
- symfony/twig-bundle: ^4.4|^5.4|^6.0
- symfony/yaml: ^4.4|^5.4|^6.0
Requires (Dev)
- doctrine/coding-standard: ^9.0
- maglnet/composer-require-checker: ^3.8|^4.0
- phpstan/phpstan: ^1.4
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpstan/phpstan-strict-rules: ^1.1
- phpunit/phpunit: ^9.5
- roave/security-advisories: dev-master
- squizlabs/php_codesniffer: ^3.4
- symfony/var-dumper: ^5.4
README
Install instructions
First you need to add shapecode/twig-string-loader-bundle
to composer.json
:
Do it by execute composer require shapecode/twig-string-loader-bundle
or do it manually
{ "require": { "shapecode/twig-string-loader-bundle": "^2.0" } }
You also have to add ShapecodeTwigStringLoaderBundle
to your AppKernel.php
...
<?php // app/AppKernel.php //... class AppKernel extends Kernel { //... public function registerBundles() { $bundles = array( ... new Shapecode\Bundle\TwigStringLoaderBundle\ShapecodeTwigStringLoaderBundle(), ); //... return $bundles; } //... }
... or bundles.php
when you don't use Symfony Flex.
<?php // bundles.php //... return [ // ..... Shapecode\Bundle\TwigStringLoaderBundle\ShapecodeTwigStringLoaderBundle::class => ['all' => true], ];
Usage
Now you can compile strings with twig:
<?php $this->get('twig')->render('Hello {{ world }}', array( 'world' => 'World' ));