hollisho/http-client
最新稳定版本:v1.2.1
Composer 安装命令:
composer require hollisho/http-client
包简介
http-client
README 文档
README
$ composer require hollisho/http-client
AnnotationRegistry
if (file_exists(dirname(__FILE__) . '/vendor/autoload.php')) { require_once dirname(__FILE__) . '/vendor/autoload.php'; } // 注册 Doctrine 注解,为 PHP 8.0 做特殊处理 if (PHP_VERSION_ID >= 80000) { // PHP 8.0+ 需要明确注册注解命名空间 if (class_exists('Doctrine\Common\Annotations\AnnotationRegistry')) { // 注册类加载器 AnnotationRegistry::registerLoader('class_exists'); // 显式注册 hollisho 的注解命名空间 if (method_exists(AnnotationRegistry::class, 'registerAutoloadNamespace')) { AnnotationRegistry::registerAutoloadNamespace( 'hollisho\httpclient\Annotations', dirname(__FILE__) . '/vendor/hollisho/http-client/src/Annotations' ); } } } else { // PHP 7.x if (method_exists(AnnotationRegistry::class, 'registerLoader')) { AnnotationRegistry::registerLoader('class_exists'); } }
TestCase
- 执行指定目录所有用例
$ ./vendor/phpunit/phpunit/phpunit --configuration phpunit.xml
- 执行指定文件
$ ./vendor/phpunit/phpunit/phpunit --configuration phpunit.xml --test-suffix RequestTest.php
- 执行 RequestTest 用例
$ ./vendor/phpunit/phpunit/phpunit --configuration phpunit.xml --filter RequestTest
- 执行 RequestTest::test 用例
$ ./vendor/phpunit/phpunit/phpunit --configuration phpunit.xml --filter RequestTest::test
Basic Use
$httpClient = new BaseClient('https://www.1024plus.com'); $httpClient->pushMiddleware(new AuthRequest()); $httpClient->httpPost('/category/springboot/');
Use Annotation
/** * @author Hollis * Interface UserService * * @BaseUrl(host="https://www.1024plus.com/") * * @package hollisho\httpclientTests\Service */ interface UserService { /** * @Headers(headers={ * @AuthBasic(username="override", password="override"), * @CustomHeader(name="x-override", body="test") * }) * * @Action( * method=@Get, * endpoint=@Endpoint(uri="/api/entry/{id}") * ) */ public function getUser($id); /** * @Action( * method=@Post, * endpoint=@Endpoint(uri="/resource"), * body=@Body(json=true, name="body") * ) */ public function createUser($body); } // 生成 FeignClient 实例 $client = FeignClientFactory::create(UserService::class); echo $client->getUser(1);
统计信息
- 总下载量: 96
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-08-09