PHPackages                             hiddeco/transip - 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. hiddeco/transip

ActiveLibrary[API Development](/categories/api)

hiddeco/transip
===============

The better TransIP API client.

v5.7(7y ago)22329.6k↓65.2%4[1 issues](https://github.com/hiddeco/transip/issues)2MITPHPPHP &gt;=5.6CI failing

Since Aug 14Pushed 7y agoCompare

[ Source](https://github.com/hiddeco/transip)[ Packagist](https://packagist.org/packages/hiddeco/transip)[ RSS](/packages/hiddeco-transip/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (10)Dependencies (2)Versions (11)Used By (2)

TransIP
=======

[](#transip)

This library is an Object Oriented wrapper for the [TransIP](https://www.transip.nl) SOAP API (v5.6), which aims to provide a better and more structured client than the official [TransIP API package](https://www.transip.nl/transip/api/), including extensive documentation.

[![TransIP SOAP client](https://camo.githubusercontent.com/4b2798beb487a1a3287a8f731f307b7a8ae877a27efd52e973c30af10d07c615/68747470733a2f2f692e696d6775722e636f6d2f4f3452503236332e6a7067)](https://camo.githubusercontent.com/4b2798beb487a1a3287a8f731f307b7a8ae877a27efd52e973c30af10d07c615/68747470733a2f2f692e696d6775722e636f6d2f4f3452503236332e6a7067)

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

[](#installation)

To use this library without running in to trouble you will need PHP 5.6+ or HHVM 3.6+ and Composer.

1. Get the latest version of TransIP by adding the following line to your `composer.json` file `"hiddeco/transip": "5.7.*"`
2. Run `composer update` or `composer install`

Features
--------

[](#features)

- All TransIP services and methods available through one `Client`
- Follows PSR-4 conventions and PSR-2 coding standards
- Extensively documented

Usage
-----

[](#usage)

### Basics

[](#basics)

#### Using the `Client`

[](#using-the-client)

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

$client = new \TransIP\Client('username', 'privateKey');
$domainNames = $client->api('domain')->getDomainNames();
```

#### Setting the permission mode and endpoint

[](#setting-the-permission-mode-and-endpoint)

Although the permission mode and endpoint are configured by default as `readonly` and `api.transip.nl`, it is possible to change them according to your wishes.

**Note:** accepted permission modes are `readonly` and `readwrite`. Invalid permission mode will throw an ` \InvalidArgumentException`.

```
$client = new \TransIP\Client('username', 'privateKey', 'readwrite', 'api.transip.nl');

// set permission mode on the run
try {
    $client->setMode('readonly');
} catch(\InvalidArgumentException $e) {
    echo $e->getMessage();
}
```

#### Catching `\SoapFault`

[](#catching-soapfault)

```
$client = new \TransIP\Client('username', 'privateKey');

try {
    $client->api('domain')->getDomainNames();
} catch(\SoapFault $e) {
    $echo $e->getMessage();
}
```

### API documentation

[](#api-documentation)

For a full documentation on the available methods foreach API and how to use them take a look at the [extensive docs](https://github.com/hiddeco/transip/tree/master/doc).

Contributors
------------

[](#contributors)

- [Hidde Beydals](https://github.com/hiddeco) ([@hiddeco](https://twitter.com/hiddeco))
- [Peter Steenbergen](https://github.com/petericebear) ([@petericebear](https://twitter.com/petericebear))

License
-------

[](#license)

TransIP is licensed under [The MIT License (MIT)](https://github.com/hiddeco/transip/blob/master/LICENSE).

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity44

Moderate usage in the ecosystem

Community15

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 90.4% 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 ~116 days

Recently: every ~129 days

Total

10

Last Release

2903d ago

Major Versions

v0.1 → v5.22016-03-24

PHP version history (2 changes)v0.1PHP &gt;=5.4

v5.3.1PHP &gt;=5.6

### Community

Maintainers

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

---

Top Contributors

[![hiddeco](https://avatars.githubusercontent.com/u/10063039?v=4)](https://github.com/hiddeco "hiddeco (47 commits)")[![petericebear](https://avatars.githubusercontent.com/u/339796?v=4)](https://github.com/petericebear "petericebear (4 commits)")[![oldskool](https://avatars.githubusercontent.com/u/567664?v=4)](https://github.com/oldskool "oldskool (1 commits)")

---

Tags

apiphpsoaptransipphpapisoaptransip

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/hiddeco-transip/health.svg)

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

###  Alternatives

[jstolpe/instagram-graph-api-php-sdk

Instagram Graph API PHP SDK

138106.8k2](/packages/jstolpe-instagram-graph-api-php-sdk)

PHPackages © 2026

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