namshi/smscountry

This small library provides support for sending Sms messages via SMSCountry

Package info

github.com/namshi/smscountry

pkg:composer/namshi/smscountry

Statistics

Installs: 27 161

Dependents: 1

Suggesters: 0

Stars: 3

Open Issues: 1

2.0.2 2023-03-01 11:52 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT eebaf9b2fdc97b05dd059df266f78f7cbdec4e1b

  • Hossam Fares <hossam.fares.woop@namshi.com>

This package is not auto-updated.

Last update: 2026-06-18 03:41:03 UTC


README

👁 Build Status

This small library provides support for sending Sms messages via SMSCountry

Installation

Installation can be done via composer, as the library is already on packagist.

The library uses semantic versioning for its API, so it is recommended to use a stable minor version (1.0, 1.1, etc.) and stick to it when declaring dependencies through composer:

"namshi/smscountry": "1.0.*",

Pick major and minor version according to your needs.

Usage

Using this library is super easy:

<?php

use Namshi\SMSCountry\Client;

$smsClient = new Client($username, $password, $senderId, $soapService);

$smsClient->sendSms($phoneNumber, $body);