boudra/yapf

There is no license information available for the latest version (dev-master) of this package.

dev-master 2015-07-30 12:15 UTC

This package is not auto-updated.

Last update: 2024-05-29 08:36:55 UTC


README

This is a PHP framework made for educational purposes and it's not recommended to use in production.

Features

  • Dependency Injection integrated with the services container
  • Router, can call Clousures, Controller methods or Resource controllers for easy REST API.
  • Query Builder, simple query builder for retrieving, updating and deleting data, supports multiple joins, and advanced where expressions.
  • Simple image manipulation class

Example

use App\Application;
use App\Core\Router;

$app = new Application();

$app->run(function(Router $router) {

    $router->get('/app/{name}/{age:int}', function($name, $age) {

        return [
            'msg' => "Hello $name, you are $age years old!",
        ];

    });

});

// GET http://localhost/app/John/21
{
    "msg": "Hello John, you are 21 years old!"
}