PHPackages                             cuteminded/directadmin-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. cuteminded/directadmin-laravel

ActiveLibrary

cuteminded/directadmin-laravel
==============================

Run DirectAdmin commands through your laravel application

V3.0.0(9mo ago)04MITPHPCI passing

Since Nov 23Pushed 9mo agoCompare

[ Source](https://github.com/Cuteminded/directadmin-laravel)[ Packagist](https://packagist.org/packages/cuteminded/directadmin-laravel)[ RSS](/packages/cuteminded-directadmin-laravel/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (7)Dependencies (1)Versions (9)Used By (0)

directadmin-laravel
===================

[](#directadmin-laravel)

Run DirectAdmin commands through your laravel application

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require cuteminded/directadmin-laravel
```

Add the Service Provider and Facade to your `app.php` config file if you're not using Package Discovery.

```
// config/app.php

'providers' => [
    ...
    cuteminded\DirectadminLaravel\DirectAdminServiceProvider::class,
    ...
];

'aliases' => [
    ...
    'DirectAdmin' => cuteminded\DirectadminLaravel\DirectAdmin::class,
    ...
];
```

Publish the config file using the artisan CLI tool:

```
php artisan vendor:publish --provider="cuteminded\DirectadminLaravel\DirectAdminServiceProvider"
```

.env keys

```
DIRECTADMIN_HOST=""
DIRECTADMIN_DOMAIN=""
DIRECTADMIN_USERNAME=""
DIRECTADMIN_PASSWORD=""
DIRECTADMIN_CACERT="cacert.pem"
```

Usage
-----

[](#usage)

Test the connection

```
Directadmin::checkConnection();
```

Current domain Information

```
Directadmin::domainInformation();
```

List User statistics

```
Directadmin::UserStatistics();
```

List email accounts of current domain

```
Directadmin::emailInformation();
```

List system information from a DirectAdmin server

```
Directadmin::systemInformation();
```

Domain pointers

```
// add a new pointer
Directadmin::createDomainPointer('example.com',true);

//remove a pointer
Directadmin::removeDomainPointer('example.com',true);
```

- **$pointer** (string): The domain name to be added as a pointer.
- **$alias** (boolean, optional, default: true): Determines whether the pointer should be treated as an alias or not.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance60

Regular maintenance activity

Popularity3

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 95% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~87 days

Recently: every ~134 days

Total

8

Last Release

284d ago

Major Versions

V1.1.1 → V2.0.02024-02-27

V2.0.2 → V3.0.02025-07-29

### Community

Maintainers

![](https://www.gravatar.com/avatar/a218bd0c50740b182ae81dc2ca934a82f3ac08d386295866110768b41adeb3c4?d=identicon)[Cuteminded](/maintainers/Cuteminded)

---

Top Contributors

[![Cuteminded](https://avatars.githubusercontent.com/u/23005387?v=4)](https://github.com/Cuteminded "Cuteminded (19 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")

---

Tags

directadminlaravellaravel-package

### Embed Badge

![Health badge](/badges/cuteminded-directadmin-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/cuteminded-directadmin-laravel/health.svg)](https://phpackages.com/packages/cuteminded-directadmin-laravel)
```

###  Alternatives

[fumeapp/modeltyper

Generate TypeScript interfaces from Laravel Models

196277.9k](/packages/fumeapp-modeltyper)[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61214.2k26](/packages/slowlyo-owl-admin)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
