PHPackages                             dolalima/laravel-dns-facade - 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. dolalima/laravel-dns-facade

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

dolalima/laravel-dns-facade
===========================

Dns Facade for Laravel framework

1.11.2(1y ago)13[5 issues](https://github.com/dolalima/laravel-dns-facade/issues)MITPHPPHP ^8.2

Since Dec 12Pushed 1y ago1 watchersCompare

[ Source](https://github.com/dolalima/laravel-dns-facade)[ Packagist](https://packagist.org/packages/dolalima/laravel-dns-facade)[ RSS](/packages/dolalima-laravel-dns-facade/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (6)Versions (9)Used By (0)

Laravel DNS Facade
==================

[](#laravel-dns-facade)

---

[![Latest Stable Version](https://camo.githubusercontent.com/5f63febfa40845805844e04680ebdeadcb924142c4ea410351f7d1b1f5e7a408/687474703a2f2f706f7365722e707567782e6f72672f646f6c616c696d612f6c61726176656c2d646e732d6661636164652f76)](https://packagist.org/packages/dolalima/laravel-dns-facade)[![Total Downloads](https://camo.githubusercontent.com/7f08143041e39321d7aed5d956e294e8bc0593be3412bed595b277c2a3d36254/687474703a2f2f706f7365722e707567782e6f72672f646f6c616c696d612f6c61726176656c2d646e732d6661636164652f646f776e6c6f616473)](https://packagist.org/packages/dolalima/laravel-dns-facade)[![Latest Unstable Version](https://camo.githubusercontent.com/a9ee59b3e2c2800b21b5e9d360c5a48b6ffbea0f679e2a76036081b4674cefee/687474703a2f2f706f7365722e707567782e6f72672f646f6c616c696d612f6c61726176656c2d646e732d6661636164652f762f756e737461626c65)](https://packagist.org/packages/dolalima/laravel-dns-facade)[![License](https://camo.githubusercontent.com/773a0d345e19dd377432a028fd93705b2373013a5cbfa32e59bd09e78624d256/687474703a2f2f706f7365722e707567782e6f72672f646f6c616c696d612f6c61726176656c2d646e732d6661636164652f6c6963656e7365)](https://packagist.org/packages/dolalima/laravel-dns-facade)[![PHP Version Require](https://camo.githubusercontent.com/f495717691fc0b3723f93dd0e6818c88bf94f4ff93cc7b9bab6cbd353534a7b0/687474703a2f2f706f7365722e707567782e6f72672f646f6c616c696d612f6c61726176656c2d646e732d6661636164652f726571756972652f706870)](https://packagist.org/packages/dolalima/laravel-dns-facade)

This package provides a DNS facade for the Laravel framework, allowing you to manage DNS records using different DNS providers.
Installation

Install the package via Composer:
---------------------------------

[](#install-the-package-via-composer)

```
composer require dolalima/laravel-dns-facade
```

Publish the dns provider configuration file:
--------------------------------------------

[](#publish-the-dns-provider-configuration-file)

```
php artisan vendor:publish --tag=config
```

Add the service provider to the providers array in config/app.php:
------------------------------------------------------------------

[](#add-the-service-provider-to-the-providers-array-in-configappphp)

If you are using Laravel 5.5 or later, you can skip this step, as the package will be auto-discovered.

```
'providers' => [
// Other service providers...
Dolalima\Laravel\Dns\Providers\DnsServiceProvider::class,
],
```

Configuration
-------------

[](#configuration)

After publishing the configuration file, you can configure the package by editing the config/dns.php file.

### List Zones

[](#list-zones)

```
use Dolalima\Laravel\Dns\Facades\Dns;
$zones = Dns::zones();

or

Dns::provider('cloudflare')->zones();
```

### Find Zone

[](#find-zone)

```
use Dolalima\Laravel\Dns\Facades\Dns;
$zone = Dns::zone('example.com');
```

### List Records

[](#list-records)

```
use Dolalima\Laravel\Dns\Facades\Dns;
$zone = Dns::zone('example.com');
$records = Dns::records($zone);

or

$records = $zone->records();
```

### Create Record

[](#create-record)

```
use Dolalima\Laravel\Dns\Facades\Dns;
$zone = Dns::zone('example.com');
$record = Dns::create($zone, 'A', 'www');
```

### Delete Record

[](#delete-record)

```
use Dolalima\Laravel\Dns\Facades\Dns;
$zone = Dns::zone('example.com');
$result = Dns::delete($zone,'www');
```

### Abilities

[](#abilities)

- List Zones
- Find Zone
- List Records
- Create Record
- Update Record
- Delete Record

Available DNS Drivers
---------------------

[](#available-dns-drivers)

- AWS Route 53
- Cloudflare
- DigitalOcean (not implemented yet)
- Google Cloud DNS (not implemented yet)

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 92.3% 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 ~13 days

Recently: every ~2 days

Total

6

Last Release

502d ago

Major Versions

0.1.1 → 1.9.02025-02-11

PHP version history (2 changes)0.1.1PHP ^8.2

1.9.0PHP ^8.0.2

### Community

Maintainers

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

---

Top Contributors

[![Dola-LTI](https://avatars.githubusercontent.com/u/73137345?v=4)](https://github.com/Dola-LTI "Dola-LTI (24 commits)")[![dolalima](https://avatars.githubusercontent.com/u/775779?v=4)](https://github.com/dolalima "dolalima (2 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/dolalima-laravel-dns-facade/health.svg)

```
[![Health](https://phpackages.com/badges/dolalima-laravel-dns-facade/health.svg)](https://phpackages.com/packages/dolalima-laravel-dns-facade)
```

###  Alternatives

[akeneo/pim-community-dev

Akeneo PIM, the future of catalog management is open!

1.0k624.1k85](/packages/akeneo-pim-community-dev)[altis/core

Core module for Altis

19228.0k3](/packages/altis-core)[ellaisys/aws-cognito

Laravel Authentication using AWS Cognito (Web and API)

123256.9k1](/packages/ellaisys-aws-cognito)[napp/xray-laravel

AWS X-Ray for Laravel applications.

62436.7k](/packages/napp-xray-laravel)[foxxmd/laravel-elasticbeanstalk-cron

Ensure only one Laravel instance is running CRON jobs in an EB environment

62311.8k](/packages/foxxmd-laravel-elasticbeanstalk-cron)[keboola/storage-api-client

Keboola Storage API PHP Client

10405.9k40](/packages/keboola-storage-api-client)

PHPackages © 2026

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