├── .gitignore ├── README.md ├── composer.json ├── resources └── views │ └── version-comment.blade.php └── src ├── Exception └── CouldNotGetVersionException.php ├── GitVersionHelper.php └── GitVersionServiceProvider.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremby/laravel-git-version/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremby/laravel-git-version/HEAD/composer.json -------------------------------------------------------------------------------- /resources/views/version-comment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremby/laravel-git-version/HEAD/resources/views/version-comment.blade.php -------------------------------------------------------------------------------- /src/Exception/CouldNotGetVersionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremby/laravel-git-version/HEAD/src/Exception/CouldNotGetVersionException.php -------------------------------------------------------------------------------- /src/GitVersionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremby/laravel-git-version/HEAD/src/GitVersionHelper.php -------------------------------------------------------------------------------- /src/GitVersionServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremby/laravel-git-version/HEAD/src/GitVersionServiceProvider.php --------------------------------------------------------------------------------