├── LICENSE ├── README.md ├── composer.json ├── psalm.xml └── src ├── Builder.php ├── Compiler.php ├── Compiler ├── Location.php ├── Renderer │ ├── CoreRenderer.php │ ├── DynamicRenderer.php │ ├── HTMLRenderer.php │ └── PHPRenderer.php ├── RendererInterface.php ├── Result.php └── SourceMap.php ├── Directive ├── AbstractDirective.php ├── ConditionalDirective.php ├── DirectiveGroup.php ├── DirectiveRendererInterface.php ├── JsonDirective.php ├── LoopDirective.php └── PHPDirective.php ├── Exception ├── CompilerException.php ├── ContextExceptionInterface.php ├── DirectiveException.php ├── ExtendsException.php ├── ImportException.php ├── LoaderException.php ├── ParserException.php ├── ScannerException.php ├── SyntaxException.php └── Traits │ └── ContextTrait.php ├── Lexer ├── Buffer.php ├── Byte.php ├── Grammar │ ├── Dynamic │ │ ├── BracesGrammar.php │ │ ├── DeclareGrammar.php │ │ └── DirectiveGrammar.php │ ├── DynamicGrammar.php │ ├── HTMLGrammar.php │ ├── InlineGrammar.php │ ├── PHPGrammar.php │ ├── RawGrammar.php │ └── Traits │ │ └── TokenTrait.php ├── GrammarInterface.php ├── Lexer.php ├── StreamInterface.php ├── StringStream.php └── Token.php ├── Loader ├── DirectoryLoader.php ├── LoaderInterface.php ├── Source.php └── StringLoader.php ├── Node ├── Aggregate.php ├── AttributedInterface.php ├── Block.php ├── Dynamic │ ├── Directive.php │ └── Output.php ├── HTML │ ├── Attr.php │ ├── Nil.php │ ├── Tag.php │ └── Verbatim.php ├── Hidden.php ├── Inline.php ├── Mixin.php ├── NodeInterface.php ├── PHP.php ├── Raw.php ├── Template.php └── Traits │ ├── AttributeTrait.php │ └── ContextTrait.php ├── Parser.php ├── Parser ├── Assembler.php ├── Context.php ├── Syntax │ ├── DynamicSyntax.php │ ├── HTMLSyntax.php │ ├── InlineSyntax.php │ ├── PHPSyntax.php │ ├── RawSyntax.php │ └── Traits │ │ └── MixinTrait.php └── SyntaxInterface.php ├── Transform ├── BlockClaims.php ├── BlockFetcher.php ├── Context │ ├── ImportContext.php │ └── StackContext.php ├── Finalizer │ ├── DynamicToPHP.php │ ├── IsolateBlocks.php │ ├── IsolatePHPBlocks.php │ ├── StackCollector.php │ └── TrimRaw.php ├── Import │ ├── Bundle.php │ ├── Directory.php │ ├── Element.php │ ├── ImportInterface.php │ ├── Inline.php │ └── TagHelper.php ├── Merge │ ├── ExtendsParent.php │ ├── Inject │ │ ├── InjectAttributes.php │ │ ├── InjectBlocks.php │ │ ├── InjectPHP.php │ │ └── PHPMixin.php │ └── ResolveImports.php ├── Merger.php ├── QuotedValue.php └── Visitor │ ├── DefineAttributes.php │ ├── DefineBlocks.php │ ├── DefineHidden.php │ └── DefineStacks.php ├── Traverser.php ├── VisitorContext.php ├── VisitorInterface.php └── helpers.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/composer.json -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Builder.php -------------------------------------------------------------------------------- /src/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Compiler.php -------------------------------------------------------------------------------- /src/Compiler/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Compiler/Location.php -------------------------------------------------------------------------------- /src/Compiler/Renderer/CoreRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Compiler/Renderer/CoreRenderer.php -------------------------------------------------------------------------------- /src/Compiler/Renderer/DynamicRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Compiler/Renderer/DynamicRenderer.php -------------------------------------------------------------------------------- /src/Compiler/Renderer/HTMLRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Compiler/Renderer/HTMLRenderer.php -------------------------------------------------------------------------------- /src/Compiler/Renderer/PHPRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Compiler/Renderer/PHPRenderer.php -------------------------------------------------------------------------------- /src/Compiler/RendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Compiler/RendererInterface.php -------------------------------------------------------------------------------- /src/Compiler/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Compiler/Result.php -------------------------------------------------------------------------------- /src/Compiler/SourceMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Compiler/SourceMap.php -------------------------------------------------------------------------------- /src/Directive/AbstractDirective.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Directive/AbstractDirective.php -------------------------------------------------------------------------------- /src/Directive/ConditionalDirective.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Directive/ConditionalDirective.php -------------------------------------------------------------------------------- /src/Directive/DirectiveGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Directive/DirectiveGroup.php -------------------------------------------------------------------------------- /src/Directive/DirectiveRendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Directive/DirectiveRendererInterface.php -------------------------------------------------------------------------------- /src/Directive/JsonDirective.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Directive/JsonDirective.php -------------------------------------------------------------------------------- /src/Directive/LoopDirective.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Directive/LoopDirective.php -------------------------------------------------------------------------------- /src/Directive/PHPDirective.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Directive/PHPDirective.php -------------------------------------------------------------------------------- /src/Exception/CompilerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Exception/CompilerException.php -------------------------------------------------------------------------------- /src/Exception/ContextExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Exception/ContextExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/DirectiveException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Exception/DirectiveException.php -------------------------------------------------------------------------------- /src/Exception/ExtendsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Exception/ExtendsException.php -------------------------------------------------------------------------------- /src/Exception/ImportException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Exception/ImportException.php -------------------------------------------------------------------------------- /src/Exception/LoaderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Exception/LoaderException.php -------------------------------------------------------------------------------- /src/Exception/ParserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Exception/ParserException.php -------------------------------------------------------------------------------- /src/Exception/ScannerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Exception/ScannerException.php -------------------------------------------------------------------------------- /src/Exception/SyntaxException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Exception/SyntaxException.php -------------------------------------------------------------------------------- /src/Exception/Traits/ContextTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Exception/Traits/ContextTrait.php -------------------------------------------------------------------------------- /src/Lexer/Buffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Buffer.php -------------------------------------------------------------------------------- /src/Lexer/Byte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Byte.php -------------------------------------------------------------------------------- /src/Lexer/Grammar/Dynamic/BracesGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Grammar/Dynamic/BracesGrammar.php -------------------------------------------------------------------------------- /src/Lexer/Grammar/Dynamic/DeclareGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Grammar/Dynamic/DeclareGrammar.php -------------------------------------------------------------------------------- /src/Lexer/Grammar/Dynamic/DirectiveGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Grammar/Dynamic/DirectiveGrammar.php -------------------------------------------------------------------------------- /src/Lexer/Grammar/DynamicGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Grammar/DynamicGrammar.php -------------------------------------------------------------------------------- /src/Lexer/Grammar/HTMLGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Grammar/HTMLGrammar.php -------------------------------------------------------------------------------- /src/Lexer/Grammar/InlineGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Grammar/InlineGrammar.php -------------------------------------------------------------------------------- /src/Lexer/Grammar/PHPGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Grammar/PHPGrammar.php -------------------------------------------------------------------------------- /src/Lexer/Grammar/RawGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Grammar/RawGrammar.php -------------------------------------------------------------------------------- /src/Lexer/Grammar/Traits/TokenTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Grammar/Traits/TokenTrait.php -------------------------------------------------------------------------------- /src/Lexer/GrammarInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/GrammarInterface.php -------------------------------------------------------------------------------- /src/Lexer/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Lexer.php -------------------------------------------------------------------------------- /src/Lexer/StreamInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/StreamInterface.php -------------------------------------------------------------------------------- /src/Lexer/StringStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/StringStream.php -------------------------------------------------------------------------------- /src/Lexer/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Lexer/Token.php -------------------------------------------------------------------------------- /src/Loader/DirectoryLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Loader/DirectoryLoader.php -------------------------------------------------------------------------------- /src/Loader/LoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Loader/LoaderInterface.php -------------------------------------------------------------------------------- /src/Loader/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Loader/Source.php -------------------------------------------------------------------------------- /src/Loader/StringLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Loader/StringLoader.php -------------------------------------------------------------------------------- /src/Node/Aggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/Aggregate.php -------------------------------------------------------------------------------- /src/Node/AttributedInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/AttributedInterface.php -------------------------------------------------------------------------------- /src/Node/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/Block.php -------------------------------------------------------------------------------- /src/Node/Dynamic/Directive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/Dynamic/Directive.php -------------------------------------------------------------------------------- /src/Node/Dynamic/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/Dynamic/Output.php -------------------------------------------------------------------------------- /src/Node/HTML/Attr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/HTML/Attr.php -------------------------------------------------------------------------------- /src/Node/HTML/Nil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/HTML/Nil.php -------------------------------------------------------------------------------- /src/Node/HTML/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/HTML/Tag.php -------------------------------------------------------------------------------- /src/Node/HTML/Verbatim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/HTML/Verbatim.php -------------------------------------------------------------------------------- /src/Node/Hidden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/Hidden.php -------------------------------------------------------------------------------- /src/Node/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/Inline.php -------------------------------------------------------------------------------- /src/Node/Mixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/Mixin.php -------------------------------------------------------------------------------- /src/Node/NodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/NodeInterface.php -------------------------------------------------------------------------------- /src/Node/PHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/PHP.php -------------------------------------------------------------------------------- /src/Node/Raw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/Raw.php -------------------------------------------------------------------------------- /src/Node/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/Template.php -------------------------------------------------------------------------------- /src/Node/Traits/AttributeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/Traits/AttributeTrait.php -------------------------------------------------------------------------------- /src/Node/Traits/ContextTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Node/Traits/ContextTrait.php -------------------------------------------------------------------------------- /src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Parser.php -------------------------------------------------------------------------------- /src/Parser/Assembler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Parser/Assembler.php -------------------------------------------------------------------------------- /src/Parser/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Parser/Context.php -------------------------------------------------------------------------------- /src/Parser/Syntax/DynamicSyntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Parser/Syntax/DynamicSyntax.php -------------------------------------------------------------------------------- /src/Parser/Syntax/HTMLSyntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Parser/Syntax/HTMLSyntax.php -------------------------------------------------------------------------------- /src/Parser/Syntax/InlineSyntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Parser/Syntax/InlineSyntax.php -------------------------------------------------------------------------------- /src/Parser/Syntax/PHPSyntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Parser/Syntax/PHPSyntax.php -------------------------------------------------------------------------------- /src/Parser/Syntax/RawSyntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Parser/Syntax/RawSyntax.php -------------------------------------------------------------------------------- /src/Parser/Syntax/Traits/MixinTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Parser/Syntax/Traits/MixinTrait.php -------------------------------------------------------------------------------- /src/Parser/SyntaxInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Parser/SyntaxInterface.php -------------------------------------------------------------------------------- /src/Transform/BlockClaims.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/BlockClaims.php -------------------------------------------------------------------------------- /src/Transform/BlockFetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/BlockFetcher.php -------------------------------------------------------------------------------- /src/Transform/Context/ImportContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Context/ImportContext.php -------------------------------------------------------------------------------- /src/Transform/Context/StackContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Context/StackContext.php -------------------------------------------------------------------------------- /src/Transform/Finalizer/DynamicToPHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Finalizer/DynamicToPHP.php -------------------------------------------------------------------------------- /src/Transform/Finalizer/IsolateBlocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Finalizer/IsolateBlocks.php -------------------------------------------------------------------------------- /src/Transform/Finalizer/IsolatePHPBlocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Finalizer/IsolatePHPBlocks.php -------------------------------------------------------------------------------- /src/Transform/Finalizer/StackCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Finalizer/StackCollector.php -------------------------------------------------------------------------------- /src/Transform/Finalizer/TrimRaw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Finalizer/TrimRaw.php -------------------------------------------------------------------------------- /src/Transform/Import/Bundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Import/Bundle.php -------------------------------------------------------------------------------- /src/Transform/Import/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Import/Directory.php -------------------------------------------------------------------------------- /src/Transform/Import/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Import/Element.php -------------------------------------------------------------------------------- /src/Transform/Import/ImportInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Import/ImportInterface.php -------------------------------------------------------------------------------- /src/Transform/Import/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Import/Inline.php -------------------------------------------------------------------------------- /src/Transform/Import/TagHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Import/TagHelper.php -------------------------------------------------------------------------------- /src/Transform/Merge/ExtendsParent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Merge/ExtendsParent.php -------------------------------------------------------------------------------- /src/Transform/Merge/Inject/InjectAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Merge/Inject/InjectAttributes.php -------------------------------------------------------------------------------- /src/Transform/Merge/Inject/InjectBlocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Merge/Inject/InjectBlocks.php -------------------------------------------------------------------------------- /src/Transform/Merge/Inject/InjectPHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Merge/Inject/InjectPHP.php -------------------------------------------------------------------------------- /src/Transform/Merge/Inject/PHPMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Merge/Inject/PHPMixin.php -------------------------------------------------------------------------------- /src/Transform/Merge/ResolveImports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Merge/ResolveImports.php -------------------------------------------------------------------------------- /src/Transform/Merger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Merger.php -------------------------------------------------------------------------------- /src/Transform/QuotedValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/QuotedValue.php -------------------------------------------------------------------------------- /src/Transform/Visitor/DefineAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Visitor/DefineAttributes.php -------------------------------------------------------------------------------- /src/Transform/Visitor/DefineBlocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Visitor/DefineBlocks.php -------------------------------------------------------------------------------- /src/Transform/Visitor/DefineHidden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Visitor/DefineHidden.php -------------------------------------------------------------------------------- /src/Transform/Visitor/DefineStacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Transform/Visitor/DefineStacks.php -------------------------------------------------------------------------------- /src/Traverser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/Traverser.php -------------------------------------------------------------------------------- /src/VisitorContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/VisitorContext.php -------------------------------------------------------------------------------- /src/VisitorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/VisitorInterface.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/stempler/HEAD/src/helpers.php --------------------------------------------------------------------------------