1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <?php /** * GitPHP version * * Version header * * @author Christopher Han <xiphux@gmail.com> * @copyright Copyright (c) 2008-2010 Christopher Han * @package GitPHP */ /** * Defines the version */ $gitphp_version = "0.2.3"; /** * Defines the app string (app name and version) */ $gitphp_appstring = "gitphp $gitphp_version"; ?> |