PHPackages                             austinkregel/php-login-advanced - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. austinkregel/php-login-advanced

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

austinkregel/php-login-advanced
===============================

PHP is a login class made simple for all users.

51516[1 issues](https://github.com/austinkregel/php-login-advanced/issues)PHP

Since Dec 23Pushed 9y ago3 watchersCompare

[ Source](https://github.com/austinkregel/php-login-advanced)[ Packagist](https://packagist.org/packages/austinkregel/php-login-advanced)[ RSS](/packages/austinkregel-php-login-advanced/feed)WikiDiscussions bootstrap-master Synced 1mo ago

READMEChangelogDependenciesVersions (5)Used By (0)

[![Packagist](https://camo.githubusercontent.com/2dd366689855e2f4ff071321fcdc83d3c83181426bf1ac622ea72cad669c3c22/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f61757374696e6b726567656c2f7068702d6c6f67696e2d616476616e6365642e737667)](https://packagist.org/packages/austinkregel/php-login-advanced)[![Style-CI](https://camo.githubusercontent.com/0ca4fbe77264dfeb622faddaf56ca5024acb6d7210f383e34e9b1b1d689bbf03/68747470733a2f2f7374796c6563692e696f2f7265706f732f32383532373832302f736869656c64)](https://styleci.io/repos/28527820)[![Build Status](https://camo.githubusercontent.com/e6d54fe524455204a2ed08be136db145b5c6b58026c135b6d409a5fe360703a9/68747470733a2f2f7472617669732d63692e6f72672f61757374696e6b726567656c2f7068702d6c6f67696e2d616476616e6365642e7376673f6272616e63683d626f6f7473747261702d6d6173746572)](https://travis-ci.org/austinkregel/php-login-advanced)

Update (01-28-2016)
-------------------

[](#update-01-28-2016)

I wanted to let everyone know that this package is depreciated in support of the [Laravel framework](https://laravel.com). I will offer security updates, when someone files a pull-request or when someone files an issue to make me aware of the issue.

I also want to give anyone who has never used composer a chance to understand the process of setting up this process.

1. First and foremost you'll want to [get composer](https://getcomposer.org/doc/00-intro.md)
2. Once you have composer you'll want to create a `composer.json` file similar to the following in your project directory. ie: if you're creating your website in the directory `/var/www/html/myproject`, than your project root will be that directory. So the file will be located here `/var/www/html/myproject/composer.json`.

```
{
    "name": "YOURNAME/YOURprojectName",
    "description": "Please describe your project here..",
    "authors": [
        {
            "name": "Your Name",
            "email": "youremail@example.com",
            "homepage":"http://example.com",
            "role": "Developer"
        }
    ],
    "require": {
        "php": ">=5.3.7"
    },
    "require-dev": {
        "austinkregel/php-login-advanced": "dev-master"
    },
    "minium-stability": "dev"
}
```

3. Once you have the file created, issue the `composer install` command. Which will then install the desired project. Now we can move onto the creation of the `config.php` file. Which will override the default connections to the database as well as the defaults for ReCaptcha. The default config is recommended to look something like this:

```
