cloudflare-php
cloudflare-php copied to clipboard
PHP library for the Cloudflare v4 API
Hi guys Will support for the new API tokens be added soon? Thanks!
Fixes the minify configuration for page rules. (See #155 )
Not much to say, I guess it's a copypasta issue. Fixes #156
Hi, I need to get all the settings for a specific zone, like this endpoint [#zone-settings-properties](https://api.cloudflare.com/#zone-settings-properties). Which I initially search for in the ZoneSettings class, but I didn't seems to...
The Cloudflare API supports cache purge by URL, Tags, Hosts, and Prefixes: https://api.cloudflare.com/#zone-purge-files-by-cache-tags,-host-or-prefix This Bundle only supports URL, Tags, and Hosts. Please add support for Prefixes. Without support for purging...
Implementing Prefixes optional parameter for purge_cache route.
This is a PR to fix the issue raised in https://github.com/cloudflare/cloudflare-php/issues/152 which I've also encountered after applying the patch from https://github.com/cloudflare/cloudflare-php/pull/139 to be able to use the WorkersKV endpoints. The...
API endpoints of Workers, particularly the [Workers KV](https://developers.cloudflare.com/workers/runtime-apis/kv) store, are not presently covered by the SDK. PHP backends should be able to read from and write to the Workers KV...
https://api.cloudflare.com/#zone-settings-get-brotli-setting Add following in: cloudflare-php/src/Endpoints/ZoneSettings.php ```PHP public function GetBrotliSetting($zoneID) { $return = $this->adapter->get( 'zones/' . $zoneID . '/settings/brotli' ); $body = json_decode($return->getBody()); if ($body->success) { return $body->result->value; } return false;...