root/trunk/jaws/Package.php

Revision 7816, 2.9 kB (checked in by afz, 10 months ago)

update my email, name

Line 
1 <?php
2 /**
3  * (PEAR) Package configuration file to define authors, version, description,
4  * license and dependencies of Jaws (NOT of all gadgets!)
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * @category   PackageConfig
21  * @package    Jaws
22  * @author     Pablo Fischer <pablo@pablo.com.mx>
23  * @copyright  2007-2008 Jaws Development Group
24  * @license    http://www.gnu.org/copyleft/lesser.html
25  */
26 $currDir = dirname(__FILE__);
27 //Get Jaws version constant
28 $versionPath = $currDir . DIRECTORY_SEPARATOR . 'html'
29 . DIRECTORY_SEPARATOR . 'include'
30 . DIRECTORY_SEPARATOR . 'Jaws'
31 . DIRECTORY_SEPARATOR . 'Version.php';
32
33 require_once $versionPath;
34 //Build long description
35 $desc = <<<EOT
36 Jaws is a Framework and Content Management System for building dynamic web sites.
37
38 It aims to be User Friendly giving ease of use and lots of ways to customize web sites, but at the same time is Developer Frendly, it offers a simple and powerful framework to hack your own modules. Jaws is Free Software under the LGPL for core parts and GPL for the rest.
39 EOT;
40
41 //developer, contributor
42 $info = array('name'    => 'Jaws',
43               'desc'    => $desc,
44               'version' => JAWS_VERSION,
45               'license' => 'LGPL',
46               'authors' => array(array('lead', 'ion', 'Jonathan Hernandez', 'ion@suavizado.com'),
47                                  array('lead', 'pfischer', 'Pablo Fischer', 'pablo@pablo.com.mx'),
48                                  array('lead', 'afz', 'Ali Fazelzadeh', 'afz@php.net'),
49                                  array('developer', 'dufuz', 'Helgi Thormar', 'dufuz@php.net'),
50                                  array('developer', 'imcks8', 'Ivan Chavero', 'imcks8@gluch.org.mx'),
51                                  array('developer', 'meebey', 'Mirco Bauer', 'meebey@meebey.net'),
52                                  array('developer', 'kad', 'Jorge Gallegos', 'kad@blegh.net'),
53                                  array('developer', 'amir', 'Amir Mohammad Saied', 'amir@php.net'),
54                                  array('contributor', 'davidc', 'David Coallier', 'davidc@php.net'),
55                                  array('contributor', 'toxickore', 'Emerson Posadas', 'toxickore@linuxmail.org'),
56                                  ),
57               'deps'    => array(),
58               );
59 ?>
Note: See TracBrowser for help on using the browser.