Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions docs/book/v7/architecture-at-a-glance.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) | [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.

Expand Down