Created
June 15, 2021 21:31
-
-
Save mykiwi/3e22492d1bfb05c80194e829055d07bc to your computer and use it in GitHub Desktop.
melody gist integration test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
<<<CONFIG | |
packages: | |
- "twig/twig: 3.3.2" | |
CONFIG; | |
echo "----------------------------------\n"; | |
$twig = new Twig\Environment(new Twig\Loader\ArrayLoader(array( | |
'my_template' => 'Hello {{ name }}', | |
))); | |
echo $twig->render('my_template', array('name' => 'greg')); | |
echo "\n----------------------------------\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment