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

/**
 * package name
 */
$name 'Testing_FIT';

/**
 * 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.2.0';

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

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

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

/**
 * release notes
 */
$notes = <<<EOT
Changes V 0.2.0
- ranemed to Testing_FIT
- removed frontend code
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' => 'svn',
    
'ignore'            => array(
                
'package.php',
                
'package-config.php',
                
'package.xml',
                
'testing_fit.webprj',
                
'testing_fit.session',
                
// admin stuff
                //'data',
                //'cache',
                
),
    
'simpleoutput'      => true,
    
'baseinstalldir'    => 'Testing/FIT',
    
'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    =   'pear.php.net';
$require    =   array(
    
'php'               =>  '5.0.1',
    
'pear_installer'    => '1.4.0a12'
);
?>