PHPackages                             vdmi/afas-client - 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. vdmi/afas-client

ActivePackage

vdmi/afas-client
================

Afas client for an easy soap connection.

07[1 issues](https://github.com/VDMi/AfasClient/issues)PHP

Since Apr 4Pushed 9y ago1 watchersCompare

[ Source](https://github.com/VDMi/AfasClient)[ Packagist](https://packagist.org/packages/vdmi/afas-client)[ RSS](/packages/vdmi-afas-client/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

AfasClient
==========

[](#afasclient)

AfasClient is a package to make easy soap requests. For now this only supports NuSoap requests and removes NTLM authentication and CURL login. Later on this wil be configurable.

Usage
-----

[](#usage)

First you have to "configure" AfasClient to make a call. You can do this by adding the information in an array in a new AfasClient object.

```
$this->afas = new AfasClient([
      'urlBase' => 'https://example.com/profitservices/',
      'environmentId' => 'YourEnviromentId',
      'useWSDL' => TRUE,
      'userId' => 'YourUserId',
      'password' => 'YourPassword',
    ]);

```

To make the call you have to construct a query. This will be done by chaining functions. The functions you can use are:

- range
- filter
- orderBy
- option

```
$query = $this->afas->get('some_connector')
      ->range(10, 10) // Take 10, Skip 10.
      ->filter('title', 'WIP:%', AfasClient::OP_STARTS_WITH) // Title starts with "WIP:".
      ->orderBy('title', AfasClient::OP_ASC) // Order by title ascending.
      ->option('Outputmode', AfasClient::GET_OUTPUTMODE_ARRAY) // Return array.

```

Finnaly you want to make the call.

```
$result = $query->execute();

```

Installation
------------

[](#installation)

You can install this package with composer by executing `$ composer install vdmi/afas-client`.

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/8a13b24f2b68d178490e1427aabef5176d284653a1eb9a4c8ef5bf156e4447f7?d=identicon)[FransvanderMeer](/maintainers/FransvanderMeer)

---

Top Contributors

[![philipsens](https://avatars.githubusercontent.com/u/12416423?v=4)](https://github.com/philipsens "philipsens (10 commits)")

### Embed Badge

![Health badge](/badges/vdmi-afas-client/health.svg)

```
[![Health](https://phpackages.com/badges/vdmi-afas-client/health.svg)](https://phpackages.com/packages/vdmi-afas-client)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
