PHPackages                             worldvisual/easy - 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. worldvisual/easy

ActiveLibrary

worldvisual/easy
================

Mini framework para facilitar a vida na criação de projetos.

v1.0.7(6y ago)126MITJavaScriptPHP &gt;=7.2

Since Dec 19Pushed 6y ago1 watchersCompare

[ Source](https://github.com/worldvisual/easy)[ Packagist](https://packagist.org/packages/worldvisual/easy)[ RSS](/packages/worldvisual-easy/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (4)Used By (0)

 [![Easy](https://github.com/worldvisual/easy/raw/master/easy.svg)](https://github.com/worldvisual/easy/blob/master/easy.svg)
**EASY**
======================================================================================================================================

[](#-easy)

Mini framework para facilitar a vida na criação de projetos.

 [![Stars](https://camo.githubusercontent.com/2256d514626bce6bf98f4754dde2c0030d36193a3207cd5fda313ae4147f5246/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f776f726c6476697375616c2f656173792e737667)](https://camo.githubusercontent.com/2256d514626bce6bf98f4754dde2c0030d36193a3207cd5fda313ae4147f5246/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f776f726c6476697375616c2f656173792e737667) [![Forks](https://camo.githubusercontent.com/c13a8d0a768f882dc8d20fae11c14345e97c4ae035929de87f574d9965266633/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f776f726c6476697375616c2f656173792e737667)](https://camo.githubusercontent.com/c13a8d0a768f882dc8d20fae11c14345e97c4ae035929de87f574d9965266633/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f776f726c6476697375616c2f656173792e737667) [![Tag](https://camo.githubusercontent.com/fab559ab05a0fc3754fa3d0b88c34604434671218069e0c6f495f17246f10554/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7461672f776f726c6476697375616c2f656173792e737667)](https://camo.githubusercontent.com/fab559ab05a0fc3754fa3d0b88c34604434671218069e0c6f495f17246f10554/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7461672f776f726c6476697375616c2f656173792e737667) [![Issues](https://camo.githubusercontent.com/4b688f2452a1dbaac081b15e99bb09e1b2577964a39bf501821fa745fe5ab332/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f776f726c6476697375616c2f656173792e737667)](https://camo.githubusercontent.com/4b688f2452a1dbaac081b15e99bb09e1b2577964a39bf501821fa745fe5ab332/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f776f726c6476697375616c2f656173792e737667) [![Total Downloads](https://camo.githubusercontent.com/8636f3ecde137907cc9ae1d6c13756a2d6447dd1f11b45a1f6752cc0be9abc8d/68747470733a2f2f706f7365722e707567782e6f72672f776f726c6476697375616c2f656173792f642f746f74616c2e737667)](https://camo.githubusercontent.com/8636f3ecde137907cc9ae1d6c13756a2d6447dd1f11b45a1f6752cc0be9abc8d/68747470733a2f2f706f7365722e707567782e6f72672f776f726c6476697375616c2f656173792f642f746f74616c2e737667) [![Latest Stable Version](https://camo.githubusercontent.com/d6d7c18b341e8c7641312ac7315ec18fea471dd62508db7f67331a41ce04e928/68747470733a2f2f706f7365722e707567782e6f72672f776f726c6476697375616c2f656173792f762f737461626c652e737667)](https://camo.githubusercontent.com/d6d7c18b341e8c7641312ac7315ec18fea471dd62508db7f67331a41ce04e928/68747470733a2f2f706f7365722e707567782e6f72672f776f726c6476697375616c2f656173792f762f737461626c652e737667) [![License](https://camo.githubusercontent.com/5ce5d59d6de72e73188e57f761549dac93e48cc96d00fcc41828fcfa9386a90d/68747470733a2f2f706f7365722e707567782e6f72672f776f726c6476697375616c2f656173792f6c6963656e73652e737667)](https://camo.githubusercontent.com/5ce5d59d6de72e73188e57f761549dac93e48cc96d00fcc41828fcfa9386a90d/68747470733a2f2f706f7365722e707567782e6f72672f776f726c6476697375616c2f656173792f6c6963656e73652e737667)

INSTALL
-------

[](#install)

##### Projeto

[](#projeto)

```
$ composer create-project --prefer-dist worldvisual/easy SEU_PROJETO
$ cd SEU_PROJETO
$ composer dump-autoload -o

```

### GET STARTED

[](#get-started)

```
// DIR -> (app/config.inc.php)

/**
 * DATABASE CONNECTION
 */

 'hostname' => 'localhost',
 'username' => 'root',
 'password' => '',
 'database' => 'easy',

 /**
 * SITENAME
 * -- host:  yoursite.com.br or yoursite.com.br/sub
 * -- local: localhost or localhost/sub
 */

 'sitename' => 'localhost',

 /**
 * PROTOCOL
 * http://
 * https://
 */

 'protocol' => 'http://',

 /**
 * THEME AND RESOURCES
 */

 'themedir' => 'default',
 'template' => 'default',
 'resource' => 'default'
```

ROUTES
------

[](#routes)

Você pode definir suas rotas em (routes/web.php) para mais informações você pode consultar em **[NEZAMY](https://nezamy.com/route "nezamy")** - **[GIT](https://github.com/nezamy/route "GIT")**

VIEWS
-----

[](#views)

use em( public/themes/*SEU\_TEMA*) | definido em config.inc

LAYOUT
------

[](#layout)

use em (public/\_\_templates/*SEU\_TEMPLATE*) | definido em config.inc

USING
-----

[](#using)

##### - Listar todos os registro de uma determinada tabela

[](#--listar-todos-os-registro-de-uma-determinada-tabela)

```
$query->selectAll('table');
```

---

##### - Listar registro com alguma condição

[](#--listar-registro-com-alguma-condição)

```
$query->selectWhere('table', 'id=1');
```

---

##### - O retorno da lista não se repete (DISTINCT)

[](#--o-retorno-da-lista-não-se-repete-distinct)

```
$query->selectWhere('column1, column2', 'table', 'id=1');
```

---

##### - Retorno por id

[](#--retorno-por-id)

```
$query->selectById('table', '1');
```

---

##### - Inserir Informações No Banco

[](#--inserir-informações-no-banco)

```
$query->Query('table', $array, 'insert');
```

---

##### - Atualizar informações do banco

[](#--atualizar-informações-do-banco)

```
$query->Query('table', $array, 'update', 'id=1');
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

2341d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b7cc4ca98f4a6e17bf7f6db444e83f03cddc9b64fe00041a1bef9abd4e4249ba?d=identicon)[siglanero](/maintainers/siglanero)

---

Top Contributors

[![spalmeida](https://avatars.githubusercontent.com/u/18102736?v=4)](https://github.com/spalmeida "spalmeida (64 commits)")

---

Tags

miniframeworkphpphp-frameworkphp7

### Embed Badge

![Health badge](/badges/worldvisual-easy/health.svg)

```
[![Health](https://phpackages.com/badges/worldvisual-easy/health.svg)](https://phpackages.com/packages/worldvisual-easy)
```

###  Alternatives

[elgg/elgg

Elgg is an award-winning social networking engine, delivering the building blocks that enable businesses, schools, universities and associations to create their own fully-featured social networks and applications.

1.7k15.7k5](/packages/elgg-elgg)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

44643.1k1](/packages/pressbooks-pressbooks)[drevops/git-artifact

Package artifact from your codebase in CI and push it to a separate git repo.

2133.2k](/packages/drevops-git-artifact)[doppar/framework

The Doppar Framework

366.7k8](/packages/doppar-framework)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
