diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 34f9a173d..aad0420a7 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -3,6 +3,7 @@ filter: - 'vendor/*' - 'tests/*' - 'app/Template/*' + - 'scripts/*' paths: { } tools: php_sim: diff --git a/scripts/api-client.php b/scripts/api-client.php deleted file mode 100755 index 0fb451173..000000000 --- a/scripts/api-client.php +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env php - '.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); -