]>
Commit | Line | Data |
---|---|---|
51912257 MG |
1 | Plack-Middleware-Auth-Complex version 0.001 |
2 | =========================================== | |
12aa0bc6 MG |
3 | |
4 | AuthComplex is an authentication system for Plack applications that | |
5 | allows user registration, password changing and password reset. | |
6 | ||
7 | AuthComplex sets REMOTE_USER if the request includes correct basic | |
8 | authentication and intercepts POST requests to some configurable URLs. | |
51912257 | 9 | It also sets $env->{authcomplex} to itself before passing the request. |
12aa0bc6 MG |
10 | |
11 | INSTALLATION | |
12 | ||
13 | To install this module type the following: | |
14 | ||
15 | perl Makefile.PL | |
16 | make | |
17 | make test | |
18 | make install | |
19 | ||
20 | DEPENDENCIES | |
21 | ||
22 | This module requires these other modules and libraries: | |
23 | ||
24 | * Authen::Passphrase | |
25 | * Bytes::Random::Secure | |
26 | * DBI + DBD::SQLite | |
27 | * Email::Simple | |
28 | * Plack | |
51912257 | 29 | * Tie::Hash::Expire |
12aa0bc6 MG |
30 | |
31 | COPYRIGHT AND LICENCE | |
32 | ||
33 | Copyright (C) 2015 by Marius Gavrilescu | |
34 | ||
35 | This library is free software; you can redistribute it and/or modify | |
36 | it under the same terms as Perl itself, either Perl version 5.20.1 or, | |
37 | at your option, any later version of Perl 5 you may have available. | |
38 | ||
39 |