├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── php-alpine.Dockerfile ├── php-debian.Dockerfile ├── php-fedora.Dockerfile ├── scripts │ ├── docker.sh │ ├── fold.sh │ ├── linux.sh │ ├── osx.sh │ ├── suite.sh │ └── vars.sh └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── ax_cxx_compile_stdcxx_11.m4 ├── bench.php ├── config.m4 ├── config.w32 ├── examples.md ├── flake.lock ├── flake.nix ├── generate-tests.php ├── mustache.php ├── mustache_ast.cpp ├── mustache_ast.hpp ├── mustache_class_method_lambda.cpp ├── mustache_class_method_lambda.hpp ├── mustache_data.cpp ├── mustache_data.hpp ├── mustache_exceptions.cpp ├── mustache_exceptions.hpp ├── mustache_lambda.cpp ├── mustache_lambda.hpp ├── mustache_lambda_helper.cpp ├── mustache_lambda_helper.hpp ├── mustache_mustache.cpp ├── mustache_mustache.hpp ├── mustache_private.hpp ├── mustache_template.cpp ├── mustache_template.hpp ├── mustache_zend_closure_lambda.cpp ├── mustache_zend_closure_lambda.hpp ├── nix └── derivation.nix ├── package.xml ├── php_mustache.cpp ├── php_mustache.h └── tests ├── MustacheAST____construct.phpt ├── MustacheAST____sleep.phpt ├── MustacheAST____toString.phpt ├── MustacheAST____wakeup-apc.phpt ├── MustacheAST____wakeup.phpt ├── MustacheAST__toArray.phpt ├── MustacheData____construct.phpt ├── MustacheData__toValue.phpt ├── MustacheLambdaHelper__render-closure.phpt ├── MustacheLambdaHelper__render-object.phpt ├── MustacheTemplate____construct.phpt ├── MustacheTemplate____sleep.phpt ├── MustacheTemplate____toString.phpt ├── MustacheTemplate____wakeup-apc.phpt ├── MustacheTemplate____wakeup.phpt ├── Mustache____construct.phpt ├── Mustache__debugDataStructure.phpt ├── Mustache__getEscapeByDefault.phpt ├── Mustache__getStartSequence.phpt ├── Mustache__getStopSequence.phpt ├── Mustache__parse.phpt ├── Mustache__render-accepts-MustacheAST.phpt ├── Mustache__render-accepts-MustacheData.phpt ├── Mustache__render-accepts-MustacheTemplate.phpt ├── Mustache__render-accepts-class-instance.phpt ├── Mustache__render-accepts-object-with-properties.phpt ├── Mustache__render-accepts-object.phpt ├── Mustache__render-does-not-mutate-double.phpt ├── Mustache__render-does-not-mutate-false.phpt ├── Mustache__render-does-not-mutate-int.phpt ├── Mustache__render-does-not-mutate-null.phpt ├── Mustache__render-does-not-mutate-true.phpt ├── Mustache__render-empty-string-empty-data.phpt ├── Mustache__render-empty-string-with-data.phpt ├── Mustache__render-lambda-closure-section.phpt ├── Mustache__render-lambda-closure-variable.phpt ├── Mustache__render-lambda-invokable-array.phpt ├── Mustache__render-lambda-invokable-section.phpt ├── Mustache__render-lambda-invokable-variable.phpt ├── Mustache__render-lambda-object-method-invisible.phpt ├── Mustache__render-lambda-object-method.phpt ├── Mustache__render-partial-accepts-MustacheAST.phpt ├── Mustache__render-partial-accepts-MustacheTemplate.phpt ├── Mustache__render-recursive-array.phpt ├── Mustache__render-recursive-object.phpt ├── Mustache__render-references.phpt ├── Mustache__render-tag.phpt ├── Mustache__setEscapeByDefault.phpt ├── Mustache__setStartSequence.phpt ├── Mustache__setStopSequence.phpt ├── Mustache__tokenize.phpt ├── gh-46.phpt ├── mustache-spec-comments-indented-inline.phpt ├── mustache-spec-comments-indented-multiline-standalone.phpt ├── mustache-spec-comments-indented-standalone.phpt ├── mustache-spec-comments-inline.phpt ├── mustache-spec-comments-multiline-standalone.phpt ├── mustache-spec-comments-multiline.phpt ├── mustache-spec-comments-standalone-line-endings.phpt ├── mustache-spec-comments-standalone-without-newline.phpt ├── mustache-spec-comments-standalone-without-previous-line.phpt ├── mustache-spec-comments-standalone.phpt ├── mustache-spec-comments-surrounding-whitespace.phpt ├── mustache-spec-delimiters-indented-standalone-tag.phpt ├── mustache-spec-delimiters-inverted-sections.phpt ├── mustache-spec-delimiters-outlying-whitespace-inline.phpt ├── mustache-spec-delimiters-pair-behavior.phpt ├── mustache-spec-delimiters-pair-with-padding.phpt ├── mustache-spec-delimiters-partial-inheritence.phpt ├── mustache-spec-delimiters-post-partial-behavior.phpt ├── mustache-spec-delimiters-sections.phpt ├── mustache-spec-delimiters-special-characters.phpt ├── mustache-spec-delimiters-standalone-line-endings.phpt ├── mustache-spec-delimiters-standalone-tag.phpt ├── mustache-spec-delimiters-standalone-without-newline.phpt ├── mustache-spec-delimiters-standalone-without-previous-line.phpt ├── mustache-spec-delimiters-surrounding-whitespace.phpt ├── mustache-spec-interpolation-ampersand-context-miss-interpolation.phpt ├── mustache-spec-interpolation-ampersand-decimal-interpolation.phpt ├── mustache-spec-interpolation-ampersand-integer-interpolation.phpt ├── mustache-spec-interpolation-ampersand-standalone.phpt ├── mustache-spec-interpolation-ampersand-surrounding-whitespace.phpt ├── mustache-spec-interpolation-ampersand-with-padding.phpt ├── mustache-spec-interpolation-ampersand.phpt ├── mustache-spec-interpolation-basic-context-miss-interpolation.phpt ├── mustache-spec-interpolation-basic-decimal-interpolation.phpt ├── mustache-spec-interpolation-basic-integer-interpolation.phpt ├── mustache-spec-interpolation-basic-interpolation.phpt ├── mustache-spec-interpolation-dotted-names-ampersand-interpolation.phpt ├── mustache-spec-interpolation-dotted-names-arbitrary-depth.phpt ├── mustache-spec-interpolation-dotted-names-basic-interpolation.phpt ├── mustache-spec-interpolation-dotted-names-broken-chain-resolution.phpt ├── mustache-spec-interpolation-dotted-names-broken-chains.phpt ├── mustache-spec-interpolation-dotted-names-context-precedence.phpt ├── mustache-spec-interpolation-dotted-names-initial-resolution.phpt ├── mustache-spec-interpolation-dotted-names-triple-mustache-interpolation.phpt ├── mustache-spec-interpolation-html-escaping.phpt ├── mustache-spec-interpolation-interpolation-standalone.phpt ├── mustache-spec-interpolation-interpolation-surrounding-whitespace.phpt ├── mustache-spec-interpolation-interpolation-with-padding.phpt ├── mustache-spec-interpolation-no-interpolation.phpt ├── mustache-spec-interpolation-triple-mustache-context-miss-interpolation.phpt ├── mustache-spec-interpolation-triple-mustache-decimal-interpolation.phpt ├── mustache-spec-interpolation-triple-mustache-integer-interpolation.phpt ├── mustache-spec-interpolation-triple-mustache-standalone.phpt ├── mustache-spec-interpolation-triple-mustache-surrounding-whitespace.phpt ├── mustache-spec-interpolation-triple-mustache-with-padding.phpt ├── mustache-spec-interpolation-triple-mustache.phpt ├── mustache-spec-inverted-context-misses.phpt ├── mustache-spec-inverted-context.phpt ├── mustache-spec-inverted-dotted-names-broken-chains.phpt ├── mustache-spec-inverted-dotted-names-falsey.phpt ├── mustache-spec-inverted-dotted-names-truthy.phpt ├── mustache-spec-inverted-doubled.phpt ├── mustache-spec-inverted-empty-list.phpt ├── mustache-spec-inverted-falsey.phpt ├── mustache-spec-inverted-indented-inline-sections.phpt ├── mustache-spec-inverted-internal-whitespace.phpt ├── mustache-spec-inverted-list.phpt ├── mustache-spec-inverted-nested-falsey.phpt ├── mustache-spec-inverted-nested-truthy.phpt ├── mustache-spec-inverted-padding.phpt ├── mustache-spec-inverted-standalone-indented-lines.phpt ├── mustache-spec-inverted-standalone-line-endings.phpt ├── mustache-spec-inverted-standalone-lines.phpt ├── mustache-spec-inverted-standalone-without-newline.phpt ├── mustache-spec-inverted-standalone-without-previous-line.phpt ├── mustache-spec-inverted-surrounding-whitespace.phpt ├── mustache-spec-inverted-truthy.phpt ├── mustache-spec-partials-basic-behavior.phpt ├── mustache-spec-partials-context.phpt ├── mustache-spec-partials-failed-lookup.phpt ├── mustache-spec-partials-inline-indentation.phpt ├── mustache-spec-partials-padding-whitespace.phpt ├── mustache-spec-partials-recursion.phpt ├── mustache-spec-partials-standalone-indentation.phpt ├── mustache-spec-partials-standalone-line-endings.phpt ├── mustache-spec-partials-standalone-without-newline.phpt ├── mustache-spec-partials-standalone-without-previous-line.phpt ├── mustache-spec-partials-surrounding-whitespace.phpt ├── mustache-spec-sections-context-misses.phpt ├── mustache-spec-sections-context.phpt ├── mustache-spec-sections-deeply-nested-contexts.phpt ├── mustache-spec-sections-dotted-names-broken-chains.phpt ├── mustache-spec-sections-dotted-names-falsey.phpt ├── mustache-spec-sections-dotted-names-truthy.phpt ├── mustache-spec-sections-doubled.phpt ├── mustache-spec-sections-empty-list.phpt ├── mustache-spec-sections-falsey.phpt ├── mustache-spec-sections-implicit-iterator-decimal.phpt ├── mustache-spec-sections-implicit-iterator-integer.phpt ├── mustache-spec-sections-implicit-iterator-string.phpt ├── mustache-spec-sections-indented-inline-sections.phpt ├── mustache-spec-sections-indented-standalone-lines.phpt ├── mustache-spec-sections-internal-whitespace.phpt ├── mustache-spec-sections-list.phpt ├── mustache-spec-sections-nested-falsey.phpt ├── mustache-spec-sections-nested-truthy.phpt ├── mustache-spec-sections-padding.phpt ├── mustache-spec-sections-standalone-line-endings.phpt ├── mustache-spec-sections-standalone-lines.phpt ├── mustache-spec-sections-standalone-without-newline.phpt ├── mustache-spec-sections-standalone-without-previous-line.phpt ├── mustache-spec-sections-surrounding-whitespace.phpt ├── mustache-spec-sections-truthy.phpt ├── mustache-spec-utf8-bird.phpt ├── mustache-spec-utf8-lotus.phpt ├── mustache-spec-utf8-red-bean.phpt ├── mustache-spec-~lambdas-escaping.phpt ├── mustache-spec-~lambdas-interpolation-alternate-delimiters.phpt ├── mustache-spec-~lambdas-interpolation-expansion.phpt ├── mustache-spec-~lambdas-interpolation-multiple-calls.phpt ├── mustache-spec-~lambdas-interpolation.phpt ├── mustache-spec-~lambdas-inverted-section.phpt ├── mustache-spec-~lambdas-section-alternate-delimiters.phpt ├── mustache-spec-~lambdas-section-expansion.phpt ├── mustache-spec-~lambdas-section-multiple-calls.phpt └── mustache-spec-~lambdas-section.phpt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/php-alpine.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.github/php-alpine.Dockerfile -------------------------------------------------------------------------------- /.github/php-debian.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.github/php-debian.Dockerfile -------------------------------------------------------------------------------- /.github/php-fedora.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.github/php-fedora.Dockerfile -------------------------------------------------------------------------------- /.github/scripts/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.github/scripts/docker.sh -------------------------------------------------------------------------------- /.github/scripts/fold.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.github/scripts/fold.sh -------------------------------------------------------------------------------- /.github/scripts/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.github/scripts/linux.sh -------------------------------------------------------------------------------- /.github/scripts/osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.github/scripts/osx.sh -------------------------------------------------------------------------------- /.github/scripts/suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.github/scripts/suite.sh -------------------------------------------------------------------------------- /.github/scripts/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.github/scripts/vars.sh -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/README.md -------------------------------------------------------------------------------- /ax_cxx_compile_stdcxx_11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/ax_cxx_compile_stdcxx_11.m4 -------------------------------------------------------------------------------- /bench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/bench.php -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/config.w32 -------------------------------------------------------------------------------- /examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/examples.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/flake.nix -------------------------------------------------------------------------------- /generate-tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/generate-tests.php -------------------------------------------------------------------------------- /mustache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache.php -------------------------------------------------------------------------------- /mustache_ast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_ast.cpp -------------------------------------------------------------------------------- /mustache_ast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_ast.hpp -------------------------------------------------------------------------------- /mustache_class_method_lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_class_method_lambda.cpp -------------------------------------------------------------------------------- /mustache_class_method_lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_class_method_lambda.hpp -------------------------------------------------------------------------------- /mustache_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_data.cpp -------------------------------------------------------------------------------- /mustache_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_data.hpp -------------------------------------------------------------------------------- /mustache_exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_exceptions.cpp -------------------------------------------------------------------------------- /mustache_exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_exceptions.hpp -------------------------------------------------------------------------------- /mustache_lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_lambda.cpp -------------------------------------------------------------------------------- /mustache_lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_lambda.hpp -------------------------------------------------------------------------------- /mustache_lambda_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_lambda_helper.cpp -------------------------------------------------------------------------------- /mustache_lambda_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_lambda_helper.hpp -------------------------------------------------------------------------------- /mustache_mustache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_mustache.cpp -------------------------------------------------------------------------------- /mustache_mustache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_mustache.hpp -------------------------------------------------------------------------------- /mustache_private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_private.hpp -------------------------------------------------------------------------------- /mustache_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_template.cpp -------------------------------------------------------------------------------- /mustache_template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_template.hpp -------------------------------------------------------------------------------- /mustache_zend_closure_lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_zend_closure_lambda.cpp -------------------------------------------------------------------------------- /mustache_zend_closure_lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/mustache_zend_closure_lambda.hpp -------------------------------------------------------------------------------- /nix/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/nix/derivation.nix -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/package.xml -------------------------------------------------------------------------------- /php_mustache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/php_mustache.cpp -------------------------------------------------------------------------------- /php_mustache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/php_mustache.h -------------------------------------------------------------------------------- /tests/MustacheAST____construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheAST____construct.phpt -------------------------------------------------------------------------------- /tests/MustacheAST____sleep.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheAST____sleep.phpt -------------------------------------------------------------------------------- /tests/MustacheAST____toString.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheAST____toString.phpt -------------------------------------------------------------------------------- /tests/MustacheAST____wakeup-apc.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheAST____wakeup-apc.phpt -------------------------------------------------------------------------------- /tests/MustacheAST____wakeup.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheAST____wakeup.phpt -------------------------------------------------------------------------------- /tests/MustacheAST__toArray.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheAST__toArray.phpt -------------------------------------------------------------------------------- /tests/MustacheData____construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheData____construct.phpt -------------------------------------------------------------------------------- /tests/MustacheData__toValue.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheData__toValue.phpt -------------------------------------------------------------------------------- /tests/MustacheLambdaHelper__render-closure.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheLambdaHelper__render-closure.phpt -------------------------------------------------------------------------------- /tests/MustacheLambdaHelper__render-object.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheLambdaHelper__render-object.phpt -------------------------------------------------------------------------------- /tests/MustacheTemplate____construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheTemplate____construct.phpt -------------------------------------------------------------------------------- /tests/MustacheTemplate____sleep.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheTemplate____sleep.phpt -------------------------------------------------------------------------------- /tests/MustacheTemplate____toString.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheTemplate____toString.phpt -------------------------------------------------------------------------------- /tests/MustacheTemplate____wakeup-apc.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheTemplate____wakeup-apc.phpt -------------------------------------------------------------------------------- /tests/MustacheTemplate____wakeup.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/MustacheTemplate____wakeup.phpt -------------------------------------------------------------------------------- /tests/Mustache____construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache____construct.phpt -------------------------------------------------------------------------------- /tests/Mustache__debugDataStructure.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__debugDataStructure.phpt -------------------------------------------------------------------------------- /tests/Mustache__getEscapeByDefault.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__getEscapeByDefault.phpt -------------------------------------------------------------------------------- /tests/Mustache__getStartSequence.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__getStartSequence.phpt -------------------------------------------------------------------------------- /tests/Mustache__getStopSequence.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__getStopSequence.phpt -------------------------------------------------------------------------------- /tests/Mustache__parse.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__parse.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-accepts-MustacheAST.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-accepts-MustacheAST.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-accepts-MustacheData.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-accepts-MustacheData.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-accepts-MustacheTemplate.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-accepts-MustacheTemplate.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-accepts-class-instance.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-accepts-class-instance.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-accepts-object-with-properties.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-accepts-object-with-properties.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-accepts-object.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-accepts-object.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-does-not-mutate-double.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-does-not-mutate-double.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-does-not-mutate-false.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-does-not-mutate-false.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-does-not-mutate-int.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-does-not-mutate-int.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-does-not-mutate-null.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-does-not-mutate-null.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-does-not-mutate-true.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-does-not-mutate-true.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-empty-string-empty-data.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-empty-string-empty-data.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-empty-string-with-data.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-empty-string-with-data.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-lambda-closure-section.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-lambda-closure-section.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-lambda-closure-variable.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-lambda-closure-variable.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-lambda-invokable-array.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-lambda-invokable-array.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-lambda-invokable-section.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-lambda-invokable-section.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-lambda-invokable-variable.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-lambda-invokable-variable.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-lambda-object-method-invisible.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-lambda-object-method-invisible.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-lambda-object-method.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-lambda-object-method.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-partial-accepts-MustacheAST.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-partial-accepts-MustacheAST.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-partial-accepts-MustacheTemplate.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-partial-accepts-MustacheTemplate.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-recursive-array.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-recursive-array.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-recursive-object.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-recursive-object.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-references.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-references.phpt -------------------------------------------------------------------------------- /tests/Mustache__render-tag.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__render-tag.phpt -------------------------------------------------------------------------------- /tests/Mustache__setEscapeByDefault.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__setEscapeByDefault.phpt -------------------------------------------------------------------------------- /tests/Mustache__setStartSequence.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__setStartSequence.phpt -------------------------------------------------------------------------------- /tests/Mustache__setStopSequence.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__setStopSequence.phpt -------------------------------------------------------------------------------- /tests/Mustache__tokenize.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/Mustache__tokenize.phpt -------------------------------------------------------------------------------- /tests/gh-46.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/gh-46.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-comments-indented-inline.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-comments-indented-inline.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-comments-indented-multiline-standalone.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-comments-indented-multiline-standalone.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-comments-indented-standalone.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-comments-indented-standalone.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-comments-inline.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-comments-inline.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-comments-multiline-standalone.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-comments-multiline-standalone.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-comments-multiline.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-comments-multiline.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-comments-standalone-line-endings.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-comments-standalone-line-endings.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-comments-standalone-without-newline.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-comments-standalone-without-newline.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-comments-standalone-without-previous-line.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-comments-standalone-without-previous-line.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-comments-standalone.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-comments-standalone.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-comments-surrounding-whitespace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-comments-surrounding-whitespace.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-indented-standalone-tag.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-indented-standalone-tag.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-inverted-sections.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-inverted-sections.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-outlying-whitespace-inline.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-outlying-whitespace-inline.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-pair-behavior.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-pair-behavior.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-pair-with-padding.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-pair-with-padding.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-partial-inheritence.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-partial-inheritence.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-post-partial-behavior.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-post-partial-behavior.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-sections.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-sections.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-special-characters.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-special-characters.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-standalone-line-endings.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-standalone-line-endings.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-standalone-tag.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-standalone-tag.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-standalone-without-newline.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-standalone-without-newline.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-standalone-without-previous-line.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-standalone-without-previous-line.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-delimiters-surrounding-whitespace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-delimiters-surrounding-whitespace.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-ampersand-context-miss-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-ampersand-context-miss-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-ampersand-decimal-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-ampersand-decimal-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-ampersand-integer-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-ampersand-integer-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-ampersand-standalone.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-ampersand-standalone.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-ampersand-surrounding-whitespace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-ampersand-surrounding-whitespace.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-ampersand-with-padding.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-ampersand-with-padding.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-ampersand.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-ampersand.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-basic-context-miss-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-basic-context-miss-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-basic-decimal-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-basic-decimal-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-basic-integer-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-basic-integer-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-basic-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-basic-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-dotted-names-ampersand-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-dotted-names-ampersand-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-dotted-names-arbitrary-depth.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-dotted-names-arbitrary-depth.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-dotted-names-basic-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-dotted-names-basic-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-dotted-names-broken-chain-resolution.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-dotted-names-broken-chain-resolution.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-dotted-names-broken-chains.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-dotted-names-broken-chains.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-dotted-names-context-precedence.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-dotted-names-context-precedence.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-dotted-names-initial-resolution.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-dotted-names-initial-resolution.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-dotted-names-triple-mustache-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-dotted-names-triple-mustache-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-html-escaping.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-html-escaping.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-interpolation-standalone.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-interpolation-standalone.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-interpolation-surrounding-whitespace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-interpolation-surrounding-whitespace.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-interpolation-with-padding.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-interpolation-with-padding.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-no-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-no-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-triple-mustache-context-miss-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-triple-mustache-context-miss-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-triple-mustache-decimal-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-triple-mustache-decimal-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-triple-mustache-integer-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-triple-mustache-integer-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-triple-mustache-standalone.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-triple-mustache-standalone.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-triple-mustache-surrounding-whitespace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-triple-mustache-surrounding-whitespace.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-triple-mustache-with-padding.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-triple-mustache-with-padding.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-interpolation-triple-mustache.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-interpolation-triple-mustache.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-context-misses.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-context-misses.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-context.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-context.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-dotted-names-broken-chains.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-dotted-names-broken-chains.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-dotted-names-falsey.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-dotted-names-falsey.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-dotted-names-truthy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-dotted-names-truthy.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-doubled.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-doubled.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-empty-list.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-empty-list.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-falsey.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-falsey.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-indented-inline-sections.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-indented-inline-sections.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-internal-whitespace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-internal-whitespace.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-list.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-list.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-nested-falsey.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-nested-falsey.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-nested-truthy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-nested-truthy.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-padding.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-padding.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-standalone-indented-lines.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-standalone-indented-lines.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-standalone-line-endings.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-standalone-line-endings.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-standalone-lines.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-standalone-lines.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-standalone-without-newline.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-standalone-without-newline.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-standalone-without-previous-line.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-standalone-without-previous-line.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-surrounding-whitespace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-surrounding-whitespace.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-inverted-truthy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-inverted-truthy.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-partials-basic-behavior.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-partials-basic-behavior.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-partials-context.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-partials-context.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-partials-failed-lookup.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-partials-failed-lookup.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-partials-inline-indentation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-partials-inline-indentation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-partials-padding-whitespace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-partials-padding-whitespace.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-partials-recursion.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-partials-recursion.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-partials-standalone-indentation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-partials-standalone-indentation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-partials-standalone-line-endings.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-partials-standalone-line-endings.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-partials-standalone-without-newline.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-partials-standalone-without-newline.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-partials-standalone-without-previous-line.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-partials-standalone-without-previous-line.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-partials-surrounding-whitespace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-partials-surrounding-whitespace.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-context-misses.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-context-misses.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-context.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-context.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-deeply-nested-contexts.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-deeply-nested-contexts.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-dotted-names-broken-chains.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-dotted-names-broken-chains.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-dotted-names-falsey.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-dotted-names-falsey.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-dotted-names-truthy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-dotted-names-truthy.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-doubled.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-doubled.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-empty-list.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-empty-list.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-falsey.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-falsey.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-implicit-iterator-decimal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-implicit-iterator-decimal.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-implicit-iterator-integer.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-implicit-iterator-integer.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-implicit-iterator-string.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-implicit-iterator-string.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-indented-inline-sections.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-indented-inline-sections.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-indented-standalone-lines.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-indented-standalone-lines.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-internal-whitespace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-internal-whitespace.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-list.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-list.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-nested-falsey.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-nested-falsey.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-nested-truthy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-nested-truthy.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-padding.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-padding.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-standalone-line-endings.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-standalone-line-endings.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-standalone-lines.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-standalone-lines.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-standalone-without-newline.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-standalone-without-newline.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-standalone-without-previous-line.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-standalone-without-previous-line.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-surrounding-whitespace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-surrounding-whitespace.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-sections-truthy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-sections-truthy.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-utf8-bird.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-utf8-bird.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-utf8-lotus.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-utf8-lotus.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-utf8-red-bean.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-utf8-red-bean.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-~lambdas-escaping.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-~lambdas-escaping.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-~lambdas-interpolation-alternate-delimiters.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-~lambdas-interpolation-alternate-delimiters.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-~lambdas-interpolation-expansion.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-~lambdas-interpolation-expansion.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-~lambdas-interpolation-multiple-calls.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-~lambdas-interpolation-multiple-calls.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-~lambdas-interpolation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-~lambdas-interpolation.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-~lambdas-inverted-section.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-~lambdas-inverted-section.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-~lambdas-section-alternate-delimiters.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-~lambdas-section-alternate-delimiters.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-~lambdas-section-expansion.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-~lambdas-section-expansion.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-~lambdas-section-multiple-calls.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-~lambdas-section-multiple-calls.phpt -------------------------------------------------------------------------------- /tests/mustache-spec-~lambdas-section.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-mustache/HEAD/tests/mustache-spec-~lambdas-section.phpt --------------------------------------------------------------------------------