The goal of this framework is to enable us to quickly bootstrap new CQRS Services while sticking to our very strict coding guidelines. This especially means that any kind of magic should be avoided.
- Currently Supports only HTTP
get
andpost
verbs.
- Determines if it is responsible for routing a given URL.
- Returns a
Command
- Changes the state of a resource (like creating or updating)
- Determines if it is responsible for routing a given URL.
- Returns a
Query
- Does not change the state of a resource and only returns existing data.
- Composer
- PHP 7.0+
"require": {
"kartenmacherei/http-framework": "dev-master"
}
// create a request
$request = Request::fromSuperGlobals();
// create a new instance of the framework
$framework = Framework::createInstance();
// register a Request Route
$framework->registerPostRoute(new LoginRoute());
$framework->registerGetRoute(new WelcomeRoute());
// let the framework process the request
$response = $framework->run($request);
// send the response to the client
$response->flush();
This software is licensed under the terms of the MIT license. See LICENSE.md for the full license.