version.php 323 B

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