{"id":18784183,"url":"https://github.com/kdevelopement/cpanel-api-simple-php","last_synced_at":"2025-12-20T23:30:18.683Z","repository":{"id":139575234,"uuid":"492383922","full_name":"KDevelopement/cPanel-API-Simple-PHP","owner":"KDevelopement","description":null,"archived":false,"fork":false,"pushed_at":"2022-05-15T15:12:25.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-12-29T11:51:46.613Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KDevelopement.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-05-15T04:09:18.000Z","updated_at":"2023-12-10T22:41:39.000Z","dependencies_parsed_at":"2023-12-09T10:45:11.086Z","dependency_job_id":null,"html_url":"https://github.com/KDevelopement/cPanel-API-Simple-PHP","commit_stats":null,"previous_names":["klicense/cpanel-api-simple-php","kdevelopement/cpanel-api-simple-php"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDevelopement%2FcPanel-API-Simple-PHP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDevelopement%2FcPanel-API-Simple-PHP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDevelopement%2FcPanel-API-Simple-PHP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDevelopement%2FcPanel-API-Simple-PHP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KDevelopement","download_url":"https://codeload.github.com/KDevelopement/cPanel-API-Simple-PHP/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239699583,"owners_count":19682575,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T20:42:13.994Z","updated_at":"2025-12-20T23:30:18.301Z","avatar_url":"https://github.com/KDevelopement.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## cPanel/WHM API for PHP library\n  Simples API via cURL\n\n### Function List\n```php\n- MYSQL\n  Create Database MySQL\n  Create User Database MySQL\n  Set Privileges DataBase x User\n  Delete Database MySQL\n  Delete User Database MySQL\n  Set Password User Database MySQL\n  Rename User Database MySQL\n  Check Database MySQL\n  Check Database MySQL\n  DUMP Database MySQL\n\n- POSTGRESQL\n  Create Database PostgreSQL\n  Create User PostgreSQL\n  Set All Privileges Database x User PostgreSQL\n  Delete Database PostgreSQL\n  Delete User PostgreSQL\n\n- QUOTA\n  Get Quota Local Cpanel\n  Get Quota Info Cpanel\n\n- SERVER INFO\n  Clear Spam Box\n  Get Bandwidth Account cPanel\n  Get Errors Log cPanel\n\n- SUBDOMAIN\n  Create Subdomain \n\n- BACKUPS\n  Create Full Backup FTP\n  Create Backup Homedir\n  Restaure Backup Full\n\n- FTP CPANEL\n  Change FTP Quote Account\n  Change Password FTP Account\n  Delete FTP Account\n\n- EMAIL\n  Create Email Account cPanel\n  Delete Email Account cPanel\n  Set Password Email Account cPanel\n  List Email Account User\n  Add Spam Filter Email Account SCORE: 8.0\n  Add Forwarder Email Account\n  Suspend Account Email\n  Unsuspend Account Email\n  Verify Password Account Email\n  Trace Delivery Email\n  Get Quote Account Email cPanel\n  Get Spam Filter Email cPanel\n\n- DOMAINS\n  List Domains cPanel User Account\n  List Domains Data cPanel User Account\n  Get Data Domain cPanel User Account\n\n- TOKEN CPANEL\n  Create New Token\n    TIME: 6 = 6 Hours\n  Revoke Token cPanel\n\n- GET USAGES CPANEL ACCOUNT\n\n- GET RESELLERS CPANEL ACCOUNT\n\n- SET LOCALE CPANEL\n\n- EMPTY TRASH ACCOUNT CPANEL\n\n- SSL\n  Auto SSL cPanel Account\n  Auto SSL cPanel Account Problems\n  Auto SSL cPanel Account Excludes\n  Auto SSL cPanel Account Remove Excludes\n\n- GET SIMPLE PASSWORD\n\n- GET SECURE PASSWORD\n\n```\n\n## Contents\n- [Installation Guide](#installation-guide)\n- [Usage](#usage)\n- [Functions](#functions)\n- [Feedback \u0026 Contribution](#feedback-\u0026-contribution)\n\n### Installation Guide\n\nInstall the class in your file\n\nrequire_once(\"cPanelApi.php\");\n\n### Usage\n\nFor example, how to call the function and connect to the cpanel account, example shows the account domains.\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003elistDataDomains();\n\n```\n\n### Functions\n\n# MYSQL\n\nCreate Database MySQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003ecreateDataBaseMySQL(\"DATABASENAME\");\n\n```\n\nCreate User Database MySQL \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003ecreateUserMySQL(\"USERDB\", \"PASSWORD\");\n\n```\n\nSet Privileges DataBase x User\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003esetPrivilegesMySQL(\"DATABASENAME\", \"USERDB\");\n\n```\n\nDelete Database MySQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003edeleteDataBaseMySQL(\"DATABASENAME\");\n\n```\n\nDelete User Database MySQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003edeleteUserMySQL(\"USERDB\");\n\n```\n\nSet Password User Database MySQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003esetPasswordUserMySQL(\"USERDB\", \"NEWPASSWORD\");\n\n```\n\nRename User Database MySQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003erenameUserMySQL(\"USERDB\", \"NEWUSERDB\");\n\n```\n\nCheck Database MySQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003echeckDataBaseMySQL(\"DATABASENAME\");\n\n```\n\nCheck Database MySQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003echeckDataBaseMySQL(\"DATABASENAME\");\n\n```\n\nDUMP Database MySQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003edumpDataBaseMySQL(\"DATABASENAME\");\n\n```\n\n# POSTGRESQL\n\nCreate Database PostgreSQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003ecreateDataBasePostgre(\"DATABASENAME\");\n\n```\n\nCreate User PostgreSQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003ecreateUserPostgre(\"USERDB\", \"PASSWORD\");\n\n```\n\nSet All Privileges Database x User PostgreSQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eallPrivilegesPostgre(\"USERDB\", \"DATABASENAME\");\n\n```\n\nDelete Database PostgreSQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003edeleteDataBasePostgre(\"DATABASENAME\");\n\n```\n\nDelete User PostgreSQL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003edeleteUserPostgre(\"USERDB\");\n\n```\n\n# QUOTA\n\nGet Quota Local Cpanel \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003egetLocalQuota();\n\n```\n\nGet Quota Info Cpanel \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003egetInfoQuota();\n\n```\n\n# SERVER INFO \n\nClear Spam Box \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eclearSpamBox();\n\n```\n\nGet Bandwidth Account cPanel \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003egetBandwidth();\n\n```\n\nGet Errors Log cPanel \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003egetErrors();\n\n```\n\n# SUBDOMAIN \n\nCreate Subdomain \nThe subdomain's document root within the home directory.\nThis value defaults to the user's home directory /public_html/ path\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003ecreateSubdomain(\"SUBDOMAIN\", \"PATH\");\n\n```\n\n# BACKUPS \n\nCreate Full Backup FTP\n\nThis function creates a full backup to the remote server via File Transfer Protocol (FTP). The system creates a file in the backup-MM.DD.YYYY_HH-mm-ss.tar.gz filename format.\nFTPDOMAIN A valid hostname or IP address.\nThe email address to receive a confirmation email when the backup completes.\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eftpBackupFull(\"FTPUSER\", \"FTPPASSWORD\", \"FTPDOMAIN\", \"EMAIL\");\n\n```\nCreate Backup Homedir\n\nThis function creates a full backup to the user's home directory. The system creates a file in the backup-MM.DD.YYYY_HH-mm-ss_username.tar.gz filename format.\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003ecreateBackup();\n\n```\nRestaure Backup Full\n\nThe directory to which to restore the file.\nThis parameter defaults to the user's /home directory.\nThe full directory path for a cPanel account.\nFILEDIR Example: /home/cpuser/backup_cpuser_9-10-2100.tar.gz\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003erestaureBackup(\"FILEDIR\");\n\n```\n\n# FTP CPANEL \n\nCreate Account FTP cPanel \nQUOTA - 0 for Unlimited, 500 = 500mb \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eftpCreate(\"USERFTP\", \"PASSWORDFTP\", \"QUOTA\");\n\n```\n\nUpdate homedir FTP Account\nThe FTP account's home directory.\n\nThis parameter defaults to the user@domain subdirectory in the cPanel account's home directory with the name, where user and domain represent the user and domain parameters.\n\nA relative path from the cPanel account's home directory. example1/\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eftpHomeDir(\"USERFTP\", \"HOMEDIR\");\n\n```\n\nChange FTP Quote Account\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eftpQuota(\"USERFTP\", \"1000\");\n\n```\n\nChange Password FTP Account\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eftpSetPassword(\"USERFTP\", \"NEWPASSWORD\");\n\n```\n\nDelete FTP Account\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eftpDelete(\"USERFTP\");\n\n```\n\n# EMAIL\n\nCreate Email Account cPanel\n\nThe email account username or address.\nA valid email account username. For example, user to create.\nExample: user\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003ecreateEmail(\"USERMAIL\", \"PASSWORD\", \"QUOTA\");\n\n```\n\nDelete Email Account cPanel\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003edeleteEmail(\"USERMAIL\");\n\n```\n\nSet Password Email Account cPanel\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003esetPasswordEmail(\"USERMAIL\", \"NEWPASSWORD\");\n\n```\n\nList Email Account User\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003elistEmail(\"user\");\n\n```\n\nAdd Spam Filter Email Account \nSCORE: 8.0\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eaddSpamFilter(\"user@domain.com\", \"SCORE\");\n\n```\n\nAdd Forwarder Email Account\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eaddForwarder(\"user\", \"emailforwarder@domain.com\");\n\n```\n\nSuspend Account Email\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003esuspendEmail(\"user@domain.com\");\n\n```\n\nUnsuspend Account Email\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eunsuspendEmail(\"user@domain.com\");\n\n```\n\nVerify Password Account Email\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003everifyPasswordEmail(\"user@domain.com\", \"PASSWORD\");\n\n```\n\nTrace Delivery Email\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003etraceDeliveryEmail(\"email@example.com\");\n\n```\n\nGet Quote Account Email cPanel\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003equotaEmail(\"user@domain.com\");\n\n```\n\nGet Spam Filter Email cPanel\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003egetSpamSettings(\"user@domain.com\");\n\n```\n\n# DOMAINS\n\nList Domains cPanel User Account \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003elistDomains();\n\n```\n\nList Domains Data cPanel User Account \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003elistDataDomains();\n\n```\n\nGet Data Domain cPanel User Account \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003elistDataDomains(\"domain.com\");\n\n```\n\n# TOKEN CPANEL \n\nCreate New Token\n \nTIME: 6 = 6 Hours\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003ecreateToken(\"NAMETOKEN\", \"TIME\");\n\n```\n\nRevoke Token cPanel\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003erevokeToken(\"NAMETOKEN\");\n\n```\n\n# GET USAGES CPANEL ACCOUNT \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003egetUsages();\n\n```\n\n# GET RESELLERS CPANEL ACCOUNT \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003egetResellers();\n\n```\n\n# SET LOCALE CPANEL \n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003esetLocale(\"en\");\n\n```\n\n# SET LOCALE CPANEL \nhttps://www.iso.org/iso-3166-country-codes.html\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003esetLocale(\"en\");\n\n```\n\n# EMPTY TRASH ACCOUNT CPANEL\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eemptyTrash(\"31\");\n\n```\n\n# SSL\n\nAuto SSL cPanel Account\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eautoSSL();\n\n```\n\nAuto SSL cPanel Account Problems\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eautoSSLProblems();\n\n```\n\nAuto SSL cPanel Account Excludes\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eautoSSLExclude(\"domain.com\");\n\n```\n\nAuto SSL cPanel Account Remove Excludes\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003eautoSSLRemoveExclude(\"domain.com\");\n\n```\n\n# GET SIMPLE PASSWORD\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003esimple_password();\n\n```\n\n# GET SECURE PASSWORD\n\n```php\n  \u003c?php\n  require_once(\"cPanelApi.php\");\n  $api = new cPanelApi(\"domain.com\",\"user\", \"password\");\n  echo $api-\u003esecure_password();\n\n```\n\n#### Defining Configuration on constructor\nThis is the example when you want to define your configuration while creating new object\n\n```php\n  \u003c?php\n  $api = new cPanelApi(\"domain.com\",\"CPANEL_USER\", \"CPANEL_PASSWORD\");\n```\n\n#### Usage\nFor example, you would like to get some list accounts from cPanel/WHM\n\n\n#### Overriding current configuration\nSomehow, you want to override your current configuration. To do this, here is the code\n\n\n#### Get defined configuration\nAfter you define some of your configuration, you can get it again by calling this functions\n\n\n#### Feedback and contribution\n\nThis package is free and open source, feel free to fork and report some issue to this package. :-). Have fun","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkdevelopement%2Fcpanel-api-simple-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkdevelopement%2Fcpanel-api-simple-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkdevelopement%2Fcpanel-api-simple-php/lists"}