galamz / whmcsl5
Laravel 5 WHMCS API
dev-master / 1.0.x-dev
2016-10-08 23:36 UTC
Requires
- php: >=5.4.0
- guzzlehttp/guzzle: ~6.0
- illuminate/support: ~5.2
This package is not auto-updated.
Last update: 2024-11-13 21:37:47 UTC
README
Installation
Begin by installing the package through Composer. The best way to do this is through your terminal via Composer itself:
composer require xuma/l5whmcs
or you can add your composer.json require section:
"xuma/l5whmcs": "~1.0@dev"
Don't forget to update composer update.
Once this operation is complete, simply add both the service provider and facade classes to your project's config/app.php file:
Config File
Create config/whmcs.php with content:
return [
'url'=>'https://whmcsurl/includes/api.php',
'username'=>'yourapiusername',
'password'=>'yourapipassword',
'user_agent'=>'Your Agent Name'
];
Service Provider
'Xuma\Whmcs\WhmcsServiceProvider',
Facade
'WHMCS'=> 'Xuma\Whmcs\Facades\Whmcs',
Examples
Getting all clients.
WHMCS::getClients();
Getting single client
WHMCS::getClientsDetails($userIdOrEmail);
Getting clients products
WHMCS::getClientsProducts($userId)
Getting clients domains
WHMCS::getClientsDomains($userId)
Getting clients hashed password
WHMCS::getClientsPassword($userId)