PHPackages                             mrvh/esxi-v9-module - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. mrvh/esxi-v9-module

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

mrvh/esxi-v9-module
===================

Lightweight ESXi vSphere SOAP SDK for PHP

00PHP

Since May 20Pushed 2w agoCompare

[ Source](https://github.com/MrVH-IR/esxi-v9-module)[ Packagist](https://packagist.org/packages/mrvh/esxi-v9-module)[ RSS](/packages/mrvh-esxi-v9-module/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (1)DependenciesVersions (1)Used By (0)

ESXI V9 Module In PHP Pure By MRVH - github.com/MrVH-IR

What Can This Module DO ?

Datastore Networks Templates / ISOs VMs Create VMS Power On / Off Delete VM Reset VM VM Status Get VM IP Pre Install: username password cloud-init / preseed / kickstart pre-installed apps (script) Task Monitoring

Login

```
require 'vendor/autoload.php';

use EsxiV9\Client\ESXiClient;
use EsxiV9\Config\Config;

$config = new Config(
    host: '192.168.1.10',
    username: 'root',
    password: 'password'
);

$client = new ESXiClient($config);

$result = $client->auth()->login();
```

Create VM

```
$vm = $client->vm()->create(
    (new VMConfig())
        ->setName('test-vm')
        ->setCpu(2)
        ->setMemory(2048)
        ->setStorage(20)
);
```

ListVM

```
$vm = $vmService->list();

foreach ($vm as $item) {
    if ($item['name'] === 'test-vm') {
        //...
    }
}
```

FindVMS

```
$resolver = $client->vmResolver();
$vmId = $resolver->getIdByName('ubuntu-01');
```

VMService

```
$vmService->powerOff($vmId);
$vmService->powerOn($vmId);
$vmService->reboot($vmId);
```

TO-DO-Next Version

```
Phase 1
    create VM
    list VM
    power on/off
    auth
    datastore list
    network list
Phase 2
    delete VM
    reboot
    guest info
    IP lookup
    task waiting
    ISO mounting
Phase 3
    template clone
    snapshots
    resize disk
    resize RAM/CPU
    cloud-init
    VM customization
Phase 4
    vCenter support
    async queue
    websocket task stream
    multi-host orchestration
    HA support

```

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance63

Regular maintenance activity

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity11

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/59d737fae3dada55407e7a3a68a3104db09ef289f2fc34f0fbbf12fd0893f595?d=identicon)[MrVH-IR](/maintainers/MrVH-IR)

---

Top Contributors

[![MrVH-IR](https://avatars.githubusercontent.com/u/175750251?v=4)](https://github.com/MrVH-IR "MrVH-IR (5 commits)")

### Embed Badge

![Health badge](/badges/mrvh-esxi-v9-module/health.svg)

```
[![Health](https://phpackages.com/badges/mrvh-esxi-v9-module/health.svg)](https://phpackages.com/packages/mrvh-esxi-v9-module)
```

###  Alternatives

[contao/easy-coding-standard

EasyCodingStandard configurations for Contao

12221.3k326](/packages/contao-easy-coding-standard)

PHPackages © 2026

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