qualityunit / liveagent-internal-api-server
Requires
- php: >=7.4.0|>=8.0.2
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- jms/serializer-bundle: ^4.0
- symfony/framework-bundle: ^5.0|^6.0
- symfony/validator: ^5.0|^6.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.16.3
- hoa/regex: ~1.0
- phpunit/phpunit: ^9.5
- symfony/browser-kit: ^5.0|^6.0
- symfony/yaml: ^5.0|^6.0
README
This API is for async event communication
This Symfony bundle is automatically generated by the OpenAPI Generator project:
- API version: 1.0.0
- Package version: 1.0.5
- Build package: org.openapitools.codegen.languages.PhpSymfonyServerCodegen
Requirements
PHP 8.0 and later
Installation & Usage
To install the dependencies via Composer, 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
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
Step 1: Please follow the installation procedure 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:
<?php // src/Acme/MyBundle/Api/EventsApiInterface.php namespace Acme\MyBundle\Api; use Qu\LaInternalApiServer\Api\EventsApiInterface; class EventsApi implements EventsApiInterface // An interface is autogenerated { // Other operation methods ... }
Step 5: Tag your API implementation:
# config/services.yaml services: # ... Acme\MyBundle\Api\EventsApi: tags: - { name: "live_agent_internal_api_server.api", api: "events" } # ...
Now you can start using the bundle!
Documentation for API Endpoints
All URIs are relative to http://localhost/public/api/internal
Documentation For Models
Documentation For Authorization
bearerAuth
- Type: HTTP basic authentication