Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/checkdomain/api-client-php
https://github.com/checkdomain/api-client-php
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/checkdomain/api-client-php
- Owner: checkdomain
- License: mit
- Created: 2018-01-03T14:39:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T15:36:20.000Z (about 7 years ago)
- Last Synced: 2024-11-17T07:48:42.239Z (about 2 months ago)
- Language: PHP
- Size: 890 KB
- Stars: 0
- Watchers: 11
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
# The checkdomain API client for php
A php client for the [Checkdomain Rest API](https://developer.checkdomain.de/).
Visit our [Checkdomain API Guide](https://developer.checkdomain.de/guide) to get a extended version of instructions.
## Setup
##### Via Composer
```
{
"require" : {
"checkdomain/api-client" : "^1.0.0"
}
}
```
## Example
```
post('domains/{domains}/nameservers/records', [
'name' => '@',
'value' => '172.0.0.1',
'ttl' => 180,
'priority' => 0,
'type' => 'A',
]);
var_dump($response);
```
More helpful examples stored at the example folder.
In addition take a look at the [API Reference](https://developer.checkdomain.de/reference/)## Semantic Versioning 2.0.0
We follow the rules of Semantic Versioning 2.0.0 .
### Summary
Given a version number MAJOR.MINOR.PATCH, increment the:MAJOR version when you make incompatible API changes,
MINOR version when you add functionality in a backwards-compatible manner, and
PATCH version when you make backwards-compatible bug fixes.
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.For more informations visit [Semantic Versioning](https://semver.org/).
## License
Copyright (c) 2017 Checkdomain GmbH, This is Free Software distributed under the MIT license.