zanysoft/cpanel-api
Composer 安装命令:
composer require zanysoft/cpanel-api
包简介
Cpanel's API
README 文档
README
Cpanel's API 1 and 2 for Laravel
Contents
Installation Guide
Require this package in your composer.json and update composer. This will download the package.
composer require zanysoft/cpanel-api
If using < Laravel 5.5, add the ServiceProvider and Aliases in config/app.php
'providers' => [
'...',
ZanySoft\Cpanel\CpanelServiceProvider::class,
];
'aliases' => [
'...',
'Cpanel' => ZanySoft\Cpanel\Facades\Cpanel::class,
];
Configuration
The defaults configuration settings are set in config/cpanel.php. Copy this file to your own config directory to modify the values. You can publish the config using this command:
php artisan vendor:publish --provider="ZanySoft\Cpanel\CpanelServiceProvider"
Usage
You can create a new Cpanel instance.
$cpanel = Cpanel::make();
$cpanel->setHost($host_ip);
$cpanel->setAuth($username, $password) //if you don't want to set in config file
return $cpanel->api2($user, $module, $function, $args = array());
Or use the facade:
return Cpanel::api2($user, $module, $function, $args = array());
You can use the facade with chain the methods:
return Cpanel::setHost($host_ip)->setAuth($username, $password)->api2($user, $module, $function, $args = array());
You can set the authentication before chain if you don't want to set this in config/cpanel.php file.
return Cpanel::setAuth($username, $password)->api2($user, $module, $function, $args = array());
You can set host, username and pasword on createing instance if you don't want to set this in config/cpanel.php file.
$cpanel = new \ZanySoft\Cpanel\Cpanel($host,$username, $password);
// OR
$cpanel = Cpanel::make($host,$username, $password);
Functions
This is the example when you want to define your configuration
<?php $cpanel = App::make('cpanel'); $cpanel->setHost($host_ip); $cpanel->setAuth($username, $password) return $cpanel->api2($user, $module, $function, $args = array());
If you like to get some list accounts from cPanel/WHM
<?php $accounts = $cpanel->listaccts(); // passing parameters $accounts = $cpanel->listaccts($searchtype, $search);
If you want to create new subdomain
<?php // createSubdomain(Domain Name, Username, Dubdomain Directory, Main Domain) $cpanel->createSubdomain('subdomain', 'username', '/public_html/subdomain', 'example.com')
For accessing cPanel API 2, you can use this.
<?php return $cpanel->api2($user, $module, $function, $args = array());
For accessing cPanel API 1, you can use this.
<?php return $cpanel->api1($user, $module, $function, $args = array());
Documentation
Visit this link for api2 options: https://documentation.cpanel.net/display/SDK/Guide+to+cPanel+API+2
Visit this link for api1 options: https://documentation.cpanel.net/display/SDK/Guide+to+cPanel+API+1
zanysoft/cpanel-api 适用场景与选型建议
zanysoft/cpanel-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 12.41k 次下载、GitHub Stars 达 27, 最近一次更新时间为 2017 年 05 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「cpanel」 「whm」 「CPanel API」 「laravel9」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 zanysoft/cpanel-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 zanysoft/cpanel-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 zanysoft/cpanel-api 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel cPanel/WHM API Package.
Cpanel Licensing Class
Cpanel Licensing Class
MyAdmin cPanel Webhosting Plugin - Provides cPanel and WHM integration for the MyAdmin control panel, including account provisioning, DNS management, reseller configuration, and XML-API client functionality.
Cpanel Addon for VPS Module in MyAdmin
Handle WHM services with your Laravel command line
统计信息
- 总下载量: 12.41k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 28
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-05-26