1 2 3 4 5 6 7 8 9 10 11 12
<?php namespace Infrastructure; class Version { public static function getGitTag() { $versionFile = base_path('version.txt'); return file_exists($versionFile) ? file_get_contents($versionFile) : exec('git describe --tags'); } }