PHPackages                             qualityunit/liveagent-internal-api-server - 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. qualityunit/liveagent-internal-api-server

ActiveLibrary[API Development](/categories/api)

qualityunit/liveagent-internal-api-server
=========================================

1.0.13(2y ago)0163unlicensePHPPHP &gt;=7.4.0|&gt;=8.0.2

Since Mar 19Pushed 2y ago1 watchersCompare

[ Source](https://github.com/QualityUnit/LiveAgent-Internal-Api-server)[ Packagist](https://packagist.org/packages/qualityunit/liveagent-internal-api-server)[ Docs](https://openapi-generator.tech)[ RSS](/packages/qualityunit-liveagent-internal-api-server/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (7)Dependencies (8)Versions (6)Used By (0)

LiveAgentInternalApiServer
==========================

[](#liveagentinternalapiserver)

This API is for async event communication

This [Symfony](https://symfony.com/) bundle is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.0.0
- Package version: 1.0.5
- Build package: org.openapitools.codegen.languages.PhpSymfonyServerCodegen

Requirements
------------

[](#requirements)

PHP 8.0 and later

Installation &amp; Usage
------------------------

[](#installation--usage)

To install the dependencies via [Composer](http://getcomposer.org/), add the following repository to `composer.json` of your Symfony project:

```
{
    "repositories": [{
        "type": "path",
        "url": "//Path to your generated openapi bundle"
    }],
}
```

Then run:

```
composer require qualityunit/liveagent-internal-api-server:dev-master

```

to add the generated openapi bundle as a dependency.

Tests
-----

[](#tests)

To run the unit tests for the generated bundle, first navigate to the directory containing the code, then run the following commands:

```
composer install
./vendor/bin/phpunit

```

Getting Started
---------------

[](#getting-started)

Step 1: Please follow the [installation procedure](#installation--usage) first.

Step 2: Enable the bundle in the bundle configuration:

```
// app/config/bundles.php
return [
    // ...
    Qu\LaInternalApiServer\LiveAgentInternalApiServerBundle::class => ['all' => true],
];
```

Step 3: Register the routes:

```
# app/config/routes.yaml
live_agent_internal_api_server:
    resource: "@LiveAgentInternalApiServerBundle/Resources/config/routing.yaml"
```

Step 4: Implement the API calls:

```
