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
Nicolas Grekas ecdd681898 Merge branch '2.7' into 2.8
* 2.7:
  Fix undefined array $server
  Fix bug in windows detection
  [ProxyManager] Tmp fix composer reqs issue in ZF
  Add missing exclusions from phpunit.xml.dist
  [Serializer] ObjectNormalizer: don't serialize static methods and props
  Fix the server variables in the router_*.php files
  [Validator] Allow an empty path with a non empty fragment or a query
  The following change adds support for Armenian pluralization.
  [2.3][Process] fix Proccess run with pts enabled

Conflicts:
	composer.json
	src/Symfony/Bridge/ProxyManager/composer.json
	src/Symfony/Component/Security/phpunit.xml.dist
2015-11-18 14:45:00 +01:00
..
Asset Don't trigger deprecation on interfaces 2015-08-30 13:26:29 +02:00
Helper Merge branch '2.3' into 2.7 2015-09-29 14:06:14 +02:00
Loader Merge branch '2.3' into 2.7 2015-09-29 14:06:14 +02:00
Storage remove api tags from code 2015-09-28 19:11:22 +02:00
Tests Merge remote-tracking branch 'origin/2.6' into 2.7 2015-06-25 12:52:11 +00: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.7' into 2.8 2015-10-30 13:15:42 -07:00
DebuggerInterface.php Reverted trigger_error() function calls on deprecated interfaces to prevent breaking third party projects implementing them. 2015-01-05 15:57:16 +01:00
DelegatingEngine.php Merge branch '2.3' into 2.7 2015-09-29 14:06:14 +02:00
EngineInterface.php Merge branch '2.3' into 2.7 2015-09-29 14:06:14 +02:00
LICENSE Updated copyright to 2015 2015-01-01 13:56:52 +01:00
PhpEngine.php Rely on iconv and symfony/polyfill-* 2015-10-28 03:15:07 +01:00
phpunit.xml.dist Add missing exclusions from phpunit.xml.dist 2015-11-18 09:19:46 +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.7 2015-09-29 14:06:14 +02:00
TemplateNameParserInterface.php Merge branch '2.3' into 2.7 2015-09-29 14:06:14 +02:00
TemplateReference.php Merge branch '2.3' into 2.7 2015-09-29 14:06:14 +02:00
TemplateReferenceInterface.php remove api tags that are new in 2.7 2015-09-29 14:08:33 +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 install
$ phpunit