├── .env.test.template ├── .gitignore ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Auth │ ├── BaiduCloudAuth.php │ └── TencentCloudAuth.php ├── Client │ ├── BaiduCloudClient.php │ ├── CloudflareClient.php │ ├── CommonClient.php │ ├── GithubClient.php │ ├── OpenAIClient.php │ └── TencentCloudClient.php ├── Exception │ └── AuthException.php ├── Tool │ ├── ClientTool.php │ └── TestCaseTool.php └── YZhanGateway.php └── tests ├── BaiduCloudTest.php ├── CloudflareTest.php ├── GithubTest.php ├── OpenAITest.php ├── TencentCloudTest.php └── YZhanGatewayTest.php /.env.test.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/.env.test.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Auth/BaiduCloudAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/src/Auth/BaiduCloudAuth.php -------------------------------------------------------------------------------- /src/Auth/TencentCloudAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/src/Auth/TencentCloudAuth.php -------------------------------------------------------------------------------- /src/Client/BaiduCloudClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/src/Client/BaiduCloudClient.php -------------------------------------------------------------------------------- /src/Client/CloudflareClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/src/Client/CloudflareClient.php -------------------------------------------------------------------------------- /src/Client/CommonClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/src/Client/CommonClient.php -------------------------------------------------------------------------------- /src/Client/GithubClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/src/Client/GithubClient.php -------------------------------------------------------------------------------- /src/Client/OpenAIClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/src/Client/OpenAIClient.php -------------------------------------------------------------------------------- /src/Client/TencentCloudClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/src/Client/TencentCloudClient.php -------------------------------------------------------------------------------- /src/Exception/AuthException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/src/Exception/AuthException.php -------------------------------------------------------------------------------- /src/Tool/ClientTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/src/Tool/ClientTool.php -------------------------------------------------------------------------------- /src/Tool/TestCaseTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/src/Tool/TestCaseTool.php -------------------------------------------------------------------------------- /src/YZhanGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/src/YZhanGateway.php -------------------------------------------------------------------------------- /tests/BaiduCloudTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/tests/BaiduCloudTest.php -------------------------------------------------------------------------------- /tests/CloudflareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/tests/CloudflareTest.php -------------------------------------------------------------------------------- /tests/GithubTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/tests/GithubTest.php -------------------------------------------------------------------------------- /tests/OpenAITest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/tests/OpenAITest.php -------------------------------------------------------------------------------- /tests/TencentCloudTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/tests/TencentCloudTest.php -------------------------------------------------------------------------------- /tests/YZhanGatewayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoufan/yzhanGateway/HEAD/tests/YZhanGatewayTest.php --------------------------------------------------------------------------------