jpkleemans/firewall

Easy access control for PHP

dev-master 2015-09-28 14:58 UTC

This package is auto-updated.

Last update: 2019-12-16 16:31:19 UTC


README

License

Easy access control for PHP

This library is currently under development. Things will change. Things will break.

Install

Via Composer

$ composer require jpkleemans/firewall:dev-master

Usage

use Firewall\Adapter\HtaccessAdapter;
use Firewall\Host\IP;

// Create an instance of an adapter that implements the Firewall interface.
$firewall = new HtaccessAdapter('path/to/.htaccess');

// Create an instance of a class that implements the Host interface.
$host = IP::fromString('123.0.0.1');

// Block the host
$firewall->deny($host);

Planned Adapters

  • Htaccess
  • NGINX
  • IIS
  • HHVM
  • lighttpd
  • PSR-7 Middleware

Testing

$ phpspec run