https://github.com/bytesview/followerauditapi-php
FollowerAudit API PHP Client
https://github.com/bytesview/followerauditapi-php
Last synced: 5 months ago
JSON representation
FollowerAudit API PHP Client
- Host: GitHub
- URL: https://github.com/bytesview/followerauditapi-php
- Owner: bytesview
- License: gpl-3.0
- Created: 2022-11-15T09:35:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-15T17:13:04.000Z (over 3 years ago)
- Last Synced: 2025-01-30T08:04:24.803Z (over 1 year ago)
- Language: PHP
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

#
FollowerAudit PHP bindings
The FollowerAudit PHP library provides convenient access to the FollowerAudit API from applications written in the PHP language. It includes a pre-defined set of classes for API resources that initialize themselves dynamically from API responses which makes it compatible with a wide range of versions of the FollowerAudit API.
[](https://github.com/bytesview/followerauditapi-php/blob/main/LICENSE)
## Requirements
PHP 7.0 and later.
## Composer
You can install the bindings via [Composer](http://getcomposer.org/). Run the following command:
```bash
composer require faudit/fauditapi
```
## Manual Installation
If you do not wish to use Composer, you can download the [latest release](https://github.com/bytesview/followerauditapi-php/releases). Then, to use the bindings, include the `autoload.php` file.
```php
require_once('/path/to/followerauditapi-php/autoload.php');
```
## Dependencies
The bindings require the following extensions in order to work properly:
- [`curl`](https://secure.php.net/manual/en/book.curl.php), although you can use your own non-cURL client if you prefer
- [`json`](https://secure.php.net/manual/en/book.json.php)
If you use Composer, these dependencies should be handled automatically. If you install manually, you'll want to make sure that these extensions are available.
## Documentation
See the [API docs](https://www.followeraudit.com/docs/).