ridvanbaluyos/chikka

A Laravel 4 Package for the Chikka SMS API.
479 1
Install
composer require ridvanbaluyos/chikka
Latest Version:v1.0
PHP:>=5.4.0
License:MIT
Last Updated:Nov 4, 2016
Links: GitHub  ·  Packagist
Maintainer: ridvanbaluyos

ridvanbaluyos/chikka

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