darthsoup/php-whmcs-api
最新稳定版本:1.3.7
Composer 安装命令:
composer require darthsoup/php-whmcs-api
包简介
WHMCS API client for PHP
README 文档
README
Simple and PSR7 compatible WHMCS API Client which is inspired by GitLabPHP/Client.
Installation
Composer
$ composer require "darthsoup/php-whmcs-api" "guzzlehttp/guzzle:^7.5" "http-interop/http-factory-guzzle:^1.2"
System Requirements
This package requires:
- PHP ^7.4 | ^8.0
- PHP extensions
curl,jsonandmbstring
Usage
Initialize Client
Basic initialisation of the Client.
<?php require_once __DIR__ . '/vendor/autoload.php'; $client = new \DarthSoup\WhmcsApi\Client(); // Auth Credentials with identifier and secret $client->authenticate('your_identifier', 'your_secret', \DarthSoup\WhmcsApi\Client::AUTH_API_CREDENTIALS); // Login Credentials with Username and Password (without md5) $client->authenticate('your_username', 'your_password', \DarthSoup\WhmcsApi\Client::AUTH_LOGIN_CREDENTIALS); // Set the URL to your whmcs instance $client->url('http://<your_whmcs_instance_url>');
API access key
In case your instance has an additional $api_access_key configured in your whmcs configuration.php,
you can also add it by using accessKey in the init process.
$client->accessKey('my_access_key');
Endpoints
| Name | Status |
|---|---|
| Addons | Complete |
| Affiliates | Complete |
| Authentication | Complete |
| Billing | Complete |
| Client | Complete |
| Domains | Complete |
| Orders | Complete |
| Products | Complete |
| Servers | Complete |
| Service | Complete |
| Support | Incomplete |
| System | Complete |
| Ticket | Incomplete |
| Users | Complete |
Examples
Get clients
$client->client()->getClients(['search' => 'firstname']);
Get all orders
$client->orders()->getOrders();
Call custom API Route
If your WHMCS instance contains custom API routes, you can also call them without extending the code.
$parameters = ['foo' => 'bar']; $client->custom()->yourCustomApiName($parameters);
Examples by files
There are some examples in the /examples folder if reading documentation is not your cup of tea.
Disclaimer
If you are using this client, please refer to the documentation on the WHMCS Developer page. The API documentation is in some places very incomplete and in some cases questionably documented.
Support
Please open an issue in github
License
This package is released under the MIT License. See the bundled LICENSE file for details.
统计信息
- 总下载量: 15.09k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 23
- 点击次数: 1
- 依赖项目数: 4
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-02-04