PHPackages                             angwa/superban - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Security](/categories/security)
4. /
5. angwa/superban

ActiveLibrary[Security](/categories/security)

angwa/superban
==============

This package helps to limit requests and ban suspicious users for a period of time

071PHP

Since Dec 22Pushed 2y ago1 watchersCompare

[ Source](https://github.com/angwa/superban)[ Packagist](https://packagist.org/packages/angwa/superban)[ RSS](/packages/angwa-superban/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Superban
========

[](#superban)

This laravel package helps to limit request and ban suspicious users for a period of time.

Installation and usage
----------------------

[](#installation-and-usage)

This package requires PHP and Laravel installed.

You can install the package via composer:

```
composer require angwa/superban:dev-master
```

Next step is to register our service providers. Simply open `config/app.php` and locate providers section and add `Superban\SuperbanServiceProvider::class,,` Like below

```
'providers' => [
    ...
    Superban\SuperbanServiceProvider::class,
    ...
]

```

### Load Configuration file

[](#load-configuration-file)

Our configuration file is named superban.php and will be created when you run the bash code below

```
php artisan vendor:publish --provider="Superban\SuperbanServiceProvider"
```

You can also copy the code below, create a file named superban.php in the config folder and paste the code below

```
