You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,6 +108,22 @@ $config = [
108
108
];
109
109
```
110
110
111
+
#### IPStack
112
+
113
+
To use the ipstack as the driver set the config.
114
+
115
+
Example:
116
+
```php
117
+
$config = [
118
+
'driver' => 'ipstack',
119
+
'ipstack' => [
120
+
'key' => 'YOUR IPSTACK KEY',
121
+
'secure' => true, // (optional) use https
122
+
],
123
+
];
124
+
```
125
+
126
+
111
127
### Laravel
112
128
113
129
To use this package in Laravel, simply update the config file in `config/geoip.php` to get the same effect. The driver can be set using the `GEOIP_DRIVER` env.
0 commit comments