Update scrutinizer config

This commit is contained in:
Frédéric Guillot 2014-11-04 21:40:45 -05:00
parent 135b921db7
commit c91ff61cdf
2 changed files with 1 additions and 20 deletions

View File

@ -3,6 +3,7 @@ filter:
- 'vendor/*'
- 'tests/*'
- 'app/Template/*'
- 'scripts/*'
paths: { }
tools:
php_sim:

View File

@ -1,20 +0,0 @@
#!/usr/bin/env php
<?php
require 'vendor/JsonRPC/Client.php';
if ($argc !== 3) {
die('Usage: '.$argv[0].' <url> <token>'.PHP_EOL);
}
$client = new JsonRPC\Client($argv[1], 5, true);
$client->authentication('jsonrpc', $argv[2]);
$client->createProject('Test API');
$r = $client->getAllProjects();
var_dump($r);