Giter Club home page Giter Club logo

capsule-router's Introduction

Router

Example of router in PHP 7.4.

Installation

composer require tboileau/router ^1.0

Create your router

<?php

use GuzzleHttp\Psr7\Request;
use TBoileau\Router\RequestContext;
use TBoileau\Router\Router;

$router = new Router(RequestContext::fromRequest(new Request("GET", $path)));

Note: We use guzzlehttp/guzzle for psr-7 implementation.

Add route

<?php

use GuzzleHttp\Psr7\Response;
use Psr\Http\Message\ResponseInterface;
use TBoileau\Router\Route;

$router->add(new Route("home", "/", function (): ResponseInterface {
    return new Response(200, [], "Hello world !");
}));

Or by calling an action of a controller :

<?php

use GuzzleHttp\Psr7\Response;
use Psr\Http\Message\ResponseInterface;
use TBoileau\Router\Route;

class HomeController
{
    public function index(): ResponseInterface
    {
        return new Response(200, [], "Hello world !");
    }
}

$router->add(new Route("home", "/", [HomeController::class, "index"]));

Call function or controller's action from a specific path

<?php

use GuzzleHttp\Psr7\Request;
use GuzzleHttp\Psr7\Response;
use Psr\Http\Message\ResponseInterface;
use TBoileau\Router\RequestContext;
use TBoileau\Router\Route;
use TBoileau\Router\Router;

$router = new Router(RequestContext::fromRequest(new Request("GET", $path)));

$router->add(new Route("home", "/", function (): ResponseInterface {
    return new Response(200, [], "Hello world !");
}));

/** @var ResponseInterface $response */
$response = $router->call();

capsule-router's People

Contributors

tboileau avatar

Watchers

 avatar  avatar

Forkers

sdsnake clems-web

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.