snide / php-scrutinizer-client
PHP Scrutinizer Client
1.2.0
2014-02-23 10:29 UTC
Requires
- php: >=5.3.3
- kriswallsmith/buzz: v0.5
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2024-11-05 01:57:49 UTC
README
PHP Client for Scrutinizer API
Installation
Installation by Composer
If you use composer, add scrutinizer-client library as a dependency to the composer.json of your application
"require": { ... "snide/php-scrutinizer-client": "1.*" ... },
Usage
To access Scrutinizer API, you can do :
<?php // Access github repository pdenis/monitoring $client = new Snide\Scrutinizer\Client(); $repo = $client->fetchRepository('pdenis/monitoring');
That's all!