suin/ifttt-webhook

dev-master 2013-11-06 08:38 UTC

This package is auto-updated.

Last update: 2024-04-06 08:07:53 UTC


README

Build Status

What is IftttWebhook?

A library enable to outgoing webhook for the ifttt.com service

Requirements

PHP 5.3 or later

Installation

Install composer in your project:

curl -s http://getcomposer.org/installer | php

Create a composer.json file in your project root:

{
    "require": {
        "suin/ifttt-webhook": "*"
    }
}

Install via composer:

php composer.phar install

License

IftttWebhook is open-sourced software licensed under the MIT License - see the LICENSE file for details

Documentation

see example/xmlrpc.php

Contributing

Checkout master source code from github:

hub clone suin/ifttt-webhook

Install develpment components via composer:

# If you don't have composer.phar
./scripts/bundle-devtools.sh .

# If you have composer.phar
composer.phar install --dev

Unit Testing

We works under test driven development.

Run phpunit:

./vendor/bin/phpunit

Coding Standard

We follows coding standard PSR-2.

Check if your codes follows PSR-2 by phpcs:

./vendor/bin/phpcs --standard=PSR2 src/

Acknowledgement

This project was automatically generated by "Goodby Setup".