source: branches/2.3/agileProjects/setup/setup.inc.php @ 5156

Revision 5156, 1.4 KB checked in by brunocosta, 12 years ago (diff)

Ticket #2142 - Ajuste do setup para publicação da versão 2.3.0

  • Property svn:executable set to *
Line 
1<?php
2        /***********************************************************************************\
3        *  This program is free software; you can redistribute it and/or modify it                 *
4        *  under the terms of the GNU General Public License as published by the                   *
5        *  Free Software Foundation; either version 2 of the License, or (at your                  *
6        *  option) any later version.                                                                                                      *
7        \***********************************************************************************/
8
9        $setup_info['agileProjects']['name'] = 'agileProjects';
10        $setup_info['agileProjects']['version'] = '2.3.0';
11        $setup_info['agileProjects']['app_order'] = 10;
12        $setup_info['agileProjects']['enable'] = 1;
13
14        $setup_info['agileProjects']['author'] = 'Rafael Raymundo da Silva (rafael2000@gmail.com)';
15        $setup_info['agileProjects']['license']  = 'GPL';
16        $setup_info['agileProjects']['description'] = 'Ferramenta para gerencia de projetos baseada em metodologias ageis';
17        $setup_info['agileProjects']['note'] = '';
18        $setup_info['agileProjects']['maintainer'] = array(
19                'name'  => 'Rafael Raymundo da Silva',
20                'email' => 'rafael2000@gmail.com'
21        );
22
23
24        /* The hooks this app includes, needed for hooks registration */
25        $setup_info['agileProjects']['hooks'][] = 'admin';
26
27
28        /* Dependencies for this app to work */
29        $setup_info['agileProjects']['depends'][] = array(
30                'appname' => 'phpgwapi',
31                'versions' => Array('2.0','2.1','2.2','2.3')
32        );
33?>
Note: See TracBrowser for help on using the repository browser.