A Laravel package for interacting with WHMCS API in Laravel 10
hopekelldev/laravel_whmcs is a Laravel package for a laravel package for interacting with whmcs api in laravel 10.
It currently has 0 GitHub stars and 10 downloads on Packagist (latest version 1.0.1).
Install it with composer require hopekelldev/laravel_whmcs.
Discover more Laravel packages by hopekelldev
or browse all Laravel packages to compare alternatives.
Last updated
A Laravel package for integrating with the WHMCS API in Laravel 10. This package has been tested in laravel 10 and it's compatible with it, It has not been tested with the current version of laravel. We will be working on improving it. You can are free to contribute to the project.
You can install the package via Composer:
composer require hopekelldev/laravelwhmcs
Add your service provider to the providers array in config/app.php:
'providers' => [
// Other Service Providers
HopekellDev\LaravelWHMCS\WHMCSServiceProvider::class,
],
Add Aliases
'aliases' => [
// Other Aliases
'WHMCS' => HopekellDev\LaravelWHMCS\Facades\WHMCS::class,
],
php artisan vendor:publish --provider="HopekellDev\LaravelWHMCS\WHMCSServiceProvider" --tag="config"
YOUR_WHMCS_API_URL=
YOUR_API_IDENTIFIER=your_whmcs_username
YOUR_API_SECRET=your_whmcs_password
use HopekellDev\LaravelWHMCS\Facades\WHMCS;
// Example usage
$clients = WHMCS::getClients();
This package is licensed under the MIT