Geen omschrijving

Junade 67c34b789e Revert "MX records need ability to set priority" 6 jaren geleden
src 67c34b789e Revert "MX records need ability to set priority" 6 jaren geleden
tests fe854e1b21 Update zone tests to reflect correctly named jumpstart option 6 jaren geleden
.gitignore a49c655e77 Initial commit, WIP. 7 jaren geleden
.php_cs cebeae15a3 Inconsistent Array Declaration 7 jaren geleden
.travis.yml feecc9fcbb Added lint target as php-cs-fixer only returns a non-zero exit code during dry run now 7 jaren geleden
CONTRIBUTING.md d8b2093eed Create CONTRIBUTING.md 7 jaren geleden
LICENSE 3b028041a6 Additional DNS API coverage, PHPUnit whitelist and license added. 7 jaren geleden
Makefile ca9e5bbc28 Enabled PHPMD for src and tests 7 jaren geleden
README.md 8ee1bbcc6f Update README.md 7 jaren geleden
composer.json 68a26e7e77 Comma correction 7 jaren geleden
phpunit.xml 3b028041a6 Additional DNS API coverage, PHPUnit whitelist and license added. 7 jaren geleden

README.md

Cloudflare SDK (v4 API Binding for PHP 7)

Build Status

Installation

The recommended way to install this package is via the Packagist Dependency Manager (cloudflare/sdk). You can specific usage examples on the Cloudflare Knowledge Base under: Cloudflare PHP API Binding

Cloudflare API version 4

The Cloudflare API can be found here. Each API call is provided via a similarly named function within various classes in the Cloudflare\API\Endpoints namespace:

Note that this repository is currently under development, additional classes and endpoints being actively added.

Getting Started

$key     = new Cloudflare\API\Auth\APIKey('user@example.com', 'apiKey');
$adapter = new Cloudflare\API\Adapter\Guzzle($key);
$user    = new Cloudflare\API\Endpoints\User($adapter);
    
echo $user->getUserID();

Contributions

We welcome community contribution to this repository. CONTRIBUTING.md will help you start contributing.

Licensing

Licensed under the 3-clause BSD license. See the LICENSE file for details.