Download the PHP package lkt/http-router without Composer

On this page you can find all versions of the php package lkt/http-router. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package http-router

About this package

This package is designed to handle HTTP request.

All Response objects used by the Router are described in lkt/http-response.

This package implements nikic/FastRoute so all dynamic params for routes are available.

Installation

Register routes

Register a new route is as easy as instantiate a class. It takes two arguments: the full route and a callable with the Route handler.

Keep in mind a route can't be declared twice.

Routes visibility

All routes have two alternative constructors to control if it's available in a public or private way: onlyLoggedUsers and onlyNotLoggedUsers

Determine if user is logged in

Router includes a method which accepts a callable function to check if user is logged in or not.

This function must return a bool value (true means user is logged).

This way, Router doesn't modify your logic.

Specify a custom login checker for a Route

If you have a context where can exist many ways to get logged in, you can specify a custom login checker:

Restricting even more the access to a route

Every Route can add some access checkers to determine if it's accessible:

The access checker handler will receive an array with all request variables in it and can have some different returns:

Routes handlers

Router expects all routes returns a Response instance (see lkt/http-response).

Each handler will receive as first argument an array with all request variables in it.

An example of YourController.php:

Route resolving

In your index.php, simple add this:

The dispatch method automatically detects if you're sending a JSON, HTML, a file, ... and disposes the right headers.

Also, the dispatch method will end the script execution.

If you have an existing routing engine and want to migrate step by step, you can get the response and works with it. Take a look to lkt/http-response to know what can be done with the Response instance, for example, how to send HTTP headers.

Globally force a response

This feature is useful if you want to return a maintenance status, or block a given IP address, or any situation in which you need to send the same Response no matter which route is accessed.

Token detection

Router can give you the HTTP_TOKEN or a Bearer Token. Both methods return null if the token is undefined.


All versions of http-router with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1.0
nikic/fast-route Version ^1.3
lkt/http-response Version ^2.0
lkt/templates Version ^2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package lkt/http-router contains the following files

Loading the files please wait ....