svilborg/guzzle-file-snapshot

Guzzle 文件快照模拟

1.0.1 2018-11-01 20:15 UTC

README

Guzzle 文件模拟

Build Status Latest Stable Version License

Guzzle 模拟对文件系统的 Http 调用。首次调用时创建快照,之后使用该快照。

用法

$client = new GuzzleFileMock([
	            'file_mock' => __DIR__ . '/snapshots/',
	            'base_uri' => 'https://some.endpoint.org/'
	            ]);

$client->post("users", [
	            "form_params" => ["name" => "Peter"]
	        ]);

PHP 序列化器和扩展

$client = new GuzzleFileMock([
	            'file_mock' => __DIR__ . '/snapshots/',
	            'file_mock_ext' => 'txt',
	            'file_mock_serializer' => '\GuzzleHttpMock\Serializer\PhpSerializer',
	            'base_uri' => 'https://some.endpoint.org/'
	            ]);

$client->post("users", [
	            "form_params" => ["name" => "Peter"]
	        ]);