Package Data | |
---|---|
Maintainer Username: | GTCrais |
Maintainer Contact: | tomislav@gtcrais.net (Tomislav Modrić) |
Package Create Date: | 2017-04-12 |
Package Last Update: | 2017-10-08 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-06 03:13:07 |
Package Statistics | |
---|---|
Total Downloads: | 118 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This is a simple bootstrapping package for Laravel 5.4+ (it may work on 5.3 but it hasn't been tested) designed around my personal preferences, so it might not suit everyone, but you are welcome to fork it and adjust it to your needs.
Use this package exclusively on a fresh Laravel installation, as it will rewrite config options in app.php
and database.php
.
localdev
environment files (/config.localdev/...
)env()
calls in /config/app.php
and /config/database.php
with strings (the latter being fully overwritten)/bootstrap/env.php
file and deletes .env
file, effectively disposing of DotEnv
usage in your application.Use exclusively on a fresh Laravel installation.
"gtcrais/laravel-app-bootstrap": "1.3.*"
to your composer.json
and run composer update
GTCrais\LaravelAppBootstrap\LaravelAppBootstrapServiceProvider::class,
to providers array in /config/app.php
php artisan lab:setup
Your application is now set up, and using localdev
environment.
MySQL
on localhost
, port 3306
. If this is not the case, after bootstrapping
you'll need to adjust your database config options and manually create the database..env
file obviously breaks php artisan key:generate
command, Laravel App Bootstrap
provides a substitution: lab:key-generate
Laravel App Bootstrap is open-sourced software licensed under the MIT license.