Here are
44 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 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
A powerful PHP Router for PSR7 messages inspired by the Laravel API.
Support Swoole Implement PSR7
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
🚤 Middlewares support for Apitte stack
PSR7-like http request/response management
Updated
Aug 18, 2020
Hack
refactor yii2 based on php7.4
A useful collection of classes to work with JWT and guzzle
GraphQL API for managing soccer leagues like Wilde Liga Bremen
Annotation Router for Slim 4.x
[CLOSED] KIMCIL KEPOLEN PROJECT PENGEN DIBELAY
JSON encode and decode PSR-7 requests and responses
Minimal string based PSR-7 StreamInterface implementation
🛍️ Unofficial Client API of La Presse Libre project.
Use PSR-7 middleware with Laravel
PSR-17 Factory for Guzzle/PSR-7 and Zend Diactoros
Simple test for Slim4 with various PSR-7 implementations (using Travis-CI)
Full Stack SaaS RAD LAMP FrameWork
[READ ONLY] PSR-15 HTTP Request pipeline. Subtree split of the Spiral HTTP component (see spiral/framework)
a very minimal helper class for writing RAD PSR-7 PHP applications
Nylohm PSR-7/PSR-17 bridge support.
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上,导致这样的设计没法实施。