Note: This library is under active development as I expand it to cover Cloudflare API. Consider the public API of this package a little unstable as I work towards a v1.0. See Coverage.

DNSSEC

DNS Security Extensions (DNSSEC) adds an extra layer of authentication to DNS, ensuring requests are not routed to a spoofed domain.

Cloudflare API docs

Details

Details about DNSSEC status and configuration.

php
$response = $client->zones()->dnssec()->details('zone_id');

Update

Enable or disable DNSSEC.

php
$response = $client->zones()
    ->dnssec()
    ->update('zone_id', status: 'active', multiSigner: false, presigned: false);

Delete

Delete DNSSEC records

php
$response = $client->zones()->dnssec()->delete('zone_id');
Table of Contents