Download the PHP package snicco/templating without Composer

On this page you can find all versions of the php package snicco/templating. 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 templating

Snicco-Templating: A uniform API around various PHP template engines.

codecov Psalm Type-Coverage Psalm level PhpMetrics - Static Analysis PHP-Versions

The Templating component of the Snicco project provides a simple, object-oriented API around popular PHP template engines.

Table of contents

  1. Installation
  2. Usage
    1. Overview
    2. Creating a view
    3. Directly render a view
    4. Finding the first existing view
    5. Referencing nested directories
    6. Global context / View composers
    7. View factories
    8. The PHPViewFactory
      1. Instantiation
      2. Template inheritance
  3. Contributing
  4. Issues and PR's
  5. Security

Installation

Usage

This package consists of the following main components:

The following directory structure is assumed for the examples in this README:


Creating a view

An instance of View is always created by a call to TemplateEngine::make().

Context can be added to a View instance which will be available to the underlying template once the View is rendered.


Directly rendering a view

If you want to render a template right away you can use the render method on the TemplateEngine.


Finding the first existing view

Both the make and render method of the TemplateEngine accept an array of strings in order to use the first existing view.

If no view can be found, a ViewNotFound exception will be thrown.


Referencing nested directories

Both the make and render method of the TemplateEngine will expand dots to allow directory traversal. This works independently of the concrete ViewFactory that is being used.


Global context / View composers

Before a view is rendered, it's passed to the ViewContextResolver, which is responsible for applying:

  1. global context that should be available in all views
  2. context provided by view composers to some views

A view composer can be a Closure or class that implements ViewComposer.

The ViewContextResolver will be needed to instantiate the concrete implementations of the view factory interface.

Adding global context:

If you pass an array as the second argument to GlobalViewContext::add you can reference nested values in your views like so:

Adding view composers:


Using view factories

All view factories implement the ViewFactory interface.

They are used by the TemplateEngine and contain the underlying logic to render a View instance to its string representation.

It's possible to use multiple view factories together in which case the first factory that can render a given View will be used.

The following view factories are currently available:


The PHPViewFactory

The PHPViewFactory is a bare-bones implementation that is great for small projects where you might only have a handful of views.

Instantiation

The PHPViewFactory takes a ViewContextResolver as the first argument and an array of root template directories as the second argument.

If a view exists in more than one template directory, the first matching one will be used. This is great for allowing certain templates to be overwritten by templates in another (custom) template directory.

Template inheritance

The PHPViewFactory allows for very basic template inheritance.

Assuming that we have the following two templates:

Rendering the post view will yield:

A couple of things to note:

Contributing

This repository is a read-only split of the development repo of the Snicco project.

This is how you can contribute.

Reporting issues and sending pull requests

Please report issues in the Snicco monorepo.

Security

If you discover a security vulnerability, please follow our disclosure procedure.


All versions of templating with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4|^8.0
snicco/str-arr Version ^2.0
webmozart/assert Version ^1.10
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 snicco/templating contains the following files

Loading the files please wait ....