psg/sr1-implementation

SR-1的快速PHP7实现

0.3 2021-07-24 19:03 UTC

This package is auto-updated.

Last update: 2024-08-25 01:55:46 UTC


README

使用Nyholm的PSR 7实现作为基础的SR-1实现。

composer require psg/sr1-implementation
$Factory = new \Psg\Sr1\Implementation\Factory;
$request = $Factory->createRequest('GET', 'http://tnyholm.se');
$request = $request->withBodyString('{"name":"bob"}');