• v0.3.0 1a42fc6980

    ahokponou released this 2025-07-01 16:47:56 +00:00 | 13 commits to main since this release

    Update existing generatePath() method in the Router class to generate paths with dynamic values. This should allow developers to create URLs with parameters or dynamic segments without manually concatenating strings.

    Example:

    Assuming dynamic segment userID
    $router->generatePath('profile', [ 'userID' => 123 ]);
    Output: '/account/profile/123'

    Full chancelog

    Downloads