schedulerapi / schedulerapi-php
Provides a PHP SDK for accessing the Scheduler API event scheduling service
dev-master
2020-09-10 22:59 UTC
Requires
- ext-curl: *
- ext-json: *
Requires (Dev)
- phpunit/phpunit: ^9.1
This package is auto-updated.
Last update: 2021-02-11 00:12:28 UTC
README
A fast way to add the www.schedulerapi.com service into your PHP projects.
Installation
The recommended way to install the SchedulerAPI SDK is through Composer.
composer require schedulerapi/schedulerapi-php
Usage
$key = '890asfe08qt43hqtwr980agdsf9y8dfsay234hnb4308'; // API key from the service - https://www.schedulerapi.com/ $s = new Scheduler(['key'=>$key]); $soon = new \DateTime('now', new \DateTimeZone('UTC')); $soon->modify('+5 min'); $results = $s->scheduleWebhook( $soon, 'https://mydomain.com?mykey=somevalue', 'GET', '' );
Tests
Tests executed via PHPUnit. You will need to use composer to install the dev
./vendor/bin/phpunit