openovate/eden-middleware-htpasswd

Htpassword for the Eve Framework

Installs: 6 327

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Type:plugin

pkg:composer/openovate/eden-middleware-htpasswd

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

This package is not auto-updated.

Last update: 2025-10-12 00:15:10 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 ;)