Skip to content

Commit 79208c5

Browse files
authored
Update README.md
1 parent fd57f59 commit 79208c5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Codeigniter4-RoadRunner provides the synchroniztion of the Request and Response
2323
### Composer Install
2424
Use "Composer" to download the library and its dependencies to the project
2525
```
26-
composer require sdpmlab/codeigniter4-roadrunner "v1.0.0-beta.1"
26+
composer require sdpmlab/codeigniter4-roadrunner "v1.0.0-beta.2"
2727
```
2828
Initialize Roadrunner and files using built-in commands in the library
2929

@@ -91,7 +91,7 @@ Codeigniter4 does not implement the complete [HTTP message interface](https://ww
9191

9292
Base on the reasons above, You should use `$this->request`, provided by Codeigniter4, or the global function `/Config/Services::('request')` to fetch the correct request object; Use `$this->response` or `/Config/Services::('response')` to fetch the correct response object.
9393

94-
Please be noticed, while constructing response for the users during developing, you should prevent using PHP built-in methods to conduct `header` or `set-cookies` settings. Using the `setHeader()` and `setCookie()`, provided by the [Codeigniter4 Response Object](https://codeigniter.tw/user_guide/outgoing/response.html), to conduct setting.
94+
Please be noticed, while constructing response for the users during developing, you should prevent using PHP built-in methods to conduct `header` or `set-cookies` settings. Using the `setHeader()` and `setCookie()`, provided by the [Codeigniter4 Response Object](https://codeigniter.com/user_guide/outgoing/response.html), to conduct setting.
9595

9696
### Use return to stop controller logic
9797

@@ -127,7 +127,7 @@ class Home extends BaseController
127127

128128
### Use the built-in Session library
129129

130-
We only focus on supporting the Codeigniter4 built-in [Session library](https://codeigniter.tw/user_guide/libraries/sessions.html), and do not guarantee if using `session_start()` and `$_SEEEION` can work as normal. So, you should avoid using the PHP built-in Session method, change to the Codeigniter4 framework built-in library.
130+
We only focus on supporting the Codeigniter4 built-in [Session library](https://codeigniter.com/user_guide/libraries/sessions.html), and do not guarantee if using `session_start()` and `$_SEEEION` can work as normal. So, you should avoid using the PHP built-in Session method, change to the Codeigniter4 framework built-in library.
131131

132132
### Developing and debugging in a environment with only one Worker
133133

0 commit comments

Comments
 (0)