twoh/cli-router

This project implements a simple CLI router in PHP. It allows registering and handling routes that can be called via PHP.

1.1.1 2025-03-06 11:51 UTC

This package is auto-updated.

Last update: 2025-03-06 13:00:47 UTC


README

TWOH Logo

Build Status Latest Stable Version License

About CLI-Router

This project implements a simple CLI router in PHP. It allows registering and handling routes that can be called via PHP.

Requirements

  • PHP 8.3 or higher
  • Composer

Installation

composer req twoh/cli-router

Usage

Starting Docker

To start the Docker containers, navigate to the project directory and use the following command:

docker-compose up -d --build

Docker Containers

Docker Container NameFinal Container NamePurpose
phpcli_router_php83_containerPHP 8.3 Environment

Custom Route Example

Here is an example of a custom route:

<?php

declare(strict_types=1);

namespace TWOH\CliRouter\Routes;

class HelloWorldRoute implements RouteInterface
{
    public function __invoke(): void
    {
        echo 'Hello World' . PHP_EOL;
    }
}

Registering Routes

Routes can now be registered in a configuration file. Here is an example of a configuration file cli-routes.php:

use TWOH\CliRouter\Routes\HelloWorldRoute;

return [
    'v1' => [
        'hello' => [
            'world' => new HelloWorldRoute()
        ],
        'hello2' => [
            'world' => new HelloWorldRoute()
        ]
    ],
    'v2' => [
        'hello3' => [
            'world' => new HelloWorldRoute()
        ],
        'hello4' => [
            'world' => new HelloWorldRoute()
        ]
    ],
];

Custom Functions

You can also instantiate the router and register routes using the boot function. You can specify a custom configuration path if needed:

Boot Function
(new \TWOH\CliRouter\Services\RouterService())->boot(__DIR__ . '/../config/cli-routes.php');
Call Route

To call a route, navigate to the project directory and use the following command:

Directly over Method call
use TWOH\CliRouter\Services\RouterService;

$router = new RouterService();
$router->boot(__DIR__ . '/../config/cli-routes.php');

$router->call('v1-hello-world');
php src/cli.php
Directly over Cli call
use TWOH\CliRouter\Services\RouterService;

$router = new RouterService();
$router->boot(__DIR__ . '/../config/cli-routes.php');
$router->call();
php src/cli.php v1-hello-world

Running Tests

To verify that the tests are passing, run the following command:

vendor/bin/phpunit

Logging

This project uses its own LoggerTrait class. You can integrate it into your classes to log messages as follows:

use LoggerTrait;

$this->info('Your message here');
$this->warning('Your message here');
$this->error('Your message here');

The log files will be stored in the logs folder.