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
+51-2
Original file line number
Diff line number
Diff line change
@@ -70,9 +70,16 @@ Install via composer
70
70
composer require mpscholten/request-parser
71
71
```
72
72
73
-
If you're using the `symfony/http-foundation``Request`, you just need to import a trait into your controller. If you're using some other `Request` abstraction (or maybe just plain old `$_GET` and friends), [check out this example](https://github.com/mpscholten/request-parser/blob/master/examples/not-symfony.php).
74
73
75
-
The following example asumes you're using the symfony `Request`:
74
+
**Integrations:**
75
+
76
+
- If you're using `symfony/http-foundation`, [click here](#symfony-httpfoundation).
77
+
- If you're using a Psr7 `ServerRequestInterface` implementation, [click here](#psr7).
78
+
- If you're using some other `Request` abstraction (or maybe just plain old `$_GET` and friends), [check out this example](https://github.com/mpscholten/request-parser/blob/master/examples/not-symfony.php).
79
+
80
+
#### Symfony HttpFoundation
81
+
82
+
The following example assumes you're using the symfony `Request`:
76
83
77
84
```php
78
85
class MyController
@@ -112,6 +119,48 @@ be handled by your application to show an error message.
112
119
113
120
Take a look at [the examples](https://github.com/mpscholten/request-parser/tree/master/examples).
114
121
122
+
#### Psr7
123
+
124
+
The following example assumes you're using the Psr7 `ServerRequestInterface`:
125
+
126
+
```php
127
+
class MyController
128
+
{
129
+
use \MPScholten\RequestParser\Psr7\ControllerHelperTrait;
130
+
131
+
public function __construct(ServerRequestInterface $request)
132
+
{
133
+
$this->initRequestParser($request);
134
+
}
135
+
}
136
+
```
137
+
138
+
Then you can use the library like this:
139
+
```php
140
+
class MyController
141
+
{
142
+
use \MPScholten\RequestParser\Psr7\ControllerHelperTrait;
143
+
144
+
public function __construct(ServerRequestInterface $request)
0 commit comments