dev-master
9999999-dev https://github.com/queiroz/whmcs-apiWhmcs API for Laravel 4
MIT
The Requires
- php >=5.3.0
- illuminate/support 4.1.x
by Rodrigo Queiroz
laravel api php whmcs
Wallogit.com
2017 © Pedro Peláez
Whmcs API for Laravel 4
Laravel 4 - Simple package for WHMCS external API, (*1)
Add whmcs-api to your composer.json file:, (*2)
"require": {
"queiroz/whmcs-api": "dev-master"
}
Use composer to install this package., (*3)
$ composer update
register this service provider at the bottom of the $providers array: app.php, (*4)
'Queiroz\WhmcsApi\WhmcsApiServiceProvider'
go to laravel/vendor/queiroz/whmcs-api/src/config/config.php and set the parameters, (*5)
return array(
'username' => 'api-username',
'password' => 'api-password',
'url' => 'http://www.site.com/whmcs/includes/api.php', // API url
);
When this command is executed, the configuration files for your application will be copied to app/config/packages/queiroz/whmcs-api where they can be safely modified by the developer!, (*6)
php artisan config:publish queiroz/whmcs-api
Logging a user to WHMCS, (*7)
$username = 'client'; // Client Username
$password = 'password'; // Client Password
$login = Whmcs::execute('validatelogin', array('email' => $username, 'password2' => $password));
if($login->result == 'success') {
echo 'User Logged In';
} elseif($login->result == 'error') {
echo $login->message;
}
For reference on WHMCS API please follow http://docs.whmcs.com/API, (*8)
Whmcs API for Laravel 4
MIT
laravel api php whmcs