From 022cdc70f4d43bf9a8210822adee00f7ed28c3d8 Mon Sep 17 00:00:00 2001 From: bidi Date: Thu, 21 May 2026 13:20:03 +0300 Subject: [PATCH 1/3] updates from review Signed-off-by: bidi --- docs/book/v7/architecture-at-a-glance.md | 26 ++++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/book/v7/architecture-at-a-glance.md b/docs/book/v7/architecture-at-a-glance.md index 0a5b3290..ea2161de 100644 --- a/docs/book/v7/architecture-at-a-glance.md +++ b/docs/book/v7/architecture-at-a-glance.md @@ -183,19 +183,19 @@ Services are automatically resolved and injected by AttributedServiceFactory. Dotkernel API adheres to PHP standards for interoperability. They ensure that your code can integrate with other PSR-compliant libraries. -| PSR and Specifications | Git Implementation | Level | Description | -|----------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------|---------------------------------------------------| -| [PSR-7](https://www.php-fig.org/psr/psr-7) | [php-fig/http-message](https://github.com/php-fig/http-message) | Core | HTTP Message Interfaces (Requests/Responses) | -| [PSR-11](https://www.php-fig.org/psr/psr-11) | [php-fig/container](https://github.com/php-fig/container) | Core | Container Interface (Dependency Injection) | -| [PSR-15](https://www.php-fig.org/psr/psr-15) | [php-fig/http-server-handler](https://github.com/php-fig/http-server-handler), [php-fig/http-server-middleware](https://github.com/php-fig/http-server-middleware) | Core | HTTP Handlers and Middleware (Request processing) | -| [PSR-3](https://www.php-fig.org/psr/psr-3) | [php-fig/log](https://github.com/php-fig/log) | Supporting | Logger Interface (Requests/Responses) | -| [PSR-4](https://www.php-fig.org/psr/psr-4) | [php-fig/log](https://github.com/php-fig/log) | Supporting | Autoloading (File organization) | -| [PSR-6](https://www.php-fig.org/psr/psr-6) | [php-fig/cache](https://github.com/php-fig/cache) | Supporting | Caching Interface | -| [PSR-13](https://www.php-fig.org/psr/psr-13) | [php-fig/link](https://github.com/php-fig/link) | Supporting | Link Definition Interfaces | -| [PSR-14](https://www.php-fig.org/psr/psr-14) | [php-fig/event-dispatcher](https://github.com/php-fig/event-dispatcher) | Supporting | Event Dispatcher | -| [PSR-17](https://www.php-fig.org/psr/psr-17) | [php-fig/http-factory](https://github.com/php-fig/http-factory) | Supporting | HTTP Factories | -| [PSR-18](https://www.php-fig.org/psr/psr-18) | [php-fig/http-client](https://github.com/php-fig/http-client) | Supporting | HTTP Client | -| [PSR-20](https://www.php-fig.org/psr/psr-20) | [php-fig/clock](https://github.com/php-fig/clock) | Supporting | Clock | +| PSR and Specifications | Git Implementation | Level | Description | +|----------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|------------|---------------------------------------------------| +| [PSR-7](https://www.php-fig.org/psr/psr-7) | [http-message](https://github.com/php-fig/http-message) | Core | HTTP Message Interfaces (Requests/Responses) | +| [PSR-11](https://www.php-fig.org/psr/psr-11) | [container](https://github.com/php-fig/container) | Core | Container Interface (Dependency Injection) | +| [PSR-15](https://www.php-fig.org/psr/psr-15) | [http-server-handler](https://github.com/php-fig/http-server-handler), [http-server-middleware](https://github.com/php-fig/http-server-middleware) | Core | HTTP Handlers and Middleware (Request processing) | +| [PSR-3](https://www.php-fig.org/psr/psr-3) | [log](https://github.com/php-fig/log) | Supporting | Logger Interface (Requests/Responses) | +| [PSR-4](https://www.php-fig.org/psr/psr-4) | | Supporting | Autoloading (File organization) | +| [PSR-6](https://www.php-fig.org/psr/psr-6) | [cache](https://github.com/php-fig/cache) | Supporting | Caching Interface | +| [PSR-13](https://www.php-fig.org/psr/psr-13) | [link](https://github.com/php-fig/link) | Supporting | Link Definition Interfaces | +| [PSR-14](https://www.php-fig.org/psr/psr-14) | [event-dispatcher](https://github.com/php-fig/event-dispatcher) | Supporting | Event Dispatcher | +| [PSR-17](https://www.php-fig.org/psr/psr-17) | [http-factory](https://github.com/php-fig/http-factory) | Supporting | HTTP Factories | +| [PSR-18](https://www.php-fig.org/psr/psr-18) | [http-client](https://github.com/php-fig/http-client) | Supporting | HTTP Client | +| [PSR-20](https://www.php-fig.org/psr/psr-20) | [clock](https://github.com/php-fig/clock) | Supporting | Clock | > Supporting PSRs are installed by dependencies. From 6eb84d84a09021676da4d4dece468722b19df36f Mon Sep 17 00:00:00 2001 From: bidi Date: Thu, 21 May 2026 13:29:23 +0300 Subject: [PATCH 2/3] linting fixes Signed-off-by: bidi --- docs/book/v7/architecture-at-a-glance.md | 26 ++++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/book/v7/architecture-at-a-glance.md b/docs/book/v7/architecture-at-a-glance.md index ea2161de..c9bede68 100644 --- a/docs/book/v7/architecture-at-a-glance.md +++ b/docs/book/v7/architecture-at-a-glance.md @@ -183,19 +183,19 @@ Services are automatically resolved and injected by AttributedServiceFactory. Dotkernel API adheres to PHP standards for interoperability. They ensure that your code can integrate with other PSR-compliant libraries. -| PSR and Specifications | Git Implementation | Level | Description | -|----------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|------------|---------------------------------------------------| -| [PSR-7](https://www.php-fig.org/psr/psr-7) | [http-message](https://github.com/php-fig/http-message) | Core | HTTP Message Interfaces (Requests/Responses) | -| [PSR-11](https://www.php-fig.org/psr/psr-11) | [container](https://github.com/php-fig/container) | Core | Container Interface (Dependency Injection) | -| [PSR-15](https://www.php-fig.org/psr/psr-15) | [http-server-handler](https://github.com/php-fig/http-server-handler), [http-server-middleware](https://github.com/php-fig/http-server-middleware) | Core | HTTP Handlers and Middleware (Request processing) | -| [PSR-3](https://www.php-fig.org/psr/psr-3) | [log](https://github.com/php-fig/log) | Supporting | Logger Interface (Requests/Responses) | -| [PSR-4](https://www.php-fig.org/psr/psr-4) | | Supporting | Autoloading (File organization) | -| [PSR-6](https://www.php-fig.org/psr/psr-6) | [cache](https://github.com/php-fig/cache) | Supporting | Caching Interface | -| [PSR-13](https://www.php-fig.org/psr/psr-13) | [link](https://github.com/php-fig/link) | Supporting | Link Definition Interfaces | -| [PSR-14](https://www.php-fig.org/psr/psr-14) | [event-dispatcher](https://github.com/php-fig/event-dispatcher) | Supporting | Event Dispatcher | -| [PSR-17](https://www.php-fig.org/psr/psr-17) | [http-factory](https://github.com/php-fig/http-factory) | Supporting | HTTP Factories | -| [PSR-18](https://www.php-fig.org/psr/psr-18) | [http-client](https://github.com/php-fig/http-client) | Supporting | HTTP Client | -| [PSR-20](https://www.php-fig.org/psr/psr-20) | [clock](https://github.com/php-fig/clock) | Supporting | Clock | +| PSR and Specifications | Git Implementation | Level | Description | +|----------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------|---------------------------------------------------| +| [PSR-7](https://www.php-fig.org/psr/psr-7) | [php-fig/http-message](https://github.com/php-fig/http-message) | Core | HTTP Message Interfaces (Requests/Responses) | +| [PSR-11](https://www.php-fig.org/psr/psr-11) | [php-fig/container](https://github.com/php-fig/container) | Core | Container Interface (Dependency Injection) | +| [PSR-15](https://www.php-fig.org/psr/psr-15) | [php-fig/http-server-handler](https://github.com/php-fig/http-server-handler), [php-fig/http-server-middleware](https://github.com/php-fig/http-server-middleware) | Core | HTTP Handlers and Middleware (Request processing) | +| [PSR-3](https://www.php-fig.org/psr/psr-3) | [php-fig/log](https://github.com/php-fig/log) | Supporting | Logger Interface (Requests/Responses) | +| [PSR-4](https://www.php-fig.org/psr/psr-4) | | Supporting | Autoloading (File organization) | +| [PSR-6](https://www.php-fig.org/psr/psr-6) | [php-fig/cache](https://github.com/php-fig/cache) | Supporting | Caching Interface | +| [PSR-13](https://www.php-fig.org/psr/psr-13) | [php-fig/link](https://github.com/php-fig/link) | Supporting | Link Definition Interfaces | +| [PSR-14](https://www.php-fig.org/psr/psr-14) | [php-fig/event-dispatcher](https://github.com/php-fig/event-dispatcher) | Supporting | Event Dispatcher | +| [PSR-17](https://www.php-fig.org/psr/psr-17) | [php-fig/http-factory](https://github.com/php-fig/http-factory) | Supporting | HTTP Factories | +| [PSR-18](https://www.php-fig.org/psr/psr-18) | [php-fig/http-client](https://github.com/php-fig/http-client) | Supporting | HTTP Client | +| [PSR-20](https://www.php-fig.org/psr/psr-20) | [php-fig/clock](https://github.com/php-fig/clock) | Supporting | Clock | > Supporting PSRs are installed by dependencies. From 125e193e2ab23c82cbd5a6e7cf969f1b49109bc0 Mon Sep 17 00:00:00 2001 From: bidi Date: Thu, 21 May 2026 14:09:27 +0300 Subject: [PATCH 3/3] linting fixes Signed-off-by: bidi --- docs/book/v7/architecture-at-a-glance.md | 26 ++++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/book/v7/architecture-at-a-glance.md b/docs/book/v7/architecture-at-a-glance.md index c9bede68..cf062625 100644 --- a/docs/book/v7/architecture-at-a-glance.md +++ b/docs/book/v7/architecture-at-a-glance.md @@ -183,19 +183,19 @@ Services are automatically resolved and injected by AttributedServiceFactory. Dotkernel API adheres to PHP standards for interoperability. They ensure that your code can integrate with other PSR-compliant libraries. -| PSR and Specifications | Git Implementation | Level | Description | -|----------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------|---------------------------------------------------| -| [PSR-7](https://www.php-fig.org/psr/psr-7) | [php-fig/http-message](https://github.com/php-fig/http-message) | Core | HTTP Message Interfaces (Requests/Responses) | -| [PSR-11](https://www.php-fig.org/psr/psr-11) | [php-fig/container](https://github.com/php-fig/container) | Core | Container Interface (Dependency Injection) | -| [PSR-15](https://www.php-fig.org/psr/psr-15) | [php-fig/http-server-handler](https://github.com/php-fig/http-server-handler), [php-fig/http-server-middleware](https://github.com/php-fig/http-server-middleware) | Core | HTTP Handlers and Middleware (Request processing) | -| [PSR-3](https://www.php-fig.org/psr/psr-3) | [php-fig/log](https://github.com/php-fig/log) | Supporting | Logger Interface (Requests/Responses) | -| [PSR-4](https://www.php-fig.org/psr/psr-4) | | Supporting | Autoloading (File organization) | -| [PSR-6](https://www.php-fig.org/psr/psr-6) | [php-fig/cache](https://github.com/php-fig/cache) | Supporting | Caching Interface | -| [PSR-13](https://www.php-fig.org/psr/psr-13) | [php-fig/link](https://github.com/php-fig/link) | Supporting | Link Definition Interfaces | -| [PSR-14](https://www.php-fig.org/psr/psr-14) | [php-fig/event-dispatcher](https://github.com/php-fig/event-dispatcher) | Supporting | Event Dispatcher | -| [PSR-17](https://www.php-fig.org/psr/psr-17) | [php-fig/http-factory](https://github.com/php-fig/http-factory) | Supporting | HTTP Factories | -| [PSR-18](https://www.php-fig.org/psr/psr-18) | [php-fig/http-client](https://github.com/php-fig/http-client) | Supporting | HTTP Client | -| [PSR-20](https://www.php-fig.org/psr/psr-20) | [php-fig/clock](https://github.com/php-fig/clock) | Supporting | Clock | +| PSR and Specifications | Git Implementation | Level | Description | +|----------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|------------|---------------------------------------------------| +| [PSR-7](https://www.php-fig.org/psr/psr-7) | [http-message](https://github.com/php-fig/http-message) | Core | HTTP Message Interfaces (Requests/Responses) | +| [PSR-11](https://www.php-fig.org/psr/psr-11) | [container](https://github.com/php-fig/container) | Core | Container Interface (Dependency Injection) | +| [PSR-15](https://www.php-fig.org/psr/psr-15) | [http-server-handler](https://github.com/php-fig/http-server-handler), [http-server-middleware](https://github.com/php-fig/http-server-middleware) | Core | HTTP Handlers and Middleware (Request processing) | +| [PSR-3](https://www.php-fig.org/psr/psr-3) | [log](https://github.com/php-fig/log) | Supporting | Logger Interface (Requests/Responses) | +| [PSR-4](https://www.php-fig.org/psr/psr-4) | | Supporting | Autoloading (File organization) | +| [PSR-6](https://www.php-fig.org/psr/psr-6) | [cache](https://github.com/php-fig/cache) | Supporting | Caching Interface | +| [PSR-13](https://www.php-fig.org/psr/psr-13) | [Git link](https://github.com/php-fig/link) | Supporting | Link Definition Interfaces | +| [PSR-14](https://www.php-fig.org/psr/psr-14) | [event-dispatcher](https://github.com/php-fig/event-dispatcher) | Supporting | Event Dispatcher | +| [PSR-17](https://www.php-fig.org/psr/psr-17) | [http-factory](https://github.com/php-fig/http-factory) | Supporting | HTTP Factories | +| [PSR-18](https://www.php-fig.org/psr/psr-18) | [http-client](https://github.com/php-fig/http-client) | Supporting | HTTP Client | +| [PSR-20](https://www.php-fig.org/psr/psr-20) | [clock](https://github.com/php-fig/clock) | Supporting | Clock | > Supporting PSRs are installed by dependencies.