PHPackages                             guilty/apsis - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. guilty/apsis

ActiveLibrary[API Development](/categories/api)

guilty/apsis
============

APSIS PHP API Client

1.1.0(6y ago)39902MITPHPPHP ^7.2

Since Jan 12Pushed 4y ago1 watchersCompare

[ Source](https://github.com/guilty-as/apsis-api)[ Packagist](https://packagist.org/packages/guilty/apsis)[ Docs](https://github.com/guilty-as/apsis)[ RSS](/packages/guilty-apsis/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (5)Dependencies (2)Versions (6)Used By (0)

APSIS PHP API Client
====================

[](#apsis-php-api-client)

[![Latest Version on Packagist](https://camo.githubusercontent.com/63df8c9ff016f1dd9589c44284d097833f0750dc9bda9a3a8912fe03f2227acf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6775696c74792f61707369732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/guilty/apsis)[![Total Downloads](https://camo.githubusercontent.com/1ea0f3ae2a9a28ccb0894b705729b63f8d5c7cbf17ddd6fb4cfc8204d9c10460/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6775696c74792f61707369732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/guilty/apsis)

APSIS API client, used for interacting with the [APSIS](https://www.apsis.com/) API:

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require guilty/apsis
```

Laravel
-------

[](#laravel)

This package is compatible with Laravel

You can publish the config file like so

```
php artisan vendor:publish --provider="Guilty\Apsis\ApsisServiceProvider" --tag="config"

```

This is the contents of the published config file:

```
return [
    /*
     * This is the API key for your APSIS account.
     * Read how to generate an api key here:
     * http://se.apidoc.anpdm.com/Help/GettingStarted/Getting%20started
     */
    "api_key" => env("APSIS_API_KEY")
];
```

To get started, add the following environment variable to your .env file:

```
APSIS_API_KEY="your-api-key"

```

You can use the facade like so:

```
