PHPackages                             ebuildy/ebuildy - 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. [Framework](/categories/framework)
4. /
5. ebuildy/ebuildy

ActiveLibrary[Framework](/categories/framework)

ebuildy/ebuildy
===============

PHP MVC Framework

354PHP

Since May 31Pushed 10y ago1 watchersCompare

[ Source](https://github.com/ebuildy/ebuildy)[ Packagist](https://packagist.org/packages/ebuildy/ebuildy)[ RSS](/packages/ebuildy-ebuildy/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependenciesVersions (1)Used By (0)

eBuildy PHP Framework
=====================

[](#ebuildy-php-framework)

Features
--------

[](#features)

- Simple and complete framework
- [Dependency Injection container](https://github.com/ebuildy/ebuildy/wiki/Container-builder)
- [PHP Annotations parser for Routing, Dependency Injection..](https://github.com/ebuildy/ebuildy/wiki/Annotation-parser)
- [Asset management with assets groups](https://github.com/ebuildy/ebuildy/wiki/Asset-management)
- Templating with native PHP and/or Twig
- Input validators and form generator
- Simple console component
- Translates service
- [Hook service](https://github.com/ebuildy/ebuildy/wiki/Hook-service)
- Usefull helpers set (string, array, cryptage ...)
- No database override, use PDO

Get started
-----------

[](#get-started)

1. Install composer

    `curl -sS https://getcomposer.org/installer | php`
2. Declare composer dependencies (composer.json file)

    ```
    {
    	"require": {
    		"ebuildy/ebuildy": "dev-master",
    		"symfony/yaml" : "dev-master",
    		"symfony/console" : "dev-master",
    		"mikejestes/scheezy": "dev-master",
    		"twig/twig" : "v1.14.1",
    	}
    }

    ```

The bootstrap (index.php)
-------------------------

[](#the-bootstrap-indexphp)

Get ready! Create your index.php file like this:

```
