29 lines
785 B
Markdown
29 lines
785 B
Markdown
# Smarty template engine
|
|
Smarty is a template engine for PHP, facilitating the separation of presentation (HTML/CSS) from application logic.
|
|
|
|

|
|
|
|
## Documentation
|
|
Read the [documentation](https://www.smarty.net/docs/en/) to find out how to use it.
|
|
|
|
## Requirements
|
|
Smarty can be run with PHP 7.1 to PHP 8.0.
|
|
|
|
## Installation
|
|
Smarty versions 3.1.11 or later can be installed with [Composer](https://getcomposer.org/).
|
|
|
|
To get the latest stable version of Smarty use:
|
|
```bash
|
|
composer require smarty/smarty
|
|
````
|
|
|
|
To get the latest, unreleased version, use:
|
|
```bash
|
|
composer require smarty/smarty:dev-master
|
|
````
|
|
|
|
To get the previous stable version of Smarty, Smarty 3, use:
|
|
```bash
|
|
composer require smarty/smarty:^3
|
|
````
|