PHPackages                             neurochems/twinjet-directconnect-php8 - 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. neurochems/twinjet-directconnect-php8

ActiveProject[API Development](/categories/api)

neurochems/twinjet-directconnect-php8
=====================================

PHP client for the TwinJet DirectConnect API (updated 2025). Fork of gbro115/twinjet-directconnect-php.

v1.0(5mo ago)01MITPHPPHP ^8.0

Since Nov 28Pushed 5mo agoCompare

[ Source](https://github.com/neurochems/twinjet-directconnect-php8)[ Packagist](https://packagist.org/packages/neurochems/twinjet-directconnect-php8)[ RSS](/packages/neurochems-twinjet-directconnect-php8/feed)WikiDiscussions master Synced 1mo ago

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

TwinJet Direct Connect PHP API
==============================

[](#twinjet-direct-connect-php-api)

Composer-ready PHP wrapper for [TwinJet DirectConnect](https://twinjet.co/developer/). Updated dependencies in 2025 to support PHP 8, etc.

Implemented calls:

1. Create Job
2. Job Status

Not yet implemented:

1. Update Job
2. Cancel Job

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

[](#installation)

The recommended way to install the library is using [Composer](https://getcomposer.org).

1. Add this json to your composer.json file:

```
{
    "require": {
        "neurochems/twinjet-directconnect-php8": "^1.0"
    }
}
```

2. Next, run this from the command line:

```
composer install

```

3. Finally, add this line to your php file that will be using the SDK:

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

```

Limitations
-----------

[](#limitations)

Not all actions have been implemented.

Handling Exceptions
-------------------

[](#handling-exceptions)

If the API returns an error or an unexpected response, the PHP API will throw a \\TwinJet\\Exception.

Example usage
-------------

[](#example-usage)

```
