aboutsummaryrefslogtreecommitdiffhomepage
path: root/infrastructure/Version.php
blob: 9ca794140195b45bc4d769d48e3108b4dfe8d974 (plain) (blame)
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');
    }
}