Here are
49 public repositories
matching this topic...
PPM is a process manager, supercharger and load balancer for modern PHP applications.
A PSR7 Bridge and PSR-15 adapter for Yii2
A powerful PHP Router for PSR7 messages inspired by the Laravel API.
💎 A Hero for your Zend Framework/Laminas, and Expressive/Mezzio application to log ( DB and Mail ) and handle php errors & exceptions during Mvc process/between request and response
Support Swoole Implement PSR7
PSR-15 Adapter for InertiaJS
Versatile PHP micro-framework for build APIs and websites quickly
PHP Framework providing ActiveRecord models and out of the box CRUD controllers with versioning and ORM support
PSR compatible middleware to integrate prooph with a middleware dispatcher
Varnish Esi Booster is an asynchronous, PSR-7 and PSR-15 compatible middleware using ReactPHP
GraphQL API for managing soccer leagues like Wilde Liga Bremen
🚤 Middlewares support for Apitte stack
PSR7-like http request/response management
Updated
May 20, 2021
Hack
JSON encode and decode PSR-7 requests and responses
A useful collection of classes to work with JWT and guzzle
Annotation Router for Slim 4.x
refactor yii2 based on php7.4
Bundle to provide support for PSR-7 HTTP messages. It allows to inject instances of Psr\Http\Message\ServerRequestInterface and to return instances of Psr\Http\Message\ResponseInterface in controllers.
[CLOSED] KIMCIL KEPOLEN PROJECT PENGEN DIBELAY
Use PSR-7 middleware with Laravel
A project makes Workerman works with ANY PSR-7 project
PSR-17 Factory for Guzzle/PSR-7 and Zend Diactoros
[READ ONLY] PSR-15 HTTP Request pipeline. Subtree split of the Spiral HTTP component (see spiral/framework)
🛍️ Unofficial Client API of La Presse Libre project.
A very simple PSR-15/PSR-7 compliant model of the HTTP request-response lifecycle.
Full Stack SaaS RAD LAMP FrameWork
PSR7 Based Redirect library. Supports wildcard, regex, http to https redirection. Query string handling
Easily build jsonrpc apis with validation in php
Improve this page
Add a description, image, and links to the
psr7
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
psr7
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
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.
PSR的RequestInterface没有规定实现exec方法,所以我设计组装一个http客户端无关的request的时候,我肯定不能绑定和客户端强相关的exec方法到Request上,因为每个客户端的异常类型、处理逻辑都不相同。
我设计一个composer组件,在组装请求部分,返回了个psr对象,本意是guzzle或者saber等支持PSR标准的HTTP客户端都可以按psr标准把这个对象代表的请求发送出去,现在Guzzle可以做到(
$guzzleClient->send($PSRrequest))而saber因为把PSR相关的处理逻辑绑定到他自定义的Request上,导致这样的设计没法实施。