| Laurent Laville 2007-07-09, 7:00 pm |
| Laurent Laville a écrit :
> Laurent Laville a écrit :
>
> Forgot to ask, if someone could give me an exhaustive names list of :
> - PEAR Group
> - PEAR Documentation Team
> - PEAR Website Team
> - PEAR QA
>
> because I want to avoid names hard coded into php code, and externalize
> these lists for future releases.
Is someone can tell me if lists below are correct
I've implemented them in recent commit of PEAR_Info getMembers() method
group => PEAR Group
docs => PEAR Documentation Team
website => PEAR Website Team
$members = array(
'president' => array('cellog' => 'Gregory Beaver'),
'group' => array(
'mj' => 'Martin Jansen',
'davidc' => 'David Coallier',
'arnaud' => 'Arnaud Limbourg',
'jeichorn' => 'Joshua Eichorn',
'cweiske' => 'Christian Weiske',
'dufuz' => 'Helgi þormar',
'pmjones' => 'Paul M. Jones',
),
'docs' => array(
'mj' => 'Martin Jansen',
'cox' => 'Thomas V.V.Cox',
'alexmerz' => 'Alexander Merz',
),
'website' => array(
'ssb' => 'Stig Bakken',
'mj' => 'Martin Jansen',
'cox' => 'Thomas V.V.Cox',
'cmv' => 'Colin Viebrock',
'richard' => 'Richard Heyes',
)
);
Thanks in advance
Laurent
|