An open API service indexing awesome lists of open source software.

https://github.com/zavalit/laravel_auth_example

Login and Registration Basics in Laravel 4.1
https://github.com/zavalit/laravel_auth_example

Last synced: 4 months ago
JSON representation

Login and Registration Basics in Laravel 4.1

Awesome Lists containing this project

README

          

## Simple Register/Login/Search Laravel Application

#Installation
```sh
#install

php composer.phar install

```

#Configiguration
```php
// app/config/database.php

'default' => 'mysql'

'connections' => array(

...
'mysql' => array(
'driver' => 'mysql',
'host' => '127.0.0.1',
'database' => 'laravel_database',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),

```

# Run Tests
```sh
#phpunit 3.7
phpunit

```