Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/onderweg/numerous-php

Quick and Dirty PHP Numerous API client (not complete)
https://github.com/onderweg/numerous-php

Last synced: 13 days ago
JSON representation

Quick and Dirty PHP Numerous API client (not complete)

Awesome Lists containing this project

README

        

# numerous-php

**Update May 2016:**
*Unfortunately, Numerous is shutting down. I will keep this repository online, as an increasingly faint memory of what once was.*

Quick and Dirty PHP [Numerous](http://numerousapp.com/) API client (not complete).

##Example

``` php
updateMetric('12345', array(
'units' => 'meters'
));

// Add comment to metric
$n->createInteraction('12345', array(
'commentBody' => 'this is my comment'
));

// Update a metric's value
$n->createEvent('12345', 15)

// List all metrics
echo $n->metrics();
```

##License

This work is licensed under a MIT license.
Feel free to fork, extend, improve, etc. But please include a proper attribution.