PHPackages                             a1extran/dns-made-easy - 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. a1extran/dns-made-easy

AbandonedArchivedLibrary

a1extran/dns-made-easy
======================

PHP wrapper for the Dns Made Easy API.

1.1.1(11y ago)1933.7k↑33.3%10[1 PRs](https://github.com/byalextran/DnsMadeEasy/pulls)PHPPHP &gt;=5.3.0

Since Aug 28Pushed 11y ago7 watchersCompare

[ Source](https://github.com/byalextran/DnsMadeEasy)[ Packagist](https://packagist.org/packages/a1extran/dns-made-easy)[ Docs](http://github.com/byalextran/DnsMadeEasy)[ RSS](/packages/a1extran-dns-made-easy/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (5)Used By (0)

### Example Usage

[](#example-usage)

#### Create an instance of the DnsMadeEasy class

[](#create-an-instance-of-the-dnsmadeeasy-class)

```
// log into your DNS Made Easy account to generate/obtain your API key and secret key.
// specify TRUE for the last parameter if you want to make test API calls.
$dme = new DnsMadeEasy('yourApiKey', 'yourSecretKey', TRUE);
```

#### Adding a domain

[](#adding-a-domain)

```
$result = $dme->domains->add('foobar.com');

if ($errors = $result->errors()) {
	print_r($errors);
}
else {
	// outputs the raw results
	print_r($result->rawBody());

	// grab the JSON decoded results.
	// use TRUE to return an associative array, FALSE to return an object.
	$domain = $result->body(FALSE);

	// output the name servers associated with this domain.
	print_r($domain->nameServer);
}
```

#### Adding a DNS record

[](#adding-a-dns-record)

```
$record = array(
	'name' => '',
	'type' => 'A',
	'data' => '2.4.8.16',
	'ttl' => 1800,
);

$result = $dme->records->add('foobar.com', $record);

if ($errors = $result->errors()) {
	print_r($errors);
}
else {
	// grab the JSON decoded results.
	// use TRUE to return an associative array, FALSE to return an object.
	$record = $result->body(FALSE);

	// output the assigned record ID
	print_r($record->id);
}
```

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity38

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 66.7% 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 ~307 days

Total

4

Last Release

4090d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/160350d1746dcb08dec37b6593784690a19070924036c81a1956b374016c83ce?d=identicon)[byalextran](/maintainers/byalextran)

---

Top Contributors

[![phred](https://avatars.githubusercontent.com/u/11079?v=4)](https://github.com/phred "phred (2 commits)")[![taylorotwell](https://avatars.githubusercontent.com/u/463230?v=4)](https://github.com/taylorotwell "taylorotwell (1 commits)")

### Embed Badge

![Health badge](/badges/a1extran-dns-made-easy/health.svg)

```
[![Health](https://phpackages.com/badges/a1extran-dns-made-easy/health.svg)](https://phpackages.com/packages/a1extran-dns-made-easy)
```

PHPackages © 2026

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