Download the PHP package weezqydy/sematimeapi without Composer

On this page you can find all versions of the php package weezqydy/sematimeapi. 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 sematimeapi

Sematime Api gateway for php

Build Status Latest Stable Version Total Downloads Latest Unstable Version License

This is a php package that you can easily intergarate into your project to send SMS Messages using the awesome Sematime API, to start using this package require it in your project using composer a php Dependency management tool. if you dont have composer installed head over to Composer and install

To include this package in your project add this to your composer.json and then run composer update

Introduction

The Sematime API makes it possible for you to send branded and personalized SMS messages from your php application. In addition, the API also exposes contacts management functions that let you can store, edit or delete contacts on behalf of your users.

Before you get started with the API, we will need you to do the following:

Creating a free Sematime account

A Sematime account is needed before you can start using our API. If you do not have a Sematime account already, go to Sematime and get yourself an account.

Getting your API credentials

Getting Started

Messages

Sending Messages

With everything configured properly, we are now ready to send our first message using sematime

You can optionally add other parameterss while building your message

Geting Scheduled Messages

To retreive Scheduled messages

Contacts

Sematime organizes contacts into groups. A group will usually contain the contacts of people who share some relationship. For example, group ‘Sales Team’ would be a group for the members of the company’s sales team.

Adding Contacts

We can also add contacts to your sematime account, just prepare your contact and then save it

Retreiving Contacts

Editing Contacts

To edit your contact all you need to do is provide your new name or new phone number for that contact

`

Deleting Contacts

Deleting a contact only requires you to provide the group and ID of the contact you wish to delete

Account details

To retrieve your account details


use Semamatime/Api/Sematime;

    $sema= new Sematime();

    $response = $sema->accountDetails();

    echo $response //{"account":{"accountId":"xxxxxxxxxxxxx", "name":"Your Name", "phoneNumber":"123456789", "smsBalance":0, "accountType":"school", "senderId":"Sematime", "paymentPlan":"prepaid", "createdOn":"Wed, 09\/09\/2015 04:59 PM"}, "statusCode":200, "description":"Account profile retrieved successfully."}

All versions of sematimeapi with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
vlucas/phpdotenv Version ^2.1
nategood/httpful Version *
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 weezqydy/sematimeapi contains the following files

Loading the files please wait ....