gkimani / cyberpanel
Unofficial PHP SDK for CyberPanel
1.0.0
2024-07-11 16:00 UTC
Requires
- php: ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3
- guzzlehttp/guzzle: ^7.8
Requires (Dev)
- phpstan/phpstan: ^1.11
- phpunit/phpunit: ^8.5.14|^9.4
- psalm/plugin-phpunit: ^0.18.4
- squizlabs/php_codesniffer: ^3.10
- vimeo/psalm: ^4.17
This package is auto-updated.
Last update: 2025-03-27 18:34:33 UTC
README
📦 Unofficial SDK for PHP with Type hinting
Introduction
Consume CyberPanel APIs inside your PHP Application
- User
- Package
- Website
- DNS
- Database
- Child Domain
- FTP
- Backup
- Partner
Install
Install the SDK using Composer.
composer require gkimani/cyberpanel
Usage
// replace the class Website with either:
--> Ftp, User, Package, ChildDomain, Email, Database, Dns, Backup
$cyberPanelClient = new Website('https://panel.cyberpanel.net', 'admin', 'password');
$response = $cyberPanelClient->createWebsite(
'admin',
'cyberpanel.net',
'Default',
'usman@cyberpersons.com',
'PHP 8.1',
'admin',
0,
0,
0
);
// $response handles exceptions for errors that occur during HTTP requests
Security
If you discover any security related issues, please email josephgodwinke@gmail.com instead of using the issue tracker.
Credits
Thanks to everyone who has contributed to this project so far. You can read the contribution guide here.
License
The MIT License. Please see License File for more information.