Yet another template engine for PHP
This project is maintained by Corviz
Here we will see the complete options list
[Required] Where you will create your templates by default
Crow::setDefaultPath('/path/to/templates/folder');
The namespace of your component classes
Crow::setComponentsNamespace('Project\MyComponents');
Specify cache directory. Remember to give write permission
Crow::setCacheFolder('/path/to/templates/cache');
Disable code minifying. Not recommended. Use only if you’re having issues
Crow::disableCodeMinifying();
Don’t like .crow.php
extension?
Crow::setExtension($extension);