Core functionality library for Conduit ecosystem

Maintainers

Package info

github.com/conduit-ui/core

pkg:composer/conduit-ui/core

Transparency log

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0 2026-08-22 18:02 UTC

This package is auto-updated.

Last update: 2026-08-22 18:23:52 UTC


README

Core functionality library for the Conduit ecosystem - shared services, interfaces, and component management.

Installation

composer require conduit-ui/core

Usage

This package provides the foundation for building Conduit components:

  • Component interfaces and contracts
  • Database storage for component metadata
  • Base services for component management
  • Shared utilities and patterns

Component Development

Extend the base ComponentInterface to create new Conduit components:

use ConduitIo\Core\Contracts\ComponentInterface;

class MyComponent implements ComponentInterface
{
    public function getName(): string
    {
        return 'my-component';
    }
    
    // ... implement other methods
}

Architecture

This package is designed to be used by:

  • conduit-io/conduit - Main CLI application
  • conduit-io/*-connector - Individual component packages
  • Third-party component developers

Co-Authored-By: Conduit Assistant noreply@conduit.io