cloudflare-php
cloudflare-php copied to clipboard
Add support for Certificate Transparency Monitoring
This patch add two new methods for getting and updating the beta feature Certificate Transparency Monitoring configuration.
Usage:
Enable:
$certificates->updateCertificateTransparencyMonitoring($zoneId, true, ['[email protected]','[email protected]']);
Disable:
$certificates->updateCertificateTransparencyMonitoring($zoneId, false);
Get existing configuration:
$certificates->getCertificateTransparencyMonitoring($zoneId);