openovate/eden-middleware-htpasswd

Htpassword for the Eve Framework

dev-master 2015-11-10 14:03 UTC

This package is not auto-updated.

Last update: 2024-04-27 16:08:53 UTC


README

HTPASSWD Dialog for the Eve Framework

Build Status Latest Stable Version Total Downloads Latest Unstable Version License

====

Install

composer install eve-php/eve-plugin-htpasswd

====

Usage

  1. Add this in public/index.php towards the top of the bootstrap chain.
//CSRF
->add(Eve\Plugin\Htpasswd\Setup::i()->import(array(
	'admin' => '123',
	'guest' => 'guest'
)))
  1. Done ;)