PHPackages                             kibi/druckerwolke - 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. kibi/druckerwolke

ActivePackage

kibi/druckerwolke
=================

Druckerwolke is a PHP class for cloud printing PDF Documents using Druckerwolke.de

1.0.0(3y ago)011mitPHP

Since Jun 19Pushed 3y ago1 watchersCompare

[ Source](https://github.com/paulkirchbichler/druckerwolke)[ Packagist](https://packagist.org/packages/kibi/druckerwolke)[ RSS](/packages/kibi-druckerwolke/feed)WikiDiscussions main Synced yesterday

READMEChangelog (1)DependenciesVersions (2)Used By (0)

druckerwolke
============

[](#druckerwolke)

Druckerwolke is a PHP class for cloud printing PDF Documents using Druckerwolke.de

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

[](#installation)

with [Composer](https://packagist.org/packages/kibi/druckerwolke)

`composer require kibi/druckerwolke`

via require (download current release manually)

```
require_once('path/to/src/Druckerwolke.class.php');
```

Sample usage
------------

[](#sample-usage)

```
$username = 'XXX';
$password = 'XXXXXXXXXX';
$api_key = 'XXXXXXXX-XXXX-MXXX-NXXX-XXXXXXXXXXXX';

$druckerwolke = Druckerwolke($username, $password, $api_key);

$printers = $druckerwolke->printers();

// SELECT THE PRINTER

$printer_id = $printers[0]->Id; //we are using the first printer

// UPLOAD A FILE USING $file_content OR $file_url

$pdfName = 'document.pdf';
$file_content = file_get_contents('path/to/document.pdf');
$file_url = 'https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf';

$data = [
	'FileName' => $pdfName,
	'MimeType' => 'application/pdf',
//	'FileDataUri' => $file_url,
	'FileDataBase64' => base64_encode($file_content),
	'JobName' => 'Printing: '.$pdfName,
	'DocumentVersion' => 0,
	'InputQueueId' => $printer_id,
	'FileSize' => 0,
	'JobSettings' => [
		'PageOrientation' => 0
	],
	'AdditionalParameters' => []
];

$result = $druckerwolke->add_document($data);
```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

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

Unknown

Total

1

Last Release

1421d ago

### Community

Maintainers

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

---

Top Contributors

[![paulkirchbichler](https://avatars.githubusercontent.com/u/18445701?v=4)](https://github.com/paulkirchbichler "paulkirchbichler (6 commits)")

### Embed Badge

![Health badge](/badges/kibi-druckerwolke/health.svg)

```
[![Health](https://phpackages.com/badges/kibi-druckerwolke/health.svg)](https://phpackages.com/packages/kibi-druckerwolke)
```

PHPackages © 2026

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