• Stars
    star
    1,205
  • Rank 37,311 (Top 0.8 %)
  • Language
    PHP
  • License
    MIT License
  • Created almost 12 years ago
  • Updated 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

PHP routing class. Lightweight yet flexible. Supports REST, dynamic and reversed routing.

AltoRouter PHP status Latest Stable Version License

AltoRouter is a small but powerful routing class, heavily inspired by klein.php.

$router = new AltoRouter();

// map homepage
$router->map('GET', '/', function() {
    require __DIR__ . '/views/home.php';
});

// dynamic named route
$router->map('GET|POST', '/users/[i:id]/', function($id) {
  $user = .....
  require __DIR__ . '/views/user/details.php';
}, 'user-details');

// echo URL to user-details page for ID 5
echo $router->generate('user-details', ['id' => 5]); // Output: "/users/5"

Features

  • Can be used with all HTTP Methods
  • Dynamic routing with named route parameters
  • Reversed routing
  • Flexible regular expression routing (inspired by Sinatra)
  • Custom regexes

Getting started

You need PHP >= 7.3 to use AltoRouter, although we highly recommend you use an officially supported PHP version that is not EOL.

Contributors

License

MIT License

Copyright (c) 2012 Danny van Kooten [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

PHP-Router

Simple PHP Router class (supports REST and reverse routing)
PHP
562
star
2

laravel-vat

EU VAT library for Laravel
PHP
121
star
3

vat

Go package for dealing with EU VAT. Does VAT number validation & rates retrieval.
Go
110
star
4

grender

Go package for easily rendering JSON/XML data and HTML templates
Go
96
star
5

plugin-endpoints

Register URL endpoints for which only certain WordPress plugins are enabled.
PHP
84
star
6

populate.js

Populate form fields from a JSON object.
HTML
70
star
7

wp-plugin-profiler

Basic profiler for WordPress plugins. Measures response times with and without a given plugin activated.
PHP
56
star
8

extemplate

Wrapper package for Go's template/html to allow for easy file-based template inheritance.
Go
56
star
9

pepper-lang

The Pepper Programming Language
C
55
star
10

goseo

command line tool to assess readability and SEO score for any HTML document or web page
Go
54
star
11

change-username

A WordPress plugin to change usernames
PHP
52
star
12

advent-of-code

Solutions for Advent of Code puzzles. In C, C++, Python, Rust and Golang. All years.
C
33
star
13

1brc

C99 implementation of the 1 Billion Rows Challenge. 1️⃣🐝🏎️ Runs in ~1.7 seconds on my not-so-fast laptop CPU w/ 16GB RAM.
C
32
star
14

monkey-c-monkey-do

C implementation of the Monkey programming language. Repository moved to Sourcehut.
C
30
star
15

nederlang

Nederlandse programmeertaal 🇳🇱. Geïnterpreteerd en met dynamische types. Met bytecode compiler en virtuele machine, in Rust.
Rust
29
star
16

wp-cdn-loader

Loads WordPress assets from a CDN instead of of local server.
PHP
22
star
17

moneybird-go

A Go client library for Moneybird
Go
18
star
18

gozer

Fast, opinionated and simple static site generator in a single static binary.
Go
16
star
19

unja

Template engine for C, inspired by Jinja and Liquid
C
13
star
20

smtp-mailer

A WordPress plugin that configures `wp_mail` to use SMTP.
PHP
13
star
21

dutchfirecalc.nl

Source code for dutchfirecalc.nl
Jupyter Notebook
10
star
22

respond

Go package for easily replying to HTTP requests with common response types.
Go
10
star
23

www.dvk.co

Site repository for my personal blog
Jupyter Notebook
4
star
24

pull-app

Simple app to track your pull-up volume
JavaScript
4
star
25

dotfiles

My dotfiles
Shell
4
star
26

www.dannyvankooten.com

My personal website, managed by Gozer.
Jupyter Notebook
3
star
27

moneybird-belastingdienst

Makkelijker kunnen zij het niet maken, wij wel.
HTML
2
star
28

top2000spotify

Maakt 'n Spotify playlist van je Top 2000 lijstje (of die van iemand anders).
JavaScript
2
star
29

stand

Stand is a periodic reminder to stand up from your desk
C
2
star
30

argos-crypto-watch

Lightweight C program for monitoring cryptocurrency price and volume changes in Argos.
C
1
star
31

pi-volume-control

Remote volume control for my Pi over HTTP
C
1
star
32

advent-of-code-2021

My solutions for Advent of Code 2021, in Python this time.
Python
1
star
33

advent-of-code-2019

My solutions for Advent of Code 2019, in Rust.
Rust
1
star
34

top-websites-compression

Researching compression applied by the top 10.000 websites
HTML
1
star
35

cnake

Snake in your terminal. In C, no dependencies.
C
1
star