<?php
/**
 * package.xml generation file for PHPFIT
 *
 * $Id$
 *
 * @author      gERD Schaufelberger <gerd@php-tools.net>
 * @package		PHPFIT
 * @subpackage	Tools
 */

/**
 * package name
 */
$name = 'PHPFIT';

/**
 * package summary
 */
$summary = 'FIT: Framework for Integrated Test';

/**
 * package description
 */
$description = <<<EOT
Great software requires collaboration and communication. 
Fit is a tool for enhancing collaboration in software development. 
It's an invaluable way to collaborate on complicated problems--and 
get them right--early in development.
Fit allows customers, testers, and programmers to learn what their 
software should do and what it does do. It automatically compares 
customers' expectations to actual results. 
EOT;

/**
 * current version
 */
$version = '0.1.0';

/**
 * Current API version
 */
$apiVersion = '1.0.0';

/**
 * current state
 */
$state = 'beta';

/**
 * current API stability
 */
$apiStability = 'stable';

/**
 * release notes
 */
$notes = <<<EOT
Changes V 0.1.0
- DOM a like parser to work with HTML tables
- Implements main fixtures: Primitive, Action and Column
- Example custom fixtures and test cases
- API examples for CLI and Web usage
EOT;

$options    =   array ( 
    'packagefile'       => 'package.xml',
    'license'           => 'LGPL',
    'filelistgenerator' => 'file',
    'ignore'            => array( 
                'package.php', 
                'package.xml', 
                'phpfit.webprj', 
                'phpfit.session',
                // admin stuff
                //'data',
                //'cache',
                'Admin.php',
                'ParserException.php',
                'TableEditor.php'
                ),
    'simpleoutput'      => true,
    'baseinstalldir'    => '.',
    'packagedirectory'  => './',
    'dir_roles'         => array(
                                 'example' => 'doc',
                                 )
        ); 

$maintainer     =   array();
$maintainer[]   =   array(
        'role'      => 'lead',
        'handle'    => 'gerd',
        'name'      => 'gERD Schaufelberger',
        'email'     => 'gerd@php-tools.net',
        'active'    => 'yes'
);
/*
$maintainer[]   =   array(
        'role'      => 'contributor',
        'handle'    => 'dajhnke',
        'name'      => 'Daniel Jahnke',
        'email'     => 'daniel.jahnke@web.de',
        'active'    => 'yes'
);
*/

$dependency     =   array();

$channel    =   '';
$require    =   array(
    'php'               =>  '5.0.1',
    'pear_installer'    => '1.4.0a12'
);
?>