Download the PHP package phly/phly-mustache without Composer

On this page you can find all versions of the php package phly/phly-mustache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package phly-mustache

phly-mustache

Build Status

phly-mustache is a Mustache implementation written for PHP. It conforms to the principles of mustache, and allows for extension of the format via pragmas.

In particular, it offers support for template inheritance ala hogan.js, using the {{<parent}} syntax.

For full documentation, please visit ReadTheDocs.

The mailing list is at https://groups.google.com/d/forum/phly_mustache

Installation

Install via composer:

Documentation

Documentation builds are available at:

You can also build documentation in one of two ways:

In each case, you can use PHP's built-in web server to serve the documentation:

and then browse to http://localhost:8080/.

Usage

Basic usage is:

By default, phly-mustache will look under the current directory for templates ending with '.mustache'; you can create a stack of directories using the default resolver:

In the above, it will search first $path2, then $path1 to resolve the template.

The default resolver is composed in an aggregate resolver by default; as such, you can also fetch it by type from the aggregate instead of adding it manually:

Template names may be namespaced, using the syntax namespace::template:

Per the above configuratin, rendering the template contact::index will resolve to $path2. If it cannot, it will drop back to the default namespace (any paths registered without a namespace).

You may also change the suffix it will use to resolve templates:

If your templates use pragmas, you must first add pragma handlers to the Mustache pragma collection. This can be done as follows:

Views can be either associative arrays or objects. For objects, any public member, either a property or a method, may be referenced in your template. As an example:

Any property (or array key) may also refer to a valid callback; in such cases, the return value of the callback will be used.

Refer to the documentation (online / local) for full usage details.

Architecture

Phly\Mustache consists of five primary classes:


All versions of phly-mustache with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5
zendframework/zend-stdlib Version ^2.6 || ^3.0
zendframework/zend-escaper Version ^2.5
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package phly/phly-mustache contains the following files

Loading the files please wait ....