summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/api-client.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/scripts/api-client.php b/scripts/api-client.php
deleted file mode 100755
index 0fb45117..00000000
--- a/scripts/api-client.php
+++ /dev/null
@@ -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);
-