PHPackages                             miralsoft/weclapp-customer-export - 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. miralsoft/weclapp-customer-export

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

miralsoft/weclapp-customer-export
=================================

Exporter for customers from weclapp.

v1.2(4mo ago)08proprietaryPHPPHP &gt;=7.4.0

Since Jan 13Pushed 4mo ago1 watchersCompare

[ Source](https://github.com/MIRAL-Soft/weclapp-customer-export)[ Packagist](https://packagist.org/packages/miralsoft/weclapp-customer-export)[ RSS](/packages/miralsoft-weclapp-customer-export/feed)WikiDiscussions main Synced 4w ago

READMEChangelog (3)Dependencies (2)Versions (4)Used By (0)

weclapp-customer-export
=======================

[](#weclapp-customer-export)

Export customers from weclapp with the weclapp PHP api.

How to use
==========

[](#how-to-use)

You can download the Package over composer with following line in composer File:

```
"require": {
    "php": ">=7.4.0",
    "miralsoft/weclapp-api": "v1.*",
    "miralsoft/doctrine-extensions": "dev-master",
    "miralsoft/weclapp-customer-export": "v1.*"
}

```

Configuration
=============

[](#configuration)

The configuration have to been set in your PHP-Project. You must define 2 constants like this:

```
use miralsoft\weclapp\api\Config;

Config::$URI = 'https://xxx.weclapp.com/webapp/api/v1/';
Config::$TOKEN = 'xxx';

```

Replace the xxx with your own data.

Call the export
===============

[](#call-the-export)

With following code you can call the export:

```
$export = new Export();
$csvData = $export->exportDatevOnline();

```

Here you get the array for the csv file.

```
$export = new Export(true);
$csvData = $export->exportDatevOnline();

```

Here it will be created a csv file in your actual path with the filename 'datevExport.csv'.

```
$export = new Export(true, 'export', 'filename.csv');
$csvData = $export->exportDatevOnline();

```

Here a file will be created in the folder export with the name 'filename.csv'.

Full example
============

[](#full-example)

To get a list of customers, here is a example:

```
require_once '../../vendor/autoload.php';

use miralsoft\weclapp\api\Config;
use miralsoft\weclapp\customerexport\Export;

Config::$URI = 'https://xxx.weclapp.com/webapp/api/v1/';
Config::$TOKEN = 'xxx';

$export = new Export(true, '', 'datevExport.csv');
$ok = $export->exportDatevOnline();

echo $ok ? 'File successfull created' : 'Error while export';

```

###  Health Score

37

—

LowBetter than 82% of packages

Maintenance78

Regular maintenance activity

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

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

Total

3

Last Release

148d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7510cab0d2fe79454ee620c456a1f08ceafa2ed856fd342d54db0700aab03db5?d=identicon)[miralsoft](/maintainers/miralsoft)

---

Top Contributors

[![miralsoft](https://avatars.githubusercontent.com/u/20637644?v=4)](https://github.com/miralsoft "miralsoft (13 commits)")

### Embed Badge

![Health badge](/badges/miralsoft-weclapp-customer-export/health.svg)

```
[![Health](https://phpackages.com/badges/miralsoft-weclapp-customer-export/health.svg)](https://phpackages.com/packages/miralsoft-weclapp-customer-export)
```

PHPackages © 2026

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