kitteam / hestia-api
HestiaCP client for Laravel
1.0.0
2026-02-10 06:15 UTC
Requires
- guzzlehttp/guzzle: ^6.2|^7.0
- laravel/framework: ^10.0|^11.0|^12.0
This package is auto-updated.
Last update: 2026-02-10 06:22:44 UTC
README
Powerful API client hosting HestiaCP for Laravel
Installation
Via Composer
Going your project directory on shell and run this command:
$ composer require kitteam/hestia-api
Publication
php artisan vendor:publish --provider="HestiaAPI\Providers\HestiaServiceProvider"
Generate api key
bash /usr/local/hestia/bin/v-generate-api-key
Usage
Simple usage
use HestiaAPI\Facades\Hestia; $backups = Hestia::server('ServerName')->setUserName('UserName')->listUserBackups();
