mindfulindustries / php-http-transport
此包已被废弃,不再维护。未建议替代包。
简单的 PHP Guzzle 封装。
v2.1.1
2019-09-20 17:21 UTC
Requires
- php: >=7.2
- guzzlehttp/guzzle: ^6.0
Requires (Dev)
README
受 Zttp 启发的简单的 PHP Guzzle 封装。
安装
composer require mindfulindustries/php-http-transport
无超时使用
$response = \MindfulIndustries\Support\Transport\Http::get('http://example.com', [ 'foo' => 'bar' ]);
带超时使用
try { $response = \MindfulIndustries\Support\Transport\Http::timeout(5)->post('http://your.domain', [ 'foo' => 'bar' ]); } catch (\MindfulIndustries\Support\Transport\ConnectionException $e) { // timed out .. }