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 !

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/izyanzz/routers

2.0.0 2021-09-03 10:37 UTC

This package is not auto-updated.

Last update: 2025-10-12 05:31:24 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"]];

?>