File manager - Edit - /var/www/payraty/helpdesk/public/storage/branding_media/images/geoip.zip
Back
PK ! ~[8 phpcs.xmlnu ȯ�� <?xml version="1.0"?> <ruleset name="PSR2-package"> <description>The PSR2 standard</description> <!-- use preg_match https://github.com/squizlabs/PHP_CodeSniffer/issues/742#issuecomment-215250517 --> <exclude-pattern>/resources/</exclude-pattern> <exclude-pattern>/vendor/</exclude-pattern> <exclude-pattern>/_[a-zA-Z0-9\._]+\.php</exclude-pattern> <exclude-pattern>/\.[a-zA-Z0-9\._]+\.php</exclude-pattern> <exclude-pattern>\.git</exclude-pattern> <!-- Include the whole PSR2 standard --> <rule ref="PSR2"> <exclude name="PSR1.Methods.CamelCapsMethodName"/> <exclude name="PSR2.Files.EndFileNewline"/> <exclude name="PSR2.Methods.FunctionCallSignature.MultipleArguments"/> <exclude name="Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace"/> </rule> <!-- Lines can be longer --> <rule ref="Generic.Files.LineLength"> <properties> <property name="lineLimit" value="9999"/> </properties> </rule> </ruleset>PK ! d�v� � config/geoip.phpnu ȯ�� <?php return [ /* |-------------------------------------------------------------------------- | Logging Configuration |-------------------------------------------------------------------------- | | Here you may configure the log settings for when a location is not found | for the IP provided. | */ 'log_failures' => true, /* |-------------------------------------------------------------------------- | Include Currency in Results |-------------------------------------------------------------------------- | | When enabled the system will do it's best in deciding the user's currency | by matching their ISO code to a preset list of currencies. | */ 'include_currency' => true, /* |-------------------------------------------------------------------------- | Default Service |-------------------------------------------------------------------------- | | Here you may specify the default storage driver that should be used | by the framework using the services listed below. | */ 'service' => null, /* |-------------------------------------------------------------------------- | Storage Specific Configuration |-------------------------------------------------------------------------- | | Here you may configure as many storage drivers as you wish. | */ 'services' => [ 'maxmind_database' => [ 'class' => \Torann\GeoIP\Services\MaxMindDatabase::class, 'database_path' => storage_path('app/geoip.mmdb'), 'update_url' => sprintf('https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key=%s&suffix=tar.gz', env('MAXMIND_LICENSE_KEY')), 'locales' => ['en'], ], 'maxmind_api' => [ 'class' => \Torann\GeoIP\Services\MaxMindWebService::class, 'user_id' => env('MAXMIND_USER_ID'), 'license_key' => env('MAXMIND_LICENSE_KEY'), 'locales' => ['en'], ], 'ipgeolocation' => [ 'class' => \Torann\GeoIP\Services\IPGeoLocation::class, 'secure' => true, 'key' => env('IPGEOLOCATION_KEY'), 'continent_path' => storage_path('app/continents.json'), 'lang' => 'en', ], 'ipdata' => [ 'class' => \Torann\GeoIP\Services\IPData::class, 'key' => env('IPDATA_API_KEY'), 'secure' => true, ], 'ipfinder' => [ 'class' => \Torann\GeoIP\Services\IPFinder::class, 'key' => env('IPFINDER_API_KEY'), 'secure' => true, 'locales' => ['en'], ], ], /* |-------------------------------------------------------------------------- | Default Cache Driver |-------------------------------------------------------------------------- | | Here you may specify the type of caching that should be used | by the package. | | Options: | | all - All location are cached | some - Cache only the requesting user | none - Disable cached | */ 'cache' => 'all', /* |-------------------------------------------------------------------------- | Cache Tags |-------------------------------------------------------------------------- | | Cache tags are not supported when using the file or database cache | drivers in Laravel. This is done so that only locations can be cleared. | */ 'cache_tags' => ['torann-geoip-location'], /* |-------------------------------------------------------------------------- | Cache Expiration |-------------------------------------------------------------------------- | | Define how long cached location are valid. | */ 'cache_expires' => 30, /* |-------------------------------------------------------------------------- | Default Location |-------------------------------------------------------------------------- | | Return when a location is not found. | */ 'default_location' => [ 'ip' => '127.0.0.0', 'iso_code' => 'US', 'country' => 'United States', 'city' => 'New Haven', 'state' => 'CT', 'state_name' => 'Connecticut', 'postal_code' => '06510', 'lat' => 41.31, 'lon' => -72.92, 'timezone' => 'America/New_York', 'continent' => 'NA', 'default' => true, 'currency' => 'USD', ], ]; PK ! ��� phpstan.neonnu ȯ�� parameters: excludes_analyse: - vendor - resources ignoreErrors: - '#Function config_path not found#' - '#Function config not found#' - '#Instantiated class Monolog\\Logger not found#' - '#Instantiated class Monolog\\Handler\\StreamHandler not found#' - '#Access to constant ERROR on an unknown class Monolog\\Logger#' PK ! ���U� � README.mdnu ȯ�� # GeoIP for Laravel [](https://travis-ci.org/Torann/laravel-geoip) [](https://packagist.org/packages/torann/geoip) [](https://packagist.org/packages/torann/geoip) [](https://www.patreon.com/torann) [](https://gratipay.com/~torann) [](https://flattr.com/profile/torann) [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4CJA2A97NPYVU) Determine the geographical location and currency of website visitors based on their IP addresses. - [GeoIP for Laravel on Packagist](https://packagist.org/packages/torann/geoip) - [GeoIP for Laravel on GitHub](https://github.com/Torann/laravel-geoip) - [Upgrade Guides](http://lyften.com/projects/laravel-geoip/doc/upgrade.html) ## Official Documentation Documentation for the package can be found on [Lyften.com](http://lyften.com/projects/laravel-geoip/). ## Older versions of Laravel - Laravel 5 [version 1.1](https://github.com/Torann/laravel-geoip/tree/1.1) - Laravel 4 [version 0.1.1](https://github.com/Torann/laravel-geoip/tree/0.1.1) ## Contributions Many people have contributed to project since its inception. Thanks to: - [Dwight Watson](https://github.com/dwightwatson) - [nikkiii](https://github.com/nikkiii) - [jeffhennis](https://github.com/jeffhennis) - [max-kovpak](https://github.com/max-kovpak) - [dotpack](https://github.com/dotpack) - [Jess Archer](https://github.com/jessarcher) PK ! �[�uQ Q resources/geoip.mmdbnu ȯ�� � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � ! � "