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 b8cd3ca3f8 Merge branch '2.3' into 2.6
* 2.3:
  link to https://symfony.com where possible
  [FrameworkBundle] Added missing log in server:run command
  [HttpFoundation] Allow curly braces in trusted host patterns
  [profiler][security] check authenticated user by tokenClass instead of username.
  Use https://symfony.com/search for searching

Conflicts:
	src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php
	src/Symfony/Component/Form/README.md
	src/Symfony/Component/Intl/README.md
	src/Symfony/Component/Routing/composer.json
	src/Symfony/Component/Security/README.md
	src/Symfony/Component/Translation/README.md
	src/Symfony/Component/Validator/README.md
2015-05-02 17:18:45 +02:00
..
Asset CS fixes 2014-12-04 20:26:11 +00:00
Helper CS fixes 2014-12-04 20:26:11 +00:00
Loader Merge branch '2.3' into 2.5 2014-12-02 21:15:53 +01:00
Storage [Templating] tagged the public @api 2011-07-20 10:27:25 +02:00
Tests [2.6] add @group legacy 2015-03-13 18:37:22 +01:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md [Templating] Update changelog 2014-03-31 15:27:29 +02:00
composer.json Merge branch '2.3' into 2.6 2015-05-02 17:18: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.5 2014-12-02 21:15:53 +01:00
LICENSE Updated copyright to 2015 2015-01-01 13:56:52 +01:00
PhpEngine.php Merge branch '2.3' into 2.5 2014-12-22 17:29:52 +01:00
phpunit.xml.dist [2.3] require-dev PHPUnit bridge 2015-02-24 11:24:26 +01:00
README.md renamed composer.phar to composer to be consistent with the Symfony docs 2015-02-08 08:41:14 +01: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 Docblock fixes 2014-11-30 13:33:44 +00:00
TemplateReferenceInterface.php Merge branch '2.3' into 2.5 2014-12-02 21:15:53 +01: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 install
$ phpunit