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
- Host: GitHub
- URL: https://github.com/zavalit/laravel_auth_example
- Owner: zavalit
- Created: 2014-05-18T16:04:27.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-21T06:23:13.000Z (over 11 years ago)
- Last Synced: 2023-08-04T14:22:19.544Z (over 2 years ago)
- Language: PHP
- Size: 176 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Contributing: CONTRIBUTING.md
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
```