PHP code example of oscar-ol / laravel-app-versioning
1. Go to this page and download the library: Download oscar-ol/laravel-app-versioning library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
oscar-ol / laravel-app-versioning example snippets
// it returns an instance of PHLAK\SemVer\Version with the current version
Illuminate\Support\Facades\App::make('version');
// or
app()->make('version');
// Print the version
echo app()->make('version')->__toString(); // 1.2.3