2017 © Pedro Peláez
 

library phpauth

Easy to use PHP Authentication library

image

cuonic/phpauth

Easy to use PHP Authentication library

  • Tuesday, July 3, 2018
  • by cuonic
  • Repository
  • 8 Watchers
  • 8 Stars
  • 29 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 3 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

PHPAuth

About

PHP 7 compatible library for authenticating users using session cookies., (*1)

Features

  • Login
  • Sign up
  • Activate account
  • Change email address
  • Change password
  • Delete account
  • View active sessions
  • Revoke active session
  • View security logs
  • Logout

Requirements

  • >= php v7.0

Installation

composer require liamjack/phpauth:dev-master, (*2)

Usage

require_once('vendor/autoload.php');

$database = new \PHPAuth\Database\MySQL(
    $db_host,
    $db_user,
    $db_pass,
    $db_name
);

$phpauth = new \PHPAuth\PHPAuth($database);

See also

The Versions

03/07 2018

dev-master

9999999-dev

Easy to use PHP Authentication library

  Sources   Download

MIT

The Requires