Download the PHP package maglnet/smarty-module without Composer
On this page you can find all versions of the php package maglnet/smarty-module. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package smarty-module
Welcome to the SmartyModule for Laminas Framework!
SmartyModule is a module that integrates the Smarty templating engine with Laminas.
Installation
Composer
- Add
"maglnet/smarty-module": "^2.0"
to yourcomposer.json
file and runcomposer update
. - Add
SmartyModule
to yourconfig/application.config.php
file under the modules key.
Configuration
Change you Application config like this:
...
'view_manager' => array(
'default_suffix' => 'tpl', // <-- new option for path stack resolver
'display_not_found_reason' => true,
'display_exceptions' => true,
'doctype' => 'HTML5',
'not_found_template' => 'error/404',
'exception_template' => 'error/index',
'template_map' => array(
'layout/layout' => __DIR__ . '/../view/layout/layout.tpl',
'application/index/index' => __DIR__ . '/../view/application/index/index.tpl',
'error/404' => __DIR__ . '/../view/error/404.tpl',
'error/index' => __DIR__ . '/../view/error/index.tpl',
),
'smarty' => array(
'error_reporting'=> E_PARSE,
'compile_dir' => 'path/to/compile/dir',
'cache_dir' => 'path/to/cache/dir',
//Other Smarty options
),
'template_path_stack' => array(
__DIR__ . '/../view',
),
'plugin_path_stack' => array(
__DIR__ . '/../smarty-plugins',
),
),
...
Aditional info about view manager: Laminas\View.
All versions of smarty-module with dependencies
PHP Build Version
Package Version
Requires
php Version
~8.1.0 || ~8.2.0 || ~8.3.0
laminas/laminas-view Version ^2.11
laminas/laminas-servicemanager Version ^3.5
laminas/laminas-eventmanager Version ^3.2
smarty/smarty Version ~3.1 || ^4.0
laminas/laminas-view Version ^2.11
laminas/laminas-servicemanager Version ^3.5
laminas/laminas-eventmanager Version ^3.2
smarty/smarty Version ~3.1 || ^4.0
The package maglnet/smarty-module contains the following files
Loading the files please wait ....