megaads/prevent-ip

There is no license information available for the latest version (1.1.1) of this package.

1.1.1 2022-04-15 08:22 UTC

This package is auto-updated.

Last update: 2024-04-15 13:05:43 UTC


README

Prevent Ip in Laravel 4

Installation

  1. Require the composer package

    composer require megaads/prevent-ip

  2. Register the provider:

    Megaads\PreventIp\PreventIpServiceProvider

  3. Add file prevent-ip.php in config:

    return [
        'enable' => true,
        'prevent_paths' => [
            'system/home'
        ],
        'allow_ips' => [
            '127.0.0.1'
        ],
        'email_receive_request' => 'author@gmail.com',
        'email_service_user' => 'abc@example.com',
        'email_service_password' => 'xxx',
        'email_service_url' => 'http://example.com/',
    ];```