#!/usr/bin/php
<?php
/*
 * FedoraClient is a PHP classe to interact with web services
 * 
 * fedcli.php is a command line tools to test FedoraClient clmsses
 * 
 * Copyright (C) 2010  Remi Collet
 * http://github.com/remicollet/rpmphp.
 * 
 * Inspired from python-fedora
 * 
 * FedoraClient is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * python-fedora is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * See <http://www.gnu.org/licenses/>
 */
 
require('FedoraClient.php');

$client = new FedoraPkgdb(array('debug'=>2));

echo "FedoraPkgdb::getBranches():\n";
$branches = $client->getBranches();
foreach ($branches as $name => $branch) {
   echo $name." ";
}
echo "\ndone.\n";
?>