You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/book/v7/introduction/psr.md
+16-17Lines changed: 16 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,15 +8,15 @@
8
8
-**Long-Term Maintenance**: PSRs are stable standards maintained by the PHP community, ensuring longevity.
9
9
-**Code Quality**: Following standards encourages best practices and makes code more maintainable.
10
10
11
-
## PSRs (PHP Standards Recommendations)
11
+
## PHP Standards Recommendations (PSRs)
12
12
13
13
Dotkernel API adheres to PHP Standards Recommendations (PSRs) established by the PHP-FIG (Framework Interoperability Group). These standards ensure code interoperability and allow Dotkernel API to work seamlessly with other PSR-compliant libraries.
14
14
15
15
Some PSRs are at the **core** of Dotkernel API's architecture, while others are installed as dependencies through third-party packages.
@@ -29,7 +29,7 @@ Defines standardized interfaces for HTTP messages (requests and responses) and U
29
29
- Allows middleware and handlers to work with consistent interfaces.
30
30
- Implemented via `Laminas\Diactoros`.
31
31
32
-
## PSR-15: HTTP Server Request Handlers and Middleware
32
+
###PSR-15: HTTP Server Request Handlers and Middleware
33
33
34
34
**Repository**: [php-fig/http-server-handler](https://github.com/php-fig/http-server-handler) and [php-fig/http-server-middleware](https://github.com/php-fig/http-server-middleware)
35
35
@@ -42,7 +42,7 @@ Defines the interface for HTTP request handlers and middleware components that p
42
42
- Middleware pipeline processes requests in a chain.
43
43
- Single-action handlers follow this pattern for clean separation of concerns.
0 commit comments