PHPackages                             pavelpilyak/isp-domain-manager-api - 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. [API Development](/categories/api)
4. /
5. pavelpilyak/isp-domain-manager-api

ActiveLibrary[API Development](/categories/api)

pavelpilyak/isp-domain-manager-api
==================================

ISP API Domain Manager

02PHP

Since Oct 26Pushed 6y ago1 watchersCompare

[ Source](https://github.com/pavelpilyak/isp-domain-manager-api)[ Packagist](https://packagist.org/packages/pavelpilyak/isp-domain-manager-api)[ RSS](/packages/pavelpilyak-isp-domain-manager-api/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependenciesVersions (1)Used By (0)

ISP API Domain Manager
======================

[](#isp-api-domain-manager)

This package can add/remove domains and add DNS records using the ISP API.

Install
-------

[](#install)

- Run `composer require pavelpilyak/isp-domain-manager-api`
- Import the package: `use pavelpilyak\ISPManagerAPI;`

Usage
-----

[](#usage)

Firstly, you need to create the class instance with auth credentials:

```
$ispDomain = 'https://isp.com:1500';
$login     = 'admin';
$password  = 'password';

$manager = new ISPManagerAPI($ispDomain, $login, $password);
```

### Add domain

[](#add-domain)

```
$domain   = 'site.com';
$login    = 'admin@site.com';
$serverIP = '192.100.0.1';

$response = $manager->addDomain($domain, $login, $serverIP); // success, error or unrecognized
```

### Delete domain

[](#delete-domain)

```
$domain = 'site.com';

$response = $manager->deleteDomain($domain); // success, error or unrecognized
```

### Add DNS Record

[](#add-dns-record)

```
$domain = 'site.com';
$subdomain = '@';
$recordType = 'a';
$recordValue = '192.100.0.1';
$serverIp = '192.100.0.1';

$response = $manager->addRecord(
    $domain,
    $subdomain,
    $recordType,
    $recordValue,
    $serverIp
); // success, error or unrecognized
```

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity36

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://avatars.githubusercontent.com/u/11193423?v=4)[pavelpilyak](/maintainers/pavelpilyak)[@pavelpilyak](https://github.com/pavelpilyak)

---

Top Contributors

[![pavelpilyak](https://avatars.githubusercontent.com/u/11193423?v=4)](https://github.com/pavelpilyak "pavelpilyak (1 commits)")

### Embed Badge

![Health badge](/badges/pavelpilyak-isp-domain-manager-api/health.svg)

```
[![Health](https://phpackages.com/badges/pavelpilyak-isp-domain-manager-api/health.svg)](https://phpackages.com/packages/pavelpilyak-isp-domain-manager-api)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

94452.6k6](/packages/botman-driver-telegram)

PHPackages © 2026

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