phasehosting / laravel-cpanel-api
Laravel cPanel/WHM API Package.
Requires
- php: >=5.4.0
- illuminate/support: ~5
- phasehosting/php-cpanel-api: ~1
This package is not auto-updated.
Last update: 2024-11-13 20:51:58 UTC
README
Contents
Installation Guide
To install this package, you can run this code via your terminal
composer require phasehosting/cpanel-whm:~1.0
Or update your composer.json
by adding this line
"phasehosting/cpanel-whm":"~1.0"
Then, run this code
composer update
After install it, you have to add this line on your app/config/app.php
on Service Providers lines.
'Phase\CpanelWhm\CpanelWhmServiceProvider',
It will automatically set an alias 'CpanelWhm' as Facade Accessor.
Configuration
In this package, it only using hash as its authentication. It's the safer way than using your root plain password. First, run this command
php artisan vendor:publish
It will generate new file at config/cpanel-whm.php
. Edit necessary lines.
Usage
For example, if you are trying to get some list of accounts, you can run this.
<?php
Route::get('list-accounts',function(){
$list_accounts = CpanelWhm::listaccts();
return $list_accounts;
});
For more information you can go to this links Guide to Cpanel API 2