izyanzz/routerphp

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/izyanzz/routerphp

1.0.0 2021-12-08 04:39 UTC

This package is not auto-updated.

Last update: 2025-10-09 22:07:46 UTC


README

indonesiamessage

This is project router using PHP

My Github : IzyanzZ

Tutorial

This is example of using RouterPHP

<?php

require_once __DIR__ "vendor/autoload.php";

use IzyanzZ\Router;

$route = new Router();

// Get Method

$route->get("/", function() {
  echo "Hello, World!";
});

// Post Method

$route->post("/", function() {
  echo "Hello, World!";
});

$route->run();