PHPackages                             sanduhrs/metis-soap-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. sanduhrs/metis-soap-client

ActiveLibrary

sanduhrs/metis-soap-client
==========================

The Metis (VG Wort) soap api client implementation.

1.0.0(5y ago)05.4kGPL-2-or-laterPHP

Since Sep 19Pushed 5y ago1 watchersCompare

[ Source](https://github.com/sanduhrs/php-metis-soap-client)[ Packagist](https://packagist.org/packages/sanduhrs/metis-soap-client)[ RSS](/packages/sanduhrs-metis-soap-client/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (2)Versions (4)Used By (0)

Metis SOAP client
=================

[](#metis-soap-client)

This library provides an PHP implementation of the Metis Soap service.

Metis is a service provided by VG WORT - Verwertungsgesellschaft Wort - to enable authors and publishers to count the usage of documents published to the internets.

Standards
---------

[](#standards)

- PSR-1: Basic Coding Standard
- PSR-4: Improved Autoloading
- PSR-12: Extended Coding Style Guide

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

[](#installation)

```
composer require sanduhrs/metis-soap-client

```

Usage examples
--------------

[](#usage-examples)

### Initialization

[](#initialization)

```
use sanduhrs\Metis\MetisClientFactory;

$login = $_ENV['METIS_LOGIN'];
$password = $_ENV['METIS_PASSWORD'];

$client = MetisClientFactory::factory(
  'https://tom.vgwort.de/services/1.0/pixelService.wsdl',
  [
    'login' => $login,
    'password' => $password,
  ]
);

```

### Order pixel(s)

[](#order-pixels)

```
$count = 1;
$response = $client->orderPixel(new OrderPixelRequest($count));

$response->getDomain(); // vg00.met.vgwort.de
$response->getOrderDateTime(); // 197001010000
foreach ($response->getPixels() as $pixel) {
  $pixel->getPublicIdentificationId();  // 9dde9503649dh46xc89dk682422686e7
  $pixel->getPrivateIdentificationId(); // 463fbf719dd96er77kla97622po27185
}

```

### Pixel overview

[](#pixel-overview)

```
$offset = 0;
$type = 'MINDESTZUGRIFF';
$response = $client->pixelOverview(new PixelOverviewRequest($offset, $type));

$response->getOffset; // 0
$response->getAmount; // 6
foreach ($response->getPrivateIdentificationId() as $privateIdentificationId) {
  $privateIdentificationId; // e8cf1jd89ie34ok56nh21sd876adf536
}

```

License
-------

[](#license)

PHP Metis SOAP client Copyright (C) 2020 Stefan Auditor

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

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.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

2061d ago

Major Versions

0.2.0 → 1.0.02020-09-19

### Community

Maintainers

![](https://www.gravatar.com/avatar/aa2ff904de5103db566586d7d9a4823294ff01e75bb9a1c15bc8e1cfa28e6ef4?d=identicon)[sanduhrs](/maintainers/sanduhrs)

---

Top Contributors

[![sanduhrs](https://avatars.githubusercontent.com/u/107764?v=4)](https://github.com/sanduhrs "sanduhrs (7 commits)")

### Embed Badge

![Health badge](/badges/sanduhrs-metis-soap-client/health.svg)

```
[![Health](https://phpackages.com/badges/sanduhrs-metis-soap-client/health.svg)](https://phpackages.com/packages/sanduhrs-metis-soap-client)
```

###  Alternatives

[codedredd/laravel-soap

A SoapClient wrapper integration for Laravel

221516.6k3](/packages/codedredd-laravel-soap)

PHPackages © 2026

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