neubert/evalanche-interface

This interface is a consistent wrapper arround the SOAP API of Evalanche.

v0.4.0 2021-11-11 10:16 UTC

This package is auto-updated.

Last update: 2024-03-12 03:47:58 UTC


README

Packagist Version License MIT Code Coverage 27% Code Completion 43%

About EvalancheInterface

Note: This is an inofficial wrapper arround the Evalanche API.

This interface is a consistent wrapper arround the SOAP API of Evalanche. It is currently focused on interacting with resources and profiles. (See Support-List) The focus may expand to other features in the future. Feel free to leave a feature request if you miss something.

Getting Started

  • Installation
  • Laravel Integration Planned
  • Basic Usage Planned
  • Documentation Planned

Installation

The recommended way to install the EvalancheInterface is using Composer. To install the latest version just run the following command:

composer require neubert/evalanche-interface

Afterwards you should be able to use the EvalancheInterface within your project, like so:

use Neubert\EvalancheInterface\Facades\Evalanche;

require __DIR__.'/vendor/autoload.php';

Evalanche::setup('username', 'password');

echo "<h1>Sub-Folders</p>";

Evalanche::folder(1234)->getFolders()->each(function ($folder) {
    echo "<p>{$folder->label}</p>";
});

Requirements

Feature Requests

Since this project isn't a complete rebuild of the Evalanche API, you may require some additional methods. Please read the support list for all implemented and planned method calls first.

If something is either not supported or missing feel free to send a feature request.

Issues

Note: For any connection issues ensure at first that your account has the required permissions to execute the request.

For inconsistent behaviors or errors feel free to open up a new issue.

License

The EvalancheInterface is open-sourced software licensed under the MIT license.