nojes/laravel

This package is abandoned and no longer maintained. No replacement package was suggested.

The demo project for learning of Laravel PHP Framework.

Maintainers

Details

github.com/nojes/laravel

Source

Issues

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:project

dev-master 2018-03-21 14:47 UTC

This package is not auto-updated.

Last update: 2021-05-01 10:13:01 UTC


README

Build Status

A demo project for learning of Laravel PHP Framework.

Installation Laravel

Via Laravel Installer

Download Laravel Installer:

composer global require "laravel/installer"

Create new project:

laravel new project-name
Via Composer
composer create-project --prefer-dist laravel/laravel project-name

Installation this project

From your console, run the following commands:

git clone https://github.com/nojes/laravel.git
cd laravel
composer install
cp .env.example .env

or

via composer:

composer create-project --prefer-dist nojes/laravel=@dev laravel

Now modify .env with your details. These are the minimum settings that you need to fill in:

  • DB_CONNECTION, DB_HOST, DB_DATABASE, DB_USERNAME, DB_PASSWORD

After .env has been populated:

php artisan key:generate
php artisan migrate

After install you may run the HTTP-server by serve Artisan command:

php artisan serve