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
- Host: GitHub
- URL: https://github.com/milankyncl/php-ares-api
- Owner: milankyncl
- License: mit
- Created: 2018-03-16T12:00:47.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-01-08T19:37:51.000Z (over 1 year ago)
- Last Synced: 2024-11-09T13:08:48.476Z (6 months ago)
- Topics: api, ares, php
- Language: PHP
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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```