PHPackages                             textcontrol/txtextcontrol-reportingcloud - 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. [API Development](/categories/api)
4. /
5. textcontrol/txtextcontrol-reportingcloud

Abandoned → [textcontrol/textcontrol-reportingcloud](/?search=textcontrol%2Ftextcontrol-reportingcloud)ArchivedLibrary[API Development](/categories/api)

textcontrol/txtextcontrol-reportingcloud
========================================

PHP SDK for ReportingCloud Web API. Authored and supported by Text Control GmbH.

4.0.6(3y ago)2136.7k↓50%91BSD-3-ClausePHPPHP ^8.0

Since Jun 1Pushed 2y ago3 watchersCompare

[ Source](https://github.com/TextControl/txtextcontrol-reportingcloud-php)[ Packagist](https://packagist.org/packages/textcontrol/txtextcontrol-reportingcloud)[ RSS](/packages/textcontrol-txtextcontrol-reportingcloud/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (12)Versions (53)Used By (1)

[![Logo](./resource/rc_logo_512.png)](./resource/rc_logo_512.png)

Abandoned Package -- Migrate Now!
=================================

[](#abandoned-package----migrate-now)

As of September 10, 2023, this package is no longer being maintained.

Please update to the new version at .

⚠️ Be sure to review the `CHANGELOG.md` of the new package.

ReportingCloud PHP SDK
======================

[](#reportingcloud-php-sdk)

[![Build Status](https://camo.githubusercontent.com/6b5414b33f0f8fda6c79bb66bf1cac938162e3a96af8a0acda87ef360c8c3ab2/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f54657874436f6e74726f6c2f747874657874636f6e74726f6c2d7265706f7274696e67636c6f75642d7068702f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/TextControl/txtextcontrol-reportingcloud-php/build-status/master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/dc7b24c7d7a9741747f74ef93cdf2de332dac5dfa50ad5c1addbb476a8dc1583/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f54657874436f6e74726f6c2f747874657874636f6e74726f6c2d7265706f7274696e67636c6f75642d7068702f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/TextControl/txtextcontrol-reportingcloud-php/?branch=master)[![Latest Stable Version](https://camo.githubusercontent.com/c62afd82d2c197f2ff66a7e5d115acbf3b77780f113c3189a8034aba9ddb19e3/68747470733a2f2f706f7365722e707567782e6f72672f74657874636f6e74726f6c2f747874657874636f6e74726f6c2d7265706f7274696e67636c6f75642f762f737461626c65)](https://packagist.org/packages/textcontrol/txtextcontrol-reportingcloud)[![composer.lock available](https://camo.githubusercontent.com/3fdd7df8ffe61a13f68a1ea178ebd91d804743b06078ba0278dc023e1f95d48e/68747470733a2f2f706f7365722e707567782e6f72672f74657874636f6e74726f6c2f747874657874636f6e74726f6c2d7265706f7274696e67636c6f75642f636f6d706f7365726c6f636b)](https://packagist.org/packages/textcontrol/txtextcontrol-reportingcloud)

This is the official PHP SDK for the ReportingCloud Web API. It is authored and supported by [Text Control GmbH](http://www.textcontrol.com).

Learn more about ReportingCloud at:

- [ReportingCloud web site](https://www.reporting.cloud/)
- [ReportingCloud portal](https://portal.reporting.cloud/) - sign up here
- [ReportingCloud documentation](https://docs.reporting.cloud/)

Learn more about ReportingCloud PHP SDK at:

- [ReportingCloud PHP SDK GitHub page](https://github.com/TextControl/txtextcontrol-reportingcloud-php)
- [ReportingCloud PHP SDK Packagist page](https://packagist.org/packages/textcontrol/txtextcontrol-reportingcloud)
- [ReportingCloud PHP SDK API documentation](https://textcontrol.github.io/txtextcontrol-reportingcloud-php/docs-api/)
- [ReportingCloud PHP SDK support](https://docs.reporting.cloud/docs/chapter/introduction/support)

Minimum Requirements
--------------------

[](#minimum-requirements)

Since [ReportingCloud PHP SDK 3.0](/doc/release-3.0.0.md), the PHP SDK requires **PHP 7.4** or **PHP 8.0**.

All versions of PHPs prior to 7.3 have reached [end-of-life](http://php.net/eol.php) and consequently, no further security updates will be released for them. If your application is running in an older environment, it is highly advisable to update to a more current version of PHP.

If you are unable or unwilling to update your PHP installation, you may consider using ReportingCloud PHP SDK 2.0, which supports PHP 7.1, or ReportingCloud PHP SDK 1.0, which supports PHP 5.6.

Please note, however, these versions are no longer maintained.

Alternatively, it is possible to use ReportingCloud by directly accessing the [Web API](https://docs.reporting.cloud/docs/endpoint). In such cases, it is advisable to use the [curl](http://php.net/manual/en/book.curl.php) extension to make the API calls.

Install Using Composer
----------------------

[](#install-using-composer)

Install ReportingCloud PHP SDK 3.0 in your project using [Composer](http://getcomposer.org):

```
composer require textcontrol/txtextcontrol-reportingcloud:^3.0
```

After installing, you just need to include Composer's autoloader:

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

You are now ready to use the SDK.

API Key for Demos and Unit Tests
--------------------------------

[](#api-key-for-demos-and-unit-tests)

ReportingCloud PHP SDK ships with a number of sample applications (see directory `/demo`) and phpunit tests (see directory `/test`). The scripts in each of these directories require an [API key](https://docs.reporting.cloud/docs/chapter/introduction/apikey) for ReportingCloud in order to be executed. So that the API key is not made inadvertently publicly available via a public GIT repository, you will first need to specify it. There are two ways in which you can do this:

### Using PHP Constants:

[](#using-php-constants)

```
define('REPORTING_CLOUD_API_KEY', 'your-api-key');
```

### Using Environmental Variables (For Example in `.bashrc`)

[](#using-environmental-variables-for-example-in-bashrc)

```
export REPORTING_CLOUD_API_KEY='your-api-key'
```

Note, these instructions apply only to the demo scripts and phpunit tests. When you use ReportingCloud in your application, set the [API key](https://docs.reporting.cloud/docs/chapter/introduction/apikey) in your constructor or by using the `setApiKey($apiKey)` methods. For an example, see `/demo/instantiation.php`.

Getting Started
---------------

[](#getting-started)

The [PHP Quickstart Tutorial](https://docs.reporting.cloud/docs/chapter/quickstart/php) in the ReportingCloud [documentation](https://docs.reporting.cloud/) is your starting point to using ReportingCloud PHP SDK in your own applications.

In addition, ReportingCloud PHP SDK ships with a number of sample applications (see directory `/demo`). These samples applications, which are well commented, have been written to demonstrate all parts of ReportingCloud.

Getting Support
---------------

[](#getting-support)

The ReportingCloud PHP SDK is authored and supported by Text Control GmbH, the manufacturer of the ReportingCloud Web API.

Despite our best efforts to create understandable documentation, demo applications and unit tests, we understand that there are times when you may need some technical assistance.

If you have a question about ReportingCloud or the PHP SDK, we want to help you.

Please refer to the [Getting Support](https://docs.reporting.cloud/docs/chapter/introduction/support) section of the ReportingCloud [documentation](https://docs.reporting.cloud/) to learn more about the support channels at your disposition.

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity34

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity81

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 99.5% 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 ~43 days

Recently: every ~0 days

Total

52

Last Release

1411d ago

Major Versions

1.9.1 → 2.0.02018-12-19

2.6.2 → 3.0.02021-06-21

3.0.0 → 4.0.62022-07-07

PHP version history (8 changes)1.0.2PHP ~5.5

1.0.7PHP ^5.5||^7.0

1.2.0PHP ^5.5 || ^7.0

1.3.1PHP ^5.6 || ^7.0

2.0.0PHP ^7.1

3.0.0PHP ^7.4 || ^8.0

4.0.6PHP ^8.0

2.6.5PHP ^8.1

### Community

Maintainers

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

---

Top Contributors

[![jonathanmaron](https://avatars.githubusercontent.com/u/298462?v=4)](https://github.com/jonathanmaron "jonathanmaron (800 commits)")[![heiglandreas](https://avatars.githubusercontent.com/u/91998?v=4)](https://github.com/heiglandreas "heiglandreas (3 commits)")[![kristoftorfs](https://avatars.githubusercontent.com/u/8181149?v=4)](https://github.com/kristoftorfs "kristoftorfs (1 commits)")

---

Tags

php-wrapperreportingcloudreporting cloudreportingcloud

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/textcontrol-txtextcontrol-reportingcloud/health.svg)

```
[![Health](https://phpackages.com/badges/textcontrol-txtextcontrol-reportingcloud/health.svg)](https://phpackages.com/packages/textcontrol-txtextcontrol-reportingcloud)
```

###  Alternatives

[irazasyed/telegram-bot-sdk

The Unofficial Telegram Bot API PHP SDK

3.3k4.5M84](/packages/irazasyed-telegram-bot-sdk)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

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