├── .editorconfig ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Config └── version.php ├── Facade.php ├── Provider.php ├── Version.php └── helpers.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/laravel-version/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/laravel-version/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/laravel-version/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | 3 | enabled: 4 | - concat_with_spaces -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/laravel-version/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/laravel-version/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/laravel-version/HEAD/composer.json -------------------------------------------------------------------------------- /src/Config/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/laravel-version/HEAD/src/Config/version.php -------------------------------------------------------------------------------- /src/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/laravel-version/HEAD/src/Facade.php -------------------------------------------------------------------------------- /src/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/laravel-version/HEAD/src/Provider.php -------------------------------------------------------------------------------- /src/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/laravel-version/HEAD/src/Version.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/laravel-version/HEAD/src/helpers.php --------------------------------------------------------------------------------