wearesho-team/message-delivery

Message Delivery Interfaces

1.9.0 2024-09-09 15:25 UTC

README

Latest Stable Version Total Downloads PHP Composer codecov

This repository includes standard interfaces and implementations for simple message sending.

Installation

composer require wearesho-team/message-delivery

Contents

Interfaces

Implementations

Example

<?php

require_once './vendor/autoload.php';

use Wearesho\Delivery;

$service = new Delivery\ServiceMock();
$message = new Delivery\Message(
    $text = 'hello',
    $recipient = 'world'
);

$service->send($message);

Integrations

Authors

License

MIT