Skip to content

Commit 9b230c9

Browse files
author
gertvanhout
committed
README namespaces fix
1 parent a2e9c5a commit 9b230c9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ A Laravel package for managing application versioning.
88
You 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

1414
After 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

3535
VersionManager::setVersion('1.2.3');
3636

0 commit comments

Comments
 (0)