2017 © Pedro Peláez
 

library laravel-installer

Laravel project installer wizard

image

yk/laravel-installer

Laravel project installer wizard

  • Sunday, May 7, 2017
  • by yassine-khachlek
  • Repository
  • 1 Watchers
  • 1 Stars
  • 22 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 3 Versions
  • 5 % Grown

The README.md

Laravel Installer

A Laravel project installer., (*1)

Installation

Install via composer:, (*2)

composer require yk/laravel-installer

And add the service provider in config/app.php:, (*3)

Yk\LaravelInstaller\InstallerProvider::class,

Make sure that a .env.example file exist in your project base path. The installer is using it as a scaffold., (*4)

If you want to use table prefix option, add DB_PREFIX to the .env.example file and change the config/database.php by adding env('DB_PREFIX', '') in the mysql connexion array as follow:, (*5)

...
'mysql' => [
    'driver' => 'mysql',
    'host' => env('DB_HOST', 'localhost'),
    'port' => env('DB_PORT', '3306'),
    'database' => env('DB_DATABASE', 'forge'),
    'username' => env('DB_USERNAME', 'forge'),
    'password' => env('DB_PASSWORD', ''),
    'charset' => 'utf8',
    'collation' => 'utf8_unicode_ci',
    //'prefix' => '', // Old
    'prefix' => env('DB_PREFIX', ''), // Here
    'strict' => true,
    'engine' => null,
],
...

That's all, the installer will be triggered when .env is missing., (*6)

License

GPLv2

Copyright (c) 2016 Yassine Khachlek yassine.khachlek@gmail.com, (*7)

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version., (*8)

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details., (*9)

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA., (*10)

The Versions

07/05 2017

dev-master

9999999-dev https://github.com/yassine-khachlek/laravel-installer

Laravel project installer wizard

  Sources   Download

GPLv2

by Yassine Khachlek

laravel installer install wizard

07/05 2017

1.0.1

1.0.1.0 https://github.com/yassine-khachlek/laravel-installer

Laravel project installer wizard

  Sources   Download

GPLv2

by Yassine Khachlek

laravel installer install wizard

14/11 2016

1.0.0

1.0.0.0 https://github.com/yassine-khachlek/laravel-installer

Laravel project installer wizard

  Sources   Download

GPLv2

by Yassine Khachlek

laravel installer install wizard