noonat / pipes
There is no license information available for the latest version (dev-master) of this package.
dev-master
2012-03-13 17:16 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2026-03-08 10:00:31 UTC
README
_ _ _ _ _
/\ \ /\ \ /\ \ /\ \ / /\
/ \ \ \ \ \ / \ \ / \ \ / / \
/ /\ \ \ /\ \_\ / /\ \ \ / /\ \ \ / / /\ \__
/ / /\ \_\ / /\/_/ / / /\ \_\ / / /\ \_\ / / /\ \___\
/ / /_/ / // / / / / /_/ / // /_/_ \/_/ \ \ \ \/___/
/ / /__\/ // / / / / /__\/ // /____/\ \ \ \
/ / /_____// / / / / /_____// /\____\/ _ \ \ \
/ / / ___/ / /__ / / / / / /______ /_/\__/ / /
/ / / /\__\/_/___\/ / / / / /_______\\ \/___/ /
\/_/ \/_________/\/_/ \/__________/ \_____\/
pipes is a micro-framework for PHP 5.3, inspired by Sinatra. It uses
namespaces and anonymous functions to give you code that looks like:
require 'pipes.php';
pipes\get('/hi', function() {
return "Hello, world!";
});
pipes\get('/hi/:name', function($params) {
return "Hello, {$params->name}!";
});
pipes\run();
To use, just download and include the merged file:
https://github.com/noonat/pipes/raw/master/pipes.php
For documentation, see:
https://wiki.github.com/noonat/pipes/
For bugs, feature requests, and so on:
https://github.com/noonat/pipes/issues