kitteam / hestia-api
HestiaCP client for Laravel
1.0.1
2026-03-11 08:58 UTC
Requires
- guzzlehttp/guzzle: ^6.2|^7.0
- laravel/framework: ^10.0|^11.0|^12.0
This package is auto-updated.
Last update: 2026-03-11 09:00:22 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();
