PHPackages                             dromero86/tero - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. dromero86/tero

ActiveProject[Database &amp; ORM](/categories/database)

dromero86/tero
==============

Tero is a powerfull framework

1.0.2(6y ago)0292MITHTMLPHP &gt;=5.3.0

Since Jun 3Pushed 7mo agoCompare

[ Source](https://github.com/dromero86/tero)[ Packagist](https://packagist.org/packages/dromero86/tero)[ Docs](https://github.com/dromero86/tero)[ RSS](/packages/dromero86-tero/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (1)Versions (5)Used By (0)

 [ ![Tero](https://camo.githubusercontent.com/121678583ba2dcea393b4ca58ed0f80c94af545fb977d04ae61879356650eaca/68747470733a2f2f692e70696e696d672e636f6d2f6f726967696e616c732f37652f39652f36322f37653965363234643462613033633537353561383337363439363461383738642e6a7067) ](https://github.com/dromero86/tero/)

### TERO FRAMEWORK

[](#tero-framework)

---

Tero is a micro web framework for PHP thought for the simple writing and fast resolution of problems.

### About Tero

[](#about-tero)

Tero is written in php 5.3 (which supports the use of anonymous functions with bind), designed to run both that version and server versions 5.6 and 7+

It is optional to use friendly urls but if you want it to work you should use it in apache with mod\_rewrite enabled.

For database is intended to integrate almost any database through PDO, Tero was widely used in MySQL 5.5 / Mariadb / SQLite / Mssql Server 2005+

It is supported on both Windows (wamp) and Linux (lamp) base servers

To install tero just go with your console to the web directory and run composer

### Install

[](#install)

```
composer create-project dromero86/tero project_name

```

Tero, by default, has this folder structure:

```
   MyWebsite/
	|--app/
	|  |--config/
	|  |--library/
	|  |--model/
	|  |--schema/
	|  |--third_party/
	|  |--vendor/
	|
	|--ui/
	|  |--images/
	|  |--themes/
	|     |--mytheme
	|
	|--index.php

```

index.php acts as bootstrapper to execute the core, this also has two tasks, the first is to load all the libraries needed for the project and the second is to load all the model-controllers written by the user and finally execute the one required by the url.

The folder app has the structure of the framework that is not public, therefore it is not accessible via web instead the folder ui has all the resources that will be of web use as images, scripts and css files.

### Hello World with tero is:

[](#hello-world-with-tero-is)

```
//1#
