|
52 | 52 | 'services' => [ |
53 | 53 |
|
54 | 54 | 'maxmind_database' => [ |
55 | | - 'class' => \Torann\GeoIP\Services\MaxMindDatabase::class, |
| 55 | + 'class' => \InteractionDesignFoundation\GeoIP\Services\MaxMindDatabase::class, |
56 | 56 | 'database_path' => storage_path('app/geoip.mmdb'), |
57 | 57 | 'update_url' => sprintf('https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key=%s&suffix=tar.gz', env('MAXMIND_LICENSE_KEY')), |
58 | 58 | 'locales' => ['en'], |
59 | 59 | ], |
60 | 60 |
|
61 | 61 | 'maxmind_api' => [ |
62 | | - 'class' => \Torann\GeoIP\Services\MaxMindWebService::class, |
| 62 | + 'class' => \InteractionDesignFoundation\GeoIP\Services\MaxMindWebService::class, |
63 | 63 | 'user_id' => env('MAXMIND_USER_ID'), |
64 | 64 | 'license_key' => env('MAXMIND_LICENSE_KEY'), |
65 | 65 | 'locales' => ['en'], |
66 | 66 | ], |
67 | 67 |
|
68 | 68 | 'ipapi' => [ |
69 | | - 'class' => \Torann\GeoIP\Services\IPApi::class, |
| 69 | + 'class' => \InteractionDesignFoundation\GeoIP\Services\IPApi::class, |
70 | 70 | 'secure' => true, |
71 | 71 | 'key' => env('IPAPI_KEY'), |
72 | 72 | 'continent_path' => storage_path('app/continents.json'), |
73 | 73 | 'lang' => 'en', |
74 | 74 | ], |
75 | 75 |
|
76 | 76 | 'ipgeolocation' => [ |
77 | | - 'class' => \Torann\GeoIP\Services\IPGeoLocation::class, |
| 77 | + 'class' => \InteractionDesignFoundation\GeoIP\Services\IPGeoLocation::class, |
78 | 78 | 'secure' => true, |
79 | 79 | 'key' => env('IPGEOLOCATION_KEY'), |
80 | 80 | 'continent_path' => storage_path('app/continents.json'), |
81 | 81 | 'lang' => 'en', |
82 | 82 | ], |
83 | 83 |
|
84 | 84 | 'ipdata' => [ |
85 | | - 'class' => \Torann\GeoIP\Services\IPData::class, |
| 85 | + 'class' => \InteractionDesignFoundation\GeoIP\Services\IPData::class, |
86 | 86 | 'key' => env('IPDATA_API_KEY'), |
87 | 87 | 'secure' => true, |
88 | 88 | ], |
89 | 89 |
|
90 | 90 | 'ipfinder' => [ |
91 | | - 'class' => \Torann\GeoIP\Services\IPFinder::class, |
| 91 | + 'class' => \InteractionDesignFoundation\GeoIP\Services\IPFinder::class, |
92 | 92 | 'key' => env('IPFINDER_API_KEY'), |
93 | 93 | 'secure' => true, |
94 | 94 | 'locales' => ['en'], |
|
124 | 124 | | |
125 | 125 | */ |
126 | 126 |
|
127 | | - 'cache_tags' => ['torann-geoip-location'], |
| 127 | + 'cache_tags' => ['laravel-geoip-location'], |
128 | 128 |
|
129 | 129 | /* |
130 | 130 | |-------------------------------------------------------------------------- |
|
0 commit comments