Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ben221199/oxxa-api

A PHP library for the Oxxa API.
https://github.com/ben221199/oxxa-api

api composer oxxa php

Last synced: about 2 months ago
JSON representation

A PHP library for the Oxxa API.

Awesome Lists containing this project

README

        

# Oxxa API (PHP)

Use the Oxxa API in PHP.

## Status

[![Build Status](https://travis-ci.com/ben221199/oxxa-api.svg?branch=master)](https://travis-ci.com/ben221199/oxxa-api)

## Installation

`composer require ben221199/oxxa-api`

## Use

```php
$username = 'myUsername'; // Your API username
$password = 'myPassword'; // Your API password
$useMD5 = true; // When true, password is send in its MD5 form.
$isTesting = false; // When true, payment wil not occur

$oxxaApi = new \Ben221199\Oxxa\API\OxxaAPI('https://api.oxxa.com',$username,$password,$useMD5,$isTesting);

$xml = $oxxaApi->DOMAIN_CHECK([
'sld' => 'myDomain',
'tld' => 'com',
]);
```