Download the PHP package reun/twig-utilities without Composer

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

Twig utilities

Supported PHP Version Packagist Version

Various utility filters, functions and Slim integration for Twig.

Installation

Install package using Composer

Usage - Filters and functions

Functions and filters are defined in separate classes and provide either getFilter() or getFunction() static method that can be used to add them to Twig. The class name beginning with a lowercase character becomes the name of the filter/function in Twig. E.g. CopyrightYear becomes copyrightYear().

The recommended way is to create a new Twig extension for your project and add filters and functions in getFilters() and getFunctions().

Some filters and functions have external dependencies. To use them you must add a runtime loader to Twig environment.

Creating new filters and functions

Just extend either Reun\TwigUtilities\Filters\AbstractFilter or Reun\TwigUtilities\Functions\AbstractFunction and implement __invoke(). Options can be specified by overriding getOptions() method.

Available features

Filters

htmlpurify Sanitizes a string with HTML Purifier

Functions

copyrightYear Dynamic year range
formatDateRange Format date and time according to Finnish date conventions
viteAsset Add CSS and JS assets built by Vite to Twig templates

Slim utilities

DynamicTwigPage Dynamic Slim routing to Twig templates with optional data
StaticTwigPage Map route to a specific Twig template with optional data
TwigErrorRenderer Render errors as Twig templates

FAQ and notes

Where is the Markdown filter?

Use Twig's own markdown_to_html filter.

Handling dates and timezones

It is recommended to handle all dates and times as UTC and use that as the PHP timezone setting. Twig's builtin date filter should be used to output dates in a different timezone and can be combined with formatDateRange() etc. See Twig's documentation on how to set the timezone.

Example of formatting event times in different timezone:

Development

Run composer dev to start a test server. The code is located in tests/functional/TwigUtilities.


All versions of twig-utilities with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
twig/twig Version ^3.0
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 reun/twig-utilities contains the following files

Loading the files please wait ....