solitweb / directadmin
PHP class for communicating with DirectAdmin API
3.0.2
2020-12-26 16:07 UTC
Requires
- php: ~5.6|~7.0|~8.0
Requires (Dev)
- phpunit/phpunit: ^4.8
This package is auto-updated.
Last update: 2026-02-27 02:58:00 UTC
README
More info on the PHP class: http://forum.directadmin.com/showthread.php?t=258
Installation
You can install this package via Composer using:
composer require solitweb/directadmin
Usage
Basic usage. Get list of users owned by reseller:
$api = new DirectAdmin; $api->connect("domain", 2222); $api->set_login("username", "password"); $api->set_method('GET'); $api->query("/CMD_API_SHOW_USERS"); $api->fetch_parsed_body(); print_r($api);
Credits
License
The MIT License (MIT). Please see License File for more information.