Concept and Architecture
Introductionβ
BowPHP is a lightweight PHP framework designed to provide a clear and modular structure. When a request comes in, it follows a well-defined path called the request lifecycle. This cycle is organized to separate responsibilities, make the code easy to maintain, and improve performance.
The request lifecycle explainedβ
Every request goes through several stages before generating a response for the user.
Here are the main stages:
- HTTP Request: The user sends a request through their browser or an API.
- Request: The framework captures this request and extracts the necessary data (URL, parameters, body, etc.).
- Kernel: The Kernel is the heart of the framework. It:
- Loads the configuration files located in the
configfolder (such asconfig/database.php). - Initializes the modules needed by the application.
- Application: It boots the Kernel and prepares the environment to handle the request.
- Router:
- The router detects the route matching the request (for example,
/users/42or/api/login). - It maps this route to a specific controller and method, defined directly in the routes code.
- If middlewares are defined for this route, they are executed before calling the controller.
- Middleware: Middlewares perform specific processing, such as checking authentication or validating data.
- Controller: Once the route is validated, the controller executes the business logic (for example, retrieving data or performing an action).
- Model: If data is needed, the model interacts with the database to retrieve or update it.
- View: The controller passes the retrieved data to the View component, which generates the final content (HTML, JSON, etc.).
- HTTP Response: The response is sent back to the user.
The router's role in detailβ
The router is a key component of BowPHP. It acts as a "compass" that directs each request to the right controller and the right method.
Route detectionβ
The router examines the request URL and determines which route matches. Routes are defined in dedicated files.
Example of a route definition:
$app->get('/users/:id', 'UserController::show');
$app->post('/api/login', 'AuthController::login');
Here:
- The
GET /users/42request is mapped to theshowmethod ofUserController. - The
POST /api/loginrequest is mapped to theloginmethod ofAuthController.
Bow also supports PHP 8 attribute-based routing, which lets you declare routes directly on the controller class without a centralized routes file:
use Bow\Router\Attributes\{Controller, Get};
#[Controller(prefix: '/api/users', middleware: ['auth'])]
final class UserController
{
#[Get('/:id', name: 'show', where: ['id' => '\d+'])]
public function show(int $id) { /* ... */ }
}
// In routes/app.php
$app->register(UserController::class);
See Routing > Attribute-based routing for the details of the available attributes.
Mapping to the controllerβ
Once the route is detected, the router:
- Validates the URL parameters (such as
:id). - Executes the middlewares defined for this route (if any).
- Calls the controller and method associated with the route.
A modular architectureβ
BowPHP is built on a modular architecture. Each module is independent, has its own configuration, and fulfills a specific role. This makes the application easy to manage and extend. The router is one example; the Database module, which manages database connections, is another.
The contract: Bow\Configuration\Configurationβ
All modules follow the same contract: each one exposes a class that
extends Bow\Configuration\Configuration and implements two methods:
create(Loader $config)β declares the bindings in the containerrun()β boots the module (useful for eager resources)
The Kernel (your app/Kernel.php, which extends Bow\Configuration\Loader)
lists these providers in its configurations() method. At startup, the
Kernel instantiates them, loads the config/*.php files, then calls
create() and then run() on each one.
Example: The Database moduleβ
Let's take the case of the Database module, which manages connections to the database:
Configuration file: config/database.php
This file contains the parameters needed to connect to the database. Here is a simple example:
return [
'default' => 'mysql',
'connections' => [
'mysql' => [
'driver' => 'mysql',
'host' => '127.0.0.1',
'port' => 3306,
'database' => 'bowphp_app',
'username' => 'root',
'password' => '',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
],
],
];
The Bow\Database\DatabaseConfiguration class
This class (which extends Bow\Configuration\Configuration) reads config/database.php,
configures the PDO connections, and exposes db / database in the container.
Registration in the Kernel
namespace App;
use Bow\Configuration\Loader;
use Bow\Database\DatabaseConfiguration;
class Kernel extends Loader
{
public function configurations(): array
{
return [
DatabaseConfiguration::class,
// ... other providers (Cache, Mail, Queue, etc.)
];
}
}
At startup, the Kernel loads config/database.php, instantiates
DatabaseConfiguration, then calls its create() and run() methods. The
connection is then ready to be used by controllers, Barry models,
and the other components.
Visualization with a diagramβ
Here is a visual representation to better understand the request lifecycle and modular integration (example with Database):
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Framework Bow β
β β
β βββββββββββββββ ββββββββββββ ββββββββββββββ βββββββββββββββββββ β
β β Request βββββΆβ Kernel βββββΆβ Routeur βββββΆβ Middleware β β
β βββββββββββββββ ββββββββββββ ββββββββββββββ βββββββββββββββββββ β
β β² β β β
β β β Charge les β β
β β β modules βΌ β
β β β βββββββββββββββββββ β
β β βΌ β ContrΓ΄leur β β
β β ββββββββββββββ βββββββββββββββββββ β
β β β Config β β β
β β ββββββββββββββ β β
β β βΌ β
β βββββββββββββββ βββββββββββββββββββ β
β β RΓ©ponse ββββββββββββββββββββββββββββββββββββββΆβ ModΓ¨le β β
β β HTTP β βββββββββββββββββββ β
β βββββββββββββββ β β
β β² β β
β β βΌ β
β β βββββββββββββββ βββββββββββββββββββ β
β βββββββββββ Vue ββββββββββββββββββββββββ Base de donnΓ©es β β
β βββββββββββββββ βββββββββββββββββββ β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Flux : Request β Kernel β Routeur β Middleware β ContrΓ΄leur β ModΓ¨le β Vue β RΓ©ponse
Summary of the key pointsβ
- Structured lifecycle: A request follows a precise path (Request β Kernel β Router β Middleware β Controller β Model β View β Response).
- Router's role: The router detects the route matching the request and calls the associated controller and method.
- Kernel: Orchestrates loading the configurations from the
configfolder and initializes the modules. - Modularity: Each component (router, database, etc.) is independent, which simplifies management and improves maintainability.
Thanks to the contributorsβ
Thank you for considering contributing to BowPHP! The contribution guide can be found in the documentation.
Is something missing?
If you run into problems with the documentation or have suggestions to improve the documentation or the project in general, please open an issue for us, or send a tweet mentioning the Twitter account @bowframework or directly on github.