org_heigl/lingulab

PHP-Connector to the LinguLab-API

v0.1.0 2017-10-05 11:32 UTC

This package is auto-updated.

Last update: 2024-03-23 08:58:01 UTC


README

is a german service provider for quality-measurements of copytexts.

They have an API that is based on SOAP.

This library tries to wrap that interface and allows you to easily integrate the API into your PHP-based projects.

Installation

This library is beast installed via composer:

composer require org_heigl/lingulab

Usage

$lingulab = new Lingulab(
    $your_lingulab_username,
    $your_lingulab_password
);


$quality = $lingulab->processText($text);