This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Templating
Fabien Potencier d5bd9bdd68 Merge branch '2.3' into 2.4
* 2.3:
  fixed types in phpdocs

Conflicts:
	src/Symfony/Bridge/Twig/TwigEngine.php
	src/Symfony/Bundle/FrameworkBundle/Templating/Loader/FilesystemLoader.php
	src/Symfony/Component/Filesystem/Tests/FilesystemTest.php
	src/Symfony/Component/Form/Extension/Core/ChoiceList/SimpleChoiceList.php
	src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php
	src/Symfony/Component/HttpKernel/Controller/ControllerResolverInterface.php
	src/Symfony/Component/PropertyAccess/PropertyAccessorBuilder.php
	src/Symfony/Component/Serializer/Encoder/XmlEncoder.php
	src/Symfony/Component/Stopwatch/StopwatchEvent.php
	src/Symfony/Component/Templating/PhpEngine.php
2014-04-16 12:34:31 +02:00
..
Asset Merge branch '2.3' into 2.4 2014-02-11 14:52:09 +01:00
Helper Merge branch '2.3' into 2.4 2014-04-16 12:34:31 +02:00
Loader Merge branch '2.3' into 2.4 2014-04-16 12:34:31 +02:00
Storage [Templating] tagged the public @api 2011-07-20 10:27:25 +02:00
Tests Merge branch '2.3' into 2.4 2014-04-10 15:00:56 +02:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md [Templating] added CHANGELOG 2012-04-26 20:04:28 +02:00
composer.json [Templating] deprecate DebuggerInterface 2013-09-04 21:57:45 +02:00
DebuggerInterface.php [Templating] deprecate DebuggerInterface 2013-09-04 21:57:45 +02:00
DelegatingEngine.php unify constructor initialization style throughout symfony 2013-11-11 19:40:07 +01:00
EngineInterface.php Merge branch '2.3' into 2.4 2014-04-16 12:34:31 +02:00
LICENSE update year on licenses 2014-01-07 08:19:25 -05:00
PhpEngine.php Merge branch '2.3' into 2.4 2014-04-16 12:34:31 +02:00
phpunit.xml.dist made usage of Composer autoloader for subtree-split unit tests 2012-11-09 14:10:06 +01:00
README.md updated the composer install command to reflect changes in Composer 2013-09-18 09:27:26 +02:00
StreamingEngineInterface.php [Templating] fix logic regarding template references and many phpdocs 2013-10-01 14:37:05 +02:00
TemplateNameParser.php Merge branch '2.3' into 2.4 2014-01-01 09:14:50 +01:00
TemplateNameParserInterface.php [Templating] fix logic regarding template references and many phpdocs 2013-10-01 14:37:05 +02:00
TemplateReference.php [Templating] fix logic regarding template references and many phpdocs 2013-10-01 14:37:05 +02:00
TemplateReferenceInterface.php [Templating] fix logic regarding template references and many phpdocs 2013-10-01 14:37:05 +02:00

Templating Component

Templating provides all the tools needed to build any kind of template system.

It provides an infrastructure to load template files and optionally monitor them for changes. It also provides a concrete template engine implementation using PHP with additional tools for escaping and separating templates into blocks and layouts.

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Templating/
$ composer.phar install
$ phpunit