Skip to content

Commit 854510b

Browse files
committed
Updated readme
1 parent b8a6a5e commit 854510b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ Laravel wrapper for the [ipdata.co](https://ipdata.co) API.
44

55
## Prerequisites
66

7-
Ipdata has a free plan that allows you to do 1,500 requests per day and paid plans if you need more than that. All plans need an API key. You'll have to register on their [website](https://ipdata.co/pricing.html) to get an API key.
7+
Ipdata has a free plan that allows you to make 1,500 requests per day and paid plans if you need more than that. All plans need an API key and you'll have to register on their [website](https://ipdata.co/pricing.html) to get one.
88

99
## Installation
1010

11-
You can install the package via composer:
11+
Install the package via composer:
1212

1313
composer require kielabokkie/laravel-ipdata
1414

15-
If you are on Laravel 5.4 or lower, you should add the following to your `config/app.php`:
15+
If you are on Laravel 5.4 or lower or don't use Laravel's auto discovery, you should add the following to your `config/app.php`:
1616

1717
```php
1818
'providers' => [
@@ -25,6 +25,7 @@ If you are on Laravel 5.4 or lower, you should add the following to your `config
2525
'Ipdata' => Kielabokkie\LaravelIpdata\Facades\Ipdata::class,
2626
)
2727
```
28+
2829
## Config
2930

3031
Next you'll have to copy the package config to your local config with the following command:
@@ -33,7 +34,7 @@ Next you'll have to copy the package config to your local config with the follow
3334
php artisan vendor:publish --provider="Kielabokkie\LaravelIpdata\IpdataServiceProvider"
3435
```
3536

36-
Update your `.env` file with the API key you received from Ipdata:
37+
Update your `.env` file with the API key you got from Ipdata:
3738

3839
```
3940
IPDATA_API_KEY=youkeyhere

0 commit comments

Comments
 (0)