PHPackages                             graze/wipotec-checkweigher-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. graze/wipotec-checkweigher-client

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

graze/wipotec-checkweigher-client
=================================

Wipotec checkweigher client written in PHP

v1.2.3(5y ago)118.3k↓28.8%[1 issues](https://github.com/graze/wipotec-checkweigher-client/issues)MITPHPPHP &gt;=5.5CI failing

Since Mar 13Pushed 5y ago10 watchersCompare

[ Source](https://github.com/graze/wipotec-checkweigher-client)[ Packagist](https://packagist.org/packages/graze/wipotec-checkweigher-client)[ Docs](https://github.com/graze/wipotec-checkweigher-client)[ RSS](/packages/graze-wipotec-checkweigher-client/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (8)Dependencies (6)Versions (10)Used By (0)

Wipotec Checkweigher Client
===========================

[](#wipotec-checkweigher-client)

[![Latest Version on Packagist](https://camo.githubusercontent.com/db28f6b93c04b0864b5cc91ba3ed632ddc3f979709e3f2f6ef1321d743a4c750/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6772617a652f7769706f7465632d636865636b776569676865722d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/graze/wipotec-checkweigher-client)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)[![Build Status](https://camo.githubusercontent.com/8853a3271294a20b355715181929a89d4de7c75b668b87210a702fc54f4a04b6/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6772617a652f7769706f7465632d636865636b776569676865722d636c69656e742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/graze/wipotec-checkweigher-client)[![Coverage Status](https://camo.githubusercontent.com/35fb308cc2cfe8569ab4fb57ca867299b2ba9551c2291cffe52c2ff4beb263c4/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6772617a652f7769706f7465632d636865636b776569676865722d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/graze/wipotec-checkweigher-client/code-structure)[![Quality Score](https://camo.githubusercontent.com/629ab7108d77892a27afec30ab75c3d3de31202143dd471be3b731a52d980e22/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6772617a652f7769706f7465632d636865636b776569676865722d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/graze/wipotec-checkweigher-client)[![Total Downloads](https://camo.githubusercontent.com/c9f518bd3b422a59e67c0056e54659bd14b641439af556ddc671709bde320d9d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6772617a652f7769706f7465632d636865636b776569676865722d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/graze/wipotec-checkweigher-client)

Wipotec checkweigher client written in PHP.

Install
-------

[](#install)

Via Composer

```
$ composer require graze/wipotec-checkweigher-client
```

Usage
-----

[](#usage)

### Instantiating a client

[](#instantiating-a-client)

Use the `factory` method to return a `Client` instance:

```
$client = \Graze\WipotecCheckweigherClient\Client::factory();
...
```

### Sending requests

[](#sending-requests)

Connect to the remote checkweigher using the `connect` method:

```
...
$dsn = '127.0.0.1:55001';
$client->connect($dsn);
...
```

Once connected, the `sendRequest` method can be used to send requests to the checkweigher:

```
...
$request = new \Graze\WipotecCheckweigherClient\Request\RequestSetArticle();
$request->setArticleParam(Parameter::NAME, $articleName);
$request->setArticleParam(Parameter::NUMBER, $articleNumber);
$response = $client->sendRequest($request);
...
```

### Responses

[](#responses)

If a corresponding response class exists (in `\Graze\Wipotec\Response\`) for a request then it will be used, otherwise the `ResponseGeneric` will be returned.

All responses have the following methods:

```
/**
 * Whether an error was returned.
 *
 * @return bool
 */
public function hasError();

/**
 * Get the error message.
 *
 * @return string
 */
public function getError();

/**
 * Get the raw response as an array.
 *
 * @return mixed[]
 */
public function getContents();
```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
make build test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Brendan Kay](https://github.com/brendankay)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity64

Established project with proven stability

 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 ~125 days

Recently: every ~216 days

Total

9

Last Release

2022d ago

PHP version history (2 changes)v1.0.0PHP &gt;=5.6

v1.1.0PHP &gt;=5.5

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/637788?v=4)[graze.com](/maintainers/graze)[@graze](https://github.com/graze)

---

Top Contributors

[![brendankay](https://avatars.githubusercontent.com/u/641490?v=4)](https://github.com/brendankay "brendankay (17 commits)")

---

Tags

grazewipoteccheckweigher

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/graze-wipotec-checkweigher-client/health.svg)

```
[![Health](https://phpackages.com/badges/graze-wipotec-checkweigher-client/health.svg)](https://phpackages.com/packages/graze-wipotec-checkweigher-client)
```

###  Alternatives

[graze/telnet-client

Telnet client written in PHP

48242.5k4](/packages/graze-telnet-client)

PHPackages © 2026

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