A Laravel 4 Package for the Chikka SMS API.
476
1
1
Package Data
Maintainer Username: ridvanbaluyos
Maintainer Contact: ridvan@baluyos.net (ridvanbaluyos)
Package Create Date: 2014-10-04
Package Last Update: 2016-11-04
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:11:06
Package Statistics
Total Downloads: 476
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

ridvanbaluyos/chikka

A Chikka API package for Laravel 4.

This package makes use of the Chikka API.

Please DO NOT USE dev-master branch. :)

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