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: README.md
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,12 +18,14 @@ Using this package, Slim v3 applications can stay alive between HTTP requests wh
18
18
19
19
This project is currently in early stages of development and not considered stable. Importantly, this library currently lacks support for uploaded files.
20
20
21
+
There are currently [two known issues for this adapter](#known-issues).
If you are using a web server such as nginx, you will need to use a process manager to monitor and run your application.
74
+
75
+
## Known Issues
76
+
77
+
There are two known issues with this adapter that will be fixed in later versions.
78
+
79
+
1. Some Slim applications make use of additional helper methods on the Slim PSR-7 request object. Currently, PHPFastCGI uses request objects created by [Diactoros](https://github.com/zendframework/zend-diactoros) that do not have these helper methods. It is likely that some middleware that switches the Diactoros request to a Slim request will be created in the not too distant future.
80
+
81
+
2. Slim still keeps the request and response objects in the container. These container entries will not be valid for Slim applications running under PHPFastCGI. The request and response should always be received as method parameters.
0 commit comments