2017 © Pedro Peláez
 

library fastra

A micro-framework for PHP 5.5+

image

atijust/fastra

A micro-framework for PHP 5.5+

  • Sunday, September 20, 2015
  • by atijust
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Fastra

Build Status Scrutinizer Code Quality Code Coverage License, (*1)

A micro-framework for PHP5.5+., (*2)

<?php
require_once __DIR__ . '/vendor/autoload.php';

$app = new Fastra\Application();
$app->group(function ($router) {
    $router->get('/{name}', function ($name) {
        return 'Hello, ' . $name;
    });
})->prefix('/hello')->middleware(AuthMiddleware::class);
$app->run();

The Versions

20/09 2015

dev-master

9999999-dev

A micro-framework for PHP 5.5+

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar atijust

framework