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.
- Installation
Laravel IntegrationPlannedBasic UsagePlannedDocumentationPlanned
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>";
});
- PHP >= 7.3
- php-soap
- Evalanche Soap API Connector >= 1.7 (automatically required via composer)
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.
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.
The EvalancheInterface is open-sourced software licensed under the MIT license.