dev-master
9999999-devA simple Laravel interface for interacting with the WHMCS API.
MIT
The Requires
- php >=5.5.9
- guzzlehttp/guzzle ~6.0
by Cory DeMille
laravel api whmcs
Wallogit.com
2017 © Pedro Peláez
A simple Laravel interface for interacting with the WHMCS API.
A simple Laravel interface for interacting with the WHMCS API., (*1)
To install the package, simply add the following to your Laravel installation's composer.json file:, (*2)
"require": {
"laravel/framework": "5.*",
"corydemille/laravel-whmcs": "dev-master"
},
Run composer update to pull in the files., (*3)
Then, add the following Service Provider to your providers array in your config/app.php file:, (*4)
'providers' => array(
...
WHMCS\WHMCSServiceProvider::class
);
From the command-line run:
php artisan vendor:publish, (*5)
Open config/whmcs.php and configure the api endpoint and credentials:, (*6)
return [
// API URL
'url' => 'http://url.com/whmcs/includes/api.php',
// API USERNAME
'username' => 'admin_user',
// API PASSWORD
'password' => 'password123',
// API RESPONSE TYPE
'response_type' => 'json', // json or xml
];
// app/Http/routes.php
Route::get('/products/{client_id}', function() {
$start = 0;
$limit = 25;
$products = WHMCS::getClientProducts($client_id, $start, $limit);
return json_encode($products);
});
A simple Laravel interface for interacting with the WHMCS API.
MIT
laravel api whmcs