forked from gggeek/ezperformancelogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ezinfo.php
19 lines (19 loc) · 810 Bytes
/
ezinfo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
class eZperformanceloggerInfo
{
static function info()
{
return array( 'Name' => "<a href=\"http://projects.ez.no/ezperformancelogger\">ezperformancelogger</a>",
'Version' => "0.9-dev",
'Copyright' => "Copyright (C) 2010-2012 Gaetano Giunta",
'License' => "GNU General Public License v2.0",
'3rdparty_software' =>
array ( 'name' => 'XHProf',
'Version' => '0.9.2',
'copyright' => 'Facebook, Inc.',
'license' => 'Apache License, Version 2.0',
'info_url' => 'http://pecl.php.net/package/xhprof' )
);
}
}
?>