PHPackages                             jardisport/connection - 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. jardisport/connection

ActiveLibrary

jardisport/connection
=====================

Base connection lifecycle interface for all Jardis adapters

v1.0.0(1mo ago)0212↓100%2proprietaryMakefilePHP &gt;=8.2CI passing

Since Mar 18Pushed 1mo agoCompare

[ Source](https://github.com/jardisPort/connection)[ Packagist](https://packagist.org/packages/jardisport/connection)[ Docs](https://github.com/jardisPort/connection)[ RSS](/packages/jardisport-connection/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (2)Versions (3)Used By (2)

Jardis Connection Port
======================

[](#jardis-connection-port)

[![Build Status](https://github.com/jardisPort/connection/actions/workflows/ci.yml/badge.svg)](https://github.com/jardisPort/connection/actions/workflows/ci.yml/badge.svg)[![License: PolyForm Shield](https://camo.githubusercontent.com/d8fb46c82be4c5312bf3e372ac734dfdf6a8b328e9c2b2856af671adbb0600a5/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d506f6c79466f726d253230536869656c642d626c75652e737667)](LICENSE.md)[![PHP Version](https://camo.githubusercontent.com/a68b290dcc313d698dc138a1111aa83eee2f143605449d7e8b5416ea6f88558f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d253345253344382e322d3737374242342e737667)](https://www.php.net/)[![PHPStan Level](https://camo.githubusercontent.com/c51bda247654363d3e30bc352674dd761a9557803a14af0226eb411d6dc0006b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048505374616e2d4c6576656c253230382d627269676874677265656e2e737667)](phpstan.neon)[![PSR-12](https://camo.githubusercontent.com/34b10db0caa29bacd49bda5c437a8de95385f036f3230b31fa605326e18da22c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f436f64652532305374796c652d5053522d2d31322d626c75652e737667)](phpcs.xml)

> Part of the **[Jardis Business Platform](https://jardis.io)** — Enterprise-grade PHP components for Domain-Driven Design

The foundational connection contract for all Jardis adapters. Every adapter — database, cache, messaging — builds on this interface for consistent lifecycle management across the platform. Type-hint against `ConnectionInterface` to write adapter-agnostic code that works with any underlying transport.

---

Interfaces
----------

[](#interfaces)

### **ConnectionInterface**

[](#connectioninterface)

`JardisPort\Connection\ConnectionInterface`

The minimal lifecycle contract every connection must implement. Idempotent by design — calling `connect()` or `disconnect()` multiple times is always safe.

MethodSignatureDescription`connect``connect(): void`Establish the connection. No-op if already connected. Throws `\RuntimeException` on failure.`disconnect``disconnect(): void`Close the connection. No-op if already disconnected.`isConnected``isConnected(): bool`Check whether the connection is currently active.---

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

[](#installation)

```
composer require jardisport/connection
```

Usage
-----

[](#usage)

```
use JardisPort\Connection\ConnectionInterface;

// Type-hint against the interface — not against any specific adapter
class MyService
{
    public function __construct(
        private readonly ConnectionInterface $connection,
    ) {}

    public function doWork(): void
    {
        if (!$this->connection->isConnected()) {
            $this->connection->connect();
        }

        // ... use the connection
    }
}
```

Implemented by
--------------

[](#implemented-by)

- **[jardisadapter/dbconnection](https://github.com/jardisAdapter/dbConnection)** — PDO-based database connections with read/write splitting and connection pooling
- **[jardisadapter/cache](https://github.com/jardisAdapter/cache)** — Redis and other cache backend connections
- **[jardisadapter/messaging](https://github.com/jardisAdapter/messaging)** — Redis, Kafka, and RabbitMQ transport connections

Documentation
-------------

[](#documentation)

Full documentation, guides, and API reference:

**[jardis.io/docs/port/connection](https://jardis.io/docs/port/connection)**

License
-------

[](#license)

This package is licensed under the [PolyForm Shield License 1.0.0](LICENSE.md). Free for all use except building competing frameworks or developer tooling.

---

**[Jardis](https://jardis.io)** · [Documentation](https://jardis.io/docs) · [Headgent](https://headgent.com)

###  Health Score

44

—

FairBetter than 91% of packages

Maintenance96

Actively maintained with recent releases

Popularity16

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity47

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

Unknown

Total

1

Last Release

52d ago

### Community

Maintainers

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

---

Top Contributors

[![Headgent](https://avatars.githubusercontent.com/u/245725954?v=4)](https://github.com/Headgent "Headgent (1 commits)")

---

Tags

interfacesConnectiondddHeadgentJardisPort

###  Code Quality

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/jardisport-connection/health.svg)

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

###  Alternatives

[symfony/event-dispatcher-contracts

Generic abstractions related to dispatching event

3.4k756.5M421](/packages/symfony-event-dispatcher-contracts)[symfony/service-contracts

Generic abstractions related to writing services

2.6k860.1M359](/packages/symfony-service-contracts)[symfony/translation-contracts

Generic abstractions related to translation

2.6k698.7M431](/packages/symfony-translation-contracts)[symfony/cache-contracts

Generic abstractions related to caching

2.4k308.9M197](/packages/symfony-cache-contracts)[symfony/http-client-contracts

Generic abstractions related to HTTP clients

2.0k402.7M265](/packages/symfony-http-client-contracts)[react/socket

Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP

1.3k116.9M402](/packages/react-socket)

PHPackages © 2026

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