Download the PHP package mtn-sms/mtn-bulksms-php-sdk without Composer

On this page you can find all versions of the php package mtn-sms/mtn-bulksms-php-sdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package mtn-bulksms-php-sdk

MTN API SDK

Overview

The MTN API SDK provides a PHP wrapper for interacting with the MTN Short Message Service (SMS) API. This SDK simplifies the process of sending outbound SMS messages, managing subscriptions, and handling exceptions.

Installation

You can install the MTN API SDK via Composer. Run the following command in your project directory:

Usage

1. Obtain Access Token

Before using the SDK, you need to obtain an access token using the provided Client Credentials OAuth Flow. You can do this by making a POST request to the token URL with your client credentials.

Replace $clientId and $clientSecret with your actual client credentials.

2. Sending SMS

To send an SMS message, use the SmsSender class.

3. Managing Subscriptions

You can manage subscriptions using the SubscriptionManager class.

3.1 Subscribe

3.2 Update Subscription

3.3 Delete Subscription

4. Handling Exceptions

The SDK throws ApiException in case of errors. You can catch and handle these exceptions as follows:

Adding Credentials

You should store your client credentials securely. It's recommended to use environment variables or a configuration file to store sensitive information.

Using Environment Variables

You can set environment variables in your .env file:

Then, you can access these variables in your code:

Using Configuration File

You can store your credentials in a configuration file (e.g., config.php):

Then, include this file in your code:

Example Test

Here's an example script that demonstrates how to use the MTN API SDK to send an SMS message:

Make sure to replace your-client-id and your-client-secret with your actual MTN client credentials. Additionally, ensure you have set up your environment variables or configuration file to securely store your credentials.

To test this example:

  1. Save the script to a file (e.g., send_sms_example.php).
  2. Set up your client credentials either via environment variables or a configuration file.
  3. Run the script using PHP:

This script will obtain an access token, send an SMS message using the MTN API SDK, and print the response or handle any exceptions that occur during the process. Adjust the SMS details and error handling as needed for your use case.

Contributing

Contributions are welcome! If you find any issues or have suggestions for improvements, please create a pull request or open an issue on GitHub.

License

This SDK is open-source and available under the MIT License. See the LICENSE file for details.



All versions of mtn-bulksms-php-sdk with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2
generated/php-client Version 1.0.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mtn-sms/mtn-bulksms-php-sdk contains the following files

Loading the files please wait ....