simply / router
Segment based router for routing web requests
Requires
- php: ^7.2
Requires (Dev)
- phpunit/phpunit: ^7.4
- riimu/php-cs-fixer-config: ^0.1.1
- riimu/sami-config: ^0.1.0
This package is auto-updated.
Last update: 2024-10-23 03:33:01 UTC
README
This package provides generic router that may be used with PHP frameworks. The goal of this router is to optimize towards fast startup taking advantage of array op-cache optimizations in PHP 7.
This router uses segment based matching which optimizes usage of static segments in the paths to minimize the need to generate large and slow regular expressions. In some uses cases, this may provide faster routing than simply using a few large regular expression. However, the aim of this package is not to compete in efficiency against more popular routers.
NOTE: This package is part of a framework that is still highly experimental in nature. Stable api or proper documentation are not to be expected until the framework has been tested in practice.
API documentation is available at: https://docs.riimu.net/simply/router/
Credits
This library is Copyright (c) 2018-2019 Riikka Kalliomäki.
See LICENSE for license and copying information.