Crow

Yet another template engine for PHP

This project is maintained by Corviz

Crow template engine - options

Here we will see the complete options list

Default path

[Required] Where you will create your templates by default

Crow::setDefaultPath('/path/to/templates/folder');

Components namespace

The namespace of your component classes

Crow::setComponentsNamespace('Project\MyComponents');

Caching

Specify cache directory. Remember to give write permission

Crow::setCacheFolder('/path/to/templates/cache');

Disable minifying

Disable code minifying. Not recommended. Use only if you’re having issues

Crow::disableCodeMinifying();

Templates extension

Don’t like .crow.php extension?

Crow::setExtension($extension);