nojes / laravel
The demo project for learning of Laravel PHP Framework.
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=7.0.0
- barryvdh/laravel-ide-helper: ^2.4
- fideloper/proxy: ~3.3
- laravel/framework: 5.5.*
Requires (Dev)
- barryvdh/laravel-debugbar: ^3.0@dev
- filp/whoops: ~2.0
- fzaninotto/faker: ~1.4
- mockery/mockery: ~1.0
- phpunit/phpunit: ~6.0
This package is not auto-updated.
Last update: 2021-05-01 10:13:01 UTC
README
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