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

https://github.com/milankyncl/php-ares-api

PHP ARES API
https://github.com/milankyncl/php-ares-api

api ares php

Last synced: 5 months ago
JSON representation

PHP ARES API

Awesome Lists containing this project

README

        

# PHP Ares API

## Install

```
composer require milankyncl/ares-api dev-master
```

## How to use ?

```php

use MilanKyncl\AresAPI;

...

$ares = new AresAPI();

$subject = $ares->findByIN('123456'); // Identification number of subject

$subjects = $ares->findByName('Name'); // Name of subject

```