izyanzz/routers

There is no license information available for the latest version (2.0.0) of this package.

Note: This Package Only Working for php 7.3 !

2.0.0 2021-09-03 10:37 UTC

This package is not auto-updated.

Last update: 2024-05-11 22:25:41 UTC


README

Follow this command to install this package

composer require izyanzz/routers

Usage

<?php

include "vendor/izyanzz/routers/src/Route/Route.php";
use Axos\Route;

Route::get('/', function() {
    echo "Hello, world";
});

Route::dispatch[$_SERVER["REQUEST_URI"]];

?>