wearesho-team/message-delivery

Message Delivery Interfaces

1.8.0 2023-07-06 14:58 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