More on the parse.com api here: https://www.parse.com/docs/rest
Availalbe here: https://github.com/apotropaic/parse.com-php-library/blob/1.0/master/README.md
I wrote tests not for testing sake, but really just to see how I liked how the library worked!
This is a work in progress and is a drasticly different then v1 of this library.
Let me know what you think and suggestions and ideas
Instructions after cloning this repository you have to create a file in the root of it called parseConfig.php
Below is what you want parseConfig.php to look like, just fill in your IDs and KEYs to get started.
<?php
class parseConfig{
const APPID = '';
const MASTERKEY = '';
const RESTKEY = '';
const PARSEURL = 'https://api.parse.com/1/';
}
?>