mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-31 04:27:00 +00:00
Add namespaced aliases
This commit is contained in:
@@ -37,6 +37,9 @@
|
||||
"autoload": {
|
||||
"psr-0" : {
|
||||
"Twig_" : "lib/"
|
||||
},
|
||||
"psr-4" : {
|
||||
"Twig\\" : "src/"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
|
||||
@@ -13,8 +13,10 @@
|
||||
* Exposes a template to userland.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* @final
|
||||
*/
|
||||
final class Twig_TemplateWrapper
|
||||
class Twig_TemplateWrapper
|
||||
{
|
||||
private $env;
|
||||
private $template;
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
./CacheInterface.php
|
||||
@@ -0,0 +1 @@
|
||||
./Cache/Filesystem.php
|
||||
@@ -0,0 +1 @@
|
||||
./Cache/Null.php
|
||||
@@ -0,0 +1 @@
|
||||
./Compiler.php
|
||||
@@ -0,0 +1 @@
|
||||
./Environment.php
|
||||
@@ -0,0 +1 @@
|
||||
./Error.php
|
||||
@@ -0,0 +1 @@
|
||||
./Error/Loader.php
|
||||
@@ -0,0 +1 @@
|
||||
./Error/Runtime.php
|
||||
@@ -0,0 +1 @@
|
||||
./Error/Syntax.php
|
||||
@@ -0,0 +1 @@
|
||||
./ExpressionParser.php
|
||||
@@ -0,0 +1 @@
|
||||
./Extension.php
|
||||
@@ -0,0 +1 @@
|
||||
./Extension/Core.php
|
||||
@@ -0,0 +1 @@
|
||||
./Extension/Debug.php
|
||||
@@ -0,0 +1 @@
|
||||
./Extension/Escaper.php
|
||||
@@ -0,0 +1 @@
|
||||
./ExtensionInterface.php
|
||||
@@ -0,0 +1 @@
|
||||
./Extension/Optimizer.php
|
||||
@@ -0,0 +1 @@
|
||||
./Extension/Profiler.php
|
||||
@@ -0,0 +1 @@
|
||||
./Extension/Sandbox.php
|
||||
@@ -0,0 +1 @@
|
||||
./Extension/Staging.php
|
||||
@@ -0,0 +1 @@
|
||||
./Extension/StringLoader.php
|
||||
@@ -0,0 +1 @@
|
||||
./FileExtensionEscapingStrategy.php
|
||||
@@ -0,0 +1 @@
|
||||
./Lexer.php
|
||||
@@ -0,0 +1 @@
|
||||
./Loader/Array.php
|
||||
@@ -0,0 +1 @@
|
||||
./Loader/Chain.php
|
||||
@@ -0,0 +1 @@
|
||||
./Loader/Filesystem.php
|
||||
@@ -0,0 +1 @@
|
||||
./LoaderInterface.php
|
||||
@@ -0,0 +1 @@
|
||||
./Markup.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/AutoEscape.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Block.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/BlockReference.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Body.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/CheckSecurity.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Do.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Embed.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Array.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/AssignName.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Add.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/And.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/BitwiseAnd.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/BitwiseOr.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/BitwiseXor.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Concat.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Div.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/EndsWith.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Equal.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/FloorDiv.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Greater.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/GreaterEqual.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/In.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Less.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/LessEqual.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Matches.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Mod.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Mul.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/NotEqual.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/NotIn.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Or.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Power.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Range.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/StartsWith.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Binary/Sub.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/BlockReference.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Call.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Conditional.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Constant.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Filter/Default.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Filter.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Function.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/GetAttr.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/MethodCall.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Name.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/NullCoalesce.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Parent.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/TempName.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Test/Constant.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Test/Defined.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Test/Divisibleby.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Test/Even.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Test/Null.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Test/Odd.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Test/Sameas.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Test.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Unary.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Unary/Neg.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Unary/Not.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Expression/Unary/Pos.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Flush.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/ForLoop.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/For.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/If.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Import.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Include.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Macro.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node/Module.php
|
||||
@@ -0,0 +1 @@
|
||||
./Node.php
|
||||
@@ -0,0 +1 @@
|
||||
./NodeCaptureInterface.php
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user