yiisoft / request-provider
PSR-7 request provider
Fund package maintenance!
Opencollective
yiisoft
Installs: 15 487
Dependents: 2
Suggesters: 0
Security: 0
Stars: 6
Watchers: 15
Forks: 3
Open Issues: 0
Requires
- php: ^8.1
- psr/http-message: ^1.0|^2.0
- psr/http-server-handler: ^1.0
- psr/http-server-middleware: ^1.0
Requires (Dev)
- maglnet/composer-require-checker: ^4.7
- phpunit/phpunit: ^10.5
- rector/rector: ^1.0.1
- roave/infection-static-analysis-plugin: ^1.34
- spatie/phpunit-watcher: ^1.23
- vimeo/psalm: ^5.20
- yiisoft/di: ^1.2
This package is auto-updated.
Last update: 2024-10-29 13:12:14 UTC
README
Yii Request Provider
The package provides the current PSR-7 request as a dependency.
Requirements
- PHP 8.1 or higher.
Installation
The package can be installed with Composer:
composer require yiisoft/request-provider
General usage
First, add the Yiisoft\RequestProvider\RequestCatcherMiddleware
to your application middleware stack.
Then, when you need the current request, get the RequestProviderInterface
as a dependency and obtain the request from it:
use Yiisoft\RequestProvider\RequestProviderInterface; final class MyService { public function __construct( private readonly RequestProviderInterface $requestProvider ) { } public function doIt() { $request = $this->requestProvider->get(); // ... } }
Request cookies collection
You can work with cookies as follows:
class MyClass { public function __construct( private \Yiisoft\RequestProvider\RequestCookies $cookies ) {} public function go(): void { $this->cookies->has('foo'); $this->cookies->get('bar'); } }
Documentation
If you need help or have a question, the Yii Forum is a helpful resource. You may also check out other resources at Yii Community Resources.
License
The Yii Request Provider is free software. It is released under the terms of the BSD License.
Please see LICENSE
for more information.
Maintained by Yii Software.