Initial commit
parents
Showing
.editorconfig
0 → 100644
.gitignore
0 → 100644
EndPointTest.php
0 → 100644
bin/toml.php
0 → 100644
composer.json
0 → 100644
| { | ||
| "name": "jiwei/easy-http-sdk", | ||
| "description": "http client sdk generation.", | ||
| "type": "library", | ||
| "autoload": { | ||
| "psr-4": { | ||
| "Jiwei\\EasyHttpSdk\\": "src/" | ||
| } | ||
| }, | ||
| "authors": [ | ||
| { | ||
| "name": "谢宇轩", | ||
| "email": "y7ut1996@gmail.com" | ||
| } | ||
| ], | ||
| "require": { | ||
| "php": ">7.2.5", | ||
| "psr/log": "^1.1", | ||
| "twig/twig": "^3.0", | ||
| "symfony/cache": "^5.4", | ||
| "yosymfony/toml": "^1.0", | ||
| "guzzlehttp/guzzle": "^7.5", | ||
| "ramsey/uuid": "^4.7", | ||
| "ext-json": "*" | ||
| }, | ||
| "require-dev": { | ||
| "phpunit/phpunit": "^9", | ||
| "phpstan/phpstan": "^1.9" | ||
| }, | ||
| "extra": { | ||
| "branch-alias": { | ||
| "dev-master": "1.0.x-dev" | ||
| } | ||
| }, | ||
| "scripts": { | ||
| "phpstan": "vendor/bin/phpstan analyse -c phpstan.neon", | ||
| "phpunit": "./vendor/bin/phpunit", | ||
| "phpunit-unit": "./vendor/bin/phpunit --testsuite=unit" | ||
| } | ||
| } |
src/Application.php
0 → 100644
src/Helper/ArgsRecorder.php
0 → 100644
src/Helper/QueryPath.php
0 → 100644
src/Http/SdkRequest.php
0 → 100644
src/Option.php
0 → 100644
src/XXXSDKOption.php
0 → 100644
template/Endpoint.temp
0 → 100644
tests/unit/BaseTest.php
0 → 100644
Please register or sign in to comment