A Laravel 4 Package for the Chikka SMS API.

Installs: 476

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:laravel-package

v1.0 2014-10-04 21:54 UTC

This package is auto-updated.

Last update: 2024-04-12 19:03:30 UTC


README

A Chikka API package for Laravel 4.

This package makes use of the Chikka API.

Please DO NOT USE dev-master branch. :)


[![Latest Stable Version](https://poser.pugx.org/ridvanbaluyos/chikka/v/stable)](https://packagist.org/packages/ridvanbaluyos/chikka) [![Total Downloads](https://poser.pugx.org/ridvanbaluyos/chikka/downloads)](https://packagist.org/packages/ridvanbaluyos/chikka) [![Latest Unstable Version](https://poser.pugx.org/ridvanbaluyos/chikka/v/unstable)](https://packagist.org/packages/ridvanbaluyos/chikka) [![License](https://poser.pugx.org/ridvanbaluyos/chikka/license)](https://packagist.org/packages/ridvanbaluyos/chikka) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/91ba2bf489e043f4a43b7e7a71a69843)](https://www.codacy.com/app/ewoklabs/chikka?utm_source=github.com&utm_medium=referral&utm_content=ridvanbaluyos/chikka&utm_campaign=Badge_Grade)

Table of contents

Installation

Open your composer.json file and add the following to the require key:

"ridvanbaluyos/chikka": "v1.0"

After adding the key, run composer update from the command line to install the package

composer update

Add the service provider to the providers array in your app/config/app.php file.

'Ridvanbaluyos\Chikka\ChikkaServiceProvider'

Configuration

Before you can start using the package we need to set some configurations. To do so you must first publish the config file, you can do this with the following artisan command.

php artisan config:publish ridvanbaluyos/chikka

Usage

Receiving SMS from users

Not yet available

Sending SMS to users

Chikka::send('Welcome to Chikka!', '639981234567');

Replying to an SMS

Not yet available

Receiving Delivery Notifications

Not yet available