Skip to content

Commit 6478bcd

Browse files
authored
Update README.md
1 parent e89abfa commit 6478bcd

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,11 @@ Add the following to your `providers` array in `config/app.php`:
3939
```php
4040
'providers' => [
4141
// ...
42-
4342
RakibDevs\Weather\WeatherServiceProvider::class,
4443
],
4544
'aliases' => [
46-
//...
47-
'Weather' => RakibDevs\Weather\Weather::class,
45+
//...
46+
'Weather' => RakibDevs\Weather\Weather::class,
4847
];
4948

5049

@@ -56,10 +55,10 @@ Publish the required package configuration file using the artisan command:
5655
$ php artisan vendor:publish
5756
```
5857
Edit the `config/openweather.php` file and modify the `api_key` value with your Open Weather Map api key.
59-
```
58+
```php
6059
return [
61-
'api_key' => 'ae9f7b6a0cfc2563ec1d24f3c267ad42',
62-
'lang' => 'en',
60+
'api_key' => 'ae9f7b6a0cfc2563ec1d24f3c267ad42',
61+
'lang' => 'en',
6362
'date_format' => 'm/d/Y',
6463
'time_format' => 'h:i A',
6564
'day_format' => 'l',

0 commit comments

Comments
 (0)