2017 © Pedro Peláez
 

library groundworkphp

GroundworkPHP is a PHP 7 micro framework

image

jasonmichels/groundworkphp

GroundworkPHP is a PHP 7 micro framework

  • Friday, January 15, 2016
  • by jasonmichels
  • Repository
  • 1 Watchers
  • 1 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

GroundworkPHP - PHP 7 micro framework

Introduction

GroundworkPHP is a PHP 7 micro framework, (*1)

Example

declare(strict_types=1);
require('../vendor/autoload.php');

use GroundworkPHP\Framework\App;
use GroundworkPHP\Framework\Http\Router;
use Symfony\Component\HttpFoundation\JsonResponse;

$httpMethod = $_SERVER['REQUEST_METHOD'];
$uri = rawurldecode(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));

$app = new App($uri, $httpMethod, new Router());

$app->get('/', function (JsonResponse $response) {
    $response->setData(['data' => ['stuff' => 'awesome']]);
    return $response;
});

$app->run();

Testing

$ phpunit
  • Be Awesome!

Language

  • PHP 7

License

GroundworkPHP is open-sourced software licensed under the MIT license, (*2)

Authors

  • Jason Michels

The Versions

15/01 2016

dev-develop

dev-develop

GroundworkPHP is a PHP 7 micro framework

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jason Michels

framework php php7 groundworkphp

15/01 2016

dev-master

9999999-dev

GroundworkPHP is a PHP 7 micro framework

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jason Michels

framework php php7 groundworkphp

15/01 2016
09/01 2016
08/01 2016

0.1.1

0.1.1.0

Groundwork is a PHP micro framework built on PHP 7

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jason Michels

framework php php7 groundworkphp groundwork

08/01 2016

0.1.0

0.1.0.0

Groundwork is a PHP micro framework built on PHP 7

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jason Michels

framework php php7 groundworkphp groundwork