Skip to content

Commit

Permalink
Update README with new class name
Browse files Browse the repository at this point in the history
  • Loading branch information
svenluijten committed Aug 10, 2019
1 parent 982e300 commit c7b1795
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ Or add the package to your dependencies in `composer.json` and run
}
```

Next, add the `EnvServiceProvider` to your `providers` array in `config/app.php`:
Next, add the `ServiceProvider` to your `providers` array in `config/app.php`:

```php
// config/app.php
'providers' => [
...
Sven\EnvProviders\EnvServiceProvider::class,
Sven\EnvProviders\ServiceProvider::class,
];
```

Expand All @@ -45,7 +45,7 @@ You must publish this package's configuration file for it to work properly. To
do so, run the following command:

```bash
$ php artisan vendor:publish --provider="Sven\EnvProviders\EnvServiceProvider"
$ php artisan vendor:publish --provider="Sven\EnvProviders\ServiceProvider"
```

After that, you should see the file `config/providers.php`. In the created
Expand Down

0 comments on commit c7b1795

Please sign in to comment.