File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,19 +8,19 @@ A Laravel package for managing application versioning.
88You can install the package via composer:
99
1010``` bash
11- composer require yourvendor /laravel-version-manager
11+ composer require Creacoon /laravel-app-versioning
1212```
1313
1414After installing, publish the configuration file:
1515``` bash
16- php artisan vendor:publish --provider=" YourVendor\VersionManager\ServiceProvider " --tag=" config"
16+ php artisan vendor:publish --provider=" Creacoon\AppVersioning\VersionManagerServiceProvider " --tag=" config"
1717```
1818
1919## Usage
2020### Getting the current version
2121``` php
2222// Using the facade
23- use YourVendor\VersionManager \Facades\VersionManager;
23+ use Creacoon\AppVersioning \Facades\VersionManager;
2424
2525$version = VersionManager::getCurrentVersion();
2626
@@ -30,7 +30,7 @@ php artisan version
3030### Setting a new version
3131``` php
3232// Using the facade
33- use YourVendor\VersionManager \Facades\VersionManager;
33+ use Creacoon\AppVersioning \Facades\VersionManager;
3434
3535VersionManager::setVersion('1.2.3');
3636
You can’t perform that action at this time.
0 commit comments