2017 © Pedro Peláez
 

library hubert

Hubert is a php micro framework with MVC support

image

falkm/hubert

Hubert is a php micro framework with MVC support

  • Friday, March 10, 2017
  • by falkmueller
  • Repository
  • 1 Watchers
  • 1 Stars
  • 81 Installations
  • PHP
  • 7 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 12 Versions
  • 3 % Grown

The README.md

Hubert

Author Source Code Software License Website, (*1)

Hubert is a PHP micro framework that's fast, easy to use and easy to extend.
For more information on how to configure your web server, see the Documentation., (*2)

Installation

Hubert is available via Composer:, (*3)

{
    "require": {
        "falkm/hubert": "1.*"
    }
}

Usage

Create an index.php file with the following contents:, (*4)

<?php

require 'vendor/autoload.php';

$config = array(
    "routes" => array(
        "home" => array(
            "route" => "/", 
            "target" => function($request, $response, $args){
                echo "Hello World";
            }
        )
    )
);

hubert($config);
hubert()->core()->run();

components

License

The MIT License (MIT). Please see License File for more information., (*5)

The Versions

10/03 2017
10/03 2017
22/02 2017
25/11 2016
16/11 2016
14/11 2016
14/11 2016
13/11 2016
11/11 2016
11/11 2016
09/11 2016