solitweb / directadmin
PHP class for communicating with DirectAdmin API
Installs: 9 303
Dependents: 3
Suggesters: 0
Security: 0
Stars: 5
Watchers: 5
Forks: 3
Open Issues: 1
Requires
- php: ~5.6|~7.0|~8.0
Requires (Dev)
- phpunit/phpunit: ^4.8
This package is auto-updated.
Last update: 2024-10-27 00:11:19 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.