nckg/laravel-firewall

A small Laravel package to help you block IP addresses from accessing your application
569 4
Install
composer require nckg/laravel-firewall
Latest Version:0.2.0
PHP:^7.4|^8.0
License:MIT
Last Updated:Jun 8, 2021
Links: GitHub  ·  Packagist
Maintainer: nckg

HTML minifier

Build Status Packagist Packagist

Introduction

Very simple package to allow access to your Laravel application by IP.

Installation

You can install the package via composer:

composer require nckg/laravel-firewall

Add the FirewallServiceProvider to you config/app.php file.

// config/app.php
'providers' => [
    ...
    Nckg\Firewall\FirewallServiceProvider::class,
    ...
]

Publish the configuration file to your configuration path:

php artisan vendor:publish --provider="Nckg\Firewall\FirewallServiceProvider"

If you are using Laravel you can add the middleware to your middleware providers

// app/Http/Kernel.php
/**
 * The application's global HTTP middleware stack.
 *
 * @var array
 */
protected $middleware = [
    ...
    \Nckg\Firewall\Middleware\IpAccess::class,
];

Testing

composer test

License

The MIT License (MIT).