├── .gitmodules ├── README ├── Rakefile ├── composer.json ├── docs ├── api.html └── api.md ├── examples ├── hello.php ├── public │ ├── .htaccess │ └── index.php └── views │ └── form.php ├── pipes.php ├── src ├── pipes.php └── pipes │ ├── hash.php │ ├── helpers.php │ ├── request.php │ ├── response.php │ └── route.php └── tests ├── mock ├── headers.php ├── path1 │ ├── bar.php │ ├── baz.php │ ├── context.php │ └── foo.php └── path2 │ ├── bar.php │ └── foo.php ├── run.php ├── test_hash.php ├── test_pipes.php ├── test_request.php ├── test_response.php ├── test_route.php └── views └── foo.php /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noonat/pipes/HEAD/.gitmodules -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noonat/pipes/HEAD/README -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noonat/pipes/HEAD/Rakefile -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noonat/pipes/HEAD/composer.json -------------------------------------------------------------------------------- /docs/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noonat/pipes/HEAD/docs/api.html -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noonat/pipes/HEAD/docs/api.md -------------------------------------------------------------------------------- /examples/hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noonat/pipes/HEAD/examples/hello.php -------------------------------------------------------------------------------- /examples/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noonat/pipes/HEAD/examples/public/.htaccess -------------------------------------------------------------------------------- /examples/public/index.php: -------------------------------------------------------------------------------- 1 | bubble = false; 5 | -------------------------------------------------------------------------------- /tests/mock/path1/baz.php: -------------------------------------------------------------------------------- 1 |