PHPackages                             think.studio/laravel-6connex - 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. think.studio/laravel-6connex

ActiveLibrary[API Development](/categories/api)

think.studio/laravel-6connex
============================

6connex api integration for laravel

1.1.0(2y ago)019MITPHPPHP ^8.0

Since Apr 16Pushed 2y ago1 watchersCompare

[ Source](https://github.com/dev-think-one/laravel-6connex)[ Packagist](https://packagist.org/packages/think.studio/laravel-6connex)[ Docs](https://github.com/dev-think-one/laravel-6connex)[ RSS](/packages/thinkstudio-laravel-6connex/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (7)Versions (4)Used By (0)

Laravel: 6connex API integration
================================

[](#laravel-6connex-api-integration)

[![Packagist License](https://camo.githubusercontent.com/c5173e080ea25f9ea7f72e74a7caf3e484a1e68d02b5d48910af3bada916cb69/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6c61726176656c2d36636f6e6e65783f636f6c6f723d253233346463373166)](https://camo.githubusercontent.com/c5173e080ea25f9ea7f72e74a7caf3e484a1e68d02b5d48910af3bada916cb69/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6c61726176656c2d36636f6e6e65783f636f6c6f723d253233346463373166)[![Packagist Version](https://camo.githubusercontent.com/aa6ea30588c0371b54e9a327bde8da4b85d1fde4d971fb1e3463430cbdada3ec/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7468696e6b2e73747564696f2f6c61726176656c2d36636f6e6e6578)](https://packagist.org/packages/think.studio/laravel-6connex)[![Total Downloads](https://camo.githubusercontent.com/1977e0f6f78cc7a829db0e7d5f28845ae8aaa5e4a2b8e33438e772ed7e28abfd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7468696e6b2e73747564696f2f6c61726176656c2d36636f6e6e6578)](https://packagist.org/packages/think.studio/laravel-6connex)[![Build Status](https://camo.githubusercontent.com/0edf94b8536c37998a190c886649693e44eab929fbe71e06179b06461f3ab9ef/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d36636f6e6e65782f6261646765732f6275696c642e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-6connex/build-status/main)[![Code Coverage](https://camo.githubusercontent.com/509c46c1a7c18cc8ff8a7c7174b52d67753e68cb804807b75257b917671e20b4/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d36636f6e6e65782f6261646765732f636f7665726167652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-6connex/?branch=main)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/d11387575e9a37b3ba05840c443edd890f9f7f4472303607e0b1a5e848eb1511/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d36636f6e6e65782f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-6connex/?branch=main)

Documentation [here](docs%2F6Connex_API_REGISTRATION_STEPS.pdf)

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

[](#installation)

You can install the package via composer:

```
composer require think.studio/laravel-6connex
```

You can publish the config file with:

```
php artisan vendor:publish --provider="LaravelSixConnex\ServiceProvider" --tag="config"
```

Configuration in *.env*

```
SIXCONNEX_API_USERNAME="myapp"
SIXCONNEX_API_PASSWORD="apipassword"
```

Usage example
-------------

[](#usage-example)

### Formatted Response

[](#formatted-response)

```
/** @var SixConnexOutput $output */
$output = SixConnex::usersRequest('read', [
        'email'=>'pieter.tester@6connex.test',
        'event_id' => 123
    ])
    ->call()
    ->outputFirst();

if($output->successful()) {
    $address = $output->json('address1');
    $events = $output->collect('events');
}
```

### Raw response

[](#raw-response)

Call

```
SixConnex::usersRequest()
    ->setApiCall('read')
    ->addOption('email', 'pieter.tester@6connex.test')
    ->call()
    ->json();
```

or

```
SixConnex::usersRequest()
    ->setApiCall('read')
    ->addOption('email', 'pieter.tester@6connex.test')
    ->addOption('event_id', 123)
    ->call()
    ->json();
```

or

```
SixConnex::usersRequest()
    ->setApiCall('read')
    ->addOption(['email'=>'pieter.tester@6connex.test', 'event_id' => 123])
    ->call()
    ->json();
```

Result

```
[
 "apicallsetoutput" => [
   [
     "id" => 123,
     "firstname" => "Pieter",
     "lastname" => "Tester",
     "email" => "pieter.tester@6connex.test",
     "company" => "6C",
     "title" => "Mr",
     "address1" => "89 Avenue",
     "zipcode" => "WD60 7DU",
     "city" => "Watford",
     "state_province" => "Herts",
     "country" => "GB",
     "country_code" => "32",
     "area_code" => "00",
     "phone_no" => "00",
     "events" => [
       123 => [
         "event_id" => 123,
         "event_name" => "Online Show",
         "register_date" => "2020-03-29 09:05:14",
         "registrationset_name" => "default set",
         "entitlementgroup_name" => "default group",
       ],
     ],
     "initially_created_by_partner" => false,
     "_apicall" => "read",
     "_apicallresultcode" => 1,
     "_apicallresultmessage" => "success",
   ],
 ],
]
```

### Package also support "multiplicity"

[](#package-also-support-multiplicity)

```
 SixConnex::usersRequest('read', [
        'email'=>'test@test1.com',
        'event_id' => 123
    ])
    ->addNewCall(
        ( new \LaravelSixConnex\SixConnexCall )->addOption('email', 'test@test2.com')
    )
    ->addNewCall(
        ( new \LaravelSixConnex\SixConnexCall )->addOption(['email' => 'not@in.db'])
    )
    ->call()
    ->json();
```

Result

```
[
 "apicallsetoutput" => [
   [
     "id" => 123123,
     "firstname" => "Test",
     "lastname" => "Test",
     "email" => "test@test1.com",
     "title" => "Test",
     "events" => [
       123 => [
         "event_id" => 123,
         "event_name" => "Online Show",
         "register_date" => "2022-04-13 15:53:26",
         "registrationset_name" => "default set",
         "entitlementgroup_name" => "default group",
         "Custom Number:" => "65297",
       ],
     ],
     "initially_created_by_partner" => true,
     "lastmodified" => "2022-04-13 15:53:26",
     "_apicall" => "read",
     "_apicallresultcode" => 1,
     "_apicallresultmessage" => "success",
   ],
   [
     "id" => 234234,
     "firstname" => "Test",
     "lastname" => "Test",
     "email" => "test@test2.com",
     "company" => "Web dev",
     "title" => "MR",
     "events" => [
       123 => [
         "event_id" => 123,
         "event_name" => "Online Show",
         "register_date" => "2022-04-13 15:53:26",
         "registrationset_name" => "default set",
         "entitlementgroup_name" => "default group",
         "Custom Number:" => "NA",
       ],
     ],
     "initially_created_by_partner" => true,
     "lastmodified" => "2022-04-05 11:16:38",
     "_apicall" => "read",
     "_apicallresultcode" => 1,
     "_apicallresultmessage" => "success",
   ],
   [
     "_apicall" => "read",
     "_apicallresultcode" => 0,
     "_apicallresultmessage" => "Email 'not@in.db' not registered in the database",
   ],
 ],
]
```

Credits
-------

[](#credits)

- [![Think Studio](https://camo.githubusercontent.com/8e541bece07d503c85a126b5294865faa00e27371048772f566a0cce8c01fd3a/68747470733a2f2f7961726f736c617777772e6769746875622e696f2f696d616765732f73706f6e736f72732f7061636b616765732f6c6f676f2d7468696e6b2d73747564696f2e706e67)](https://think.studio/)

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity59

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

Total

3

Last Release

1033d ago

PHP version history (2 changes)1.0.0PHP ^7.4|^8.0

1.1.0PHP ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/53f93fa87d58f33d106de6bd5e2946f8a345ebfaee146360746056cb134a15a0?d=identicon)[think.studio](/maintainers/think.studio)

---

Top Contributors

[![yaroslawww](https://avatars.githubusercontent.com/u/23663794?v=4)](https://github.com/yaroslawww "yaroslawww (9 commits)")

---

Tags

6connexlaravel-6connex

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/thinkstudio-laravel-6connex/health.svg)

```
[![Health](https://phpackages.com/badges/thinkstudio-laravel-6connex/health.svg)](https://phpackages.com/packages/thinkstudio-laravel-6connex)
```

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k7.6M74](/packages/openai-php-laravel)[statamic/cms

The Statamic CMS Core Package

4.8k3.2M720](/packages/statamic-cms)[nickurt/laravel-postcodeapi

Universal PostcodeApi for Laravel 11.x/12.x/13.x

97221.2k](/packages/nickurt-laravel-postcodeapi)[mozex/anthropic-laravel

Anthropic PHP for Laravel is a supercharged PHP API client that allows you to interact with the Anthropic API

71226.4k1](/packages/mozex-anthropic-laravel)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

762.6k](/packages/scriptdevelop-whatsapp-manager)[spinen/laravel-clickup

SPINEN's Laravel Package for ClickUp.

282.2k](/packages/spinen-laravel-clickup)

PHPackages © 2026

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