All Projects â†’ Froiden â†’ laravel-installer

Froiden / laravel-installer

Licence: other
Installer for Laravel 5.X

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
Blade
752 projects

Projects that are alternatives of or similar to laravel-installer

pulseaudio-win32
An up-to-date PulseAudio build for Windows with an installer, service, socket support, bug fixes, and new features.
Stars: ✭ 38 (-19.15%)
Mutual labels:  installer
installer-scripts
💻 Bash scripts for doing installations in one go.
Stars: ✭ 17 (-63.83%)
Mutual labels:  installer
ansible-role-fail2ban
Install and configure fail2ban on your system.
Stars: ✭ 42 (-10.64%)
Mutual labels:  installer
web-installer
Web-based installer for Winter CMS
Stars: ✭ 24 (-48.94%)
Mutual labels:  installer
Dark Souls Config Utility
All-in-one installer and configuration UI for various mods/fixes for Dark Soulsâ„¢: Prepare to Die Edition.
Stars: ✭ 27 (-42.55%)
Mutual labels:  installer
EndeavourOS-ISO
EndeavourOS ISO framework based on Arch-ISO
Stars: ✭ 159 (+238.3%)
Mutual labels:  installer
DownloadFullInstaller
macOS application written in SwiftUI that downloads installer pkgs for the Install macOS Big Sur application.
Stars: ✭ 678 (+1342.55%)
Mutual labels:  installer
Squirrel.Windows
An installation and update framework for Windows desktop apps
Stars: ✭ 6,569 (+13876.6%)
Mutual labels:  installer
APK-Installer
An Android Application Installer for Windows
Stars: ✭ 1,076 (+2189.36%)
Mutual labels:  installer
cargo-binstall
Binary installation for rust projects
Stars: ✭ 421 (+795.74%)
Mutual labels:  installer
arch-install
A highly configurable script automatically installing Arch Linux.
Stars: ✭ 32 (-31.91%)
Mutual labels:  installer
platformio-core-installer
PlatformIO Core Installer
Stars: ✭ 53 (+12.77%)
Mutual labels:  installer
dex
docker executables - run applications without installing them or their dependencies
Stars: ✭ 31 (-34.04%)
Mutual labels:  installer
MS-PS-Installer
Automated PowerShell installer for *Nix with multi Distro support.
Stars: ✭ 20 (-57.45%)
Mutual labels:  installer
rawphp
A powerful, robust and API-first, PHP framework that helps people from different PHP backgrounds work on the same project seamlessly. You can write Laravel, CakePHP, Slim, Symphone and Procedural PHP code inside it and it all works perfectly. Its the PHP Framework for everyone.
Stars: ✭ 31 (-34.04%)
Mutual labels:  laravel54
AppMan
A portable AppImage manager that installs, removes, updates and manages software (locally) like APT or Pacman do.
Stars: ✭ 36 (-23.4%)
Mutual labels:  installer
dotget
Installer for .NET Core CLI Apps
Stars: ✭ 35 (-25.53%)
Mutual labels:  installer
Scoop-Core
Shovel. Alternative, more advanced, and user-friendly implementation of windows command-line installer scoop.
Stars: ✭ 174 (+270.21%)
Mutual labels:  installer
SimpleInstaller
Simply installer
Stars: ✭ 18 (-61.7%)
Mutual labels:  installer
dppm
An easy way to install and manage server applications
Stars: ✭ 107 (+127.66%)
Mutual labels:  installer

Laravel Web Installer

Packagist License Total Downloads

Laravel Web installer checks for the following things and install the application in one go.

  1. Check For Server Requirements.
  2. Check For Folders Permissions.
  3. Ability to set database information.
  4. Migrate The Database.
  5. Seed The Tables.

Note:

You need to have .env to the root

Installation

Require this package with composer:

composer require froiden/laravel-installer

After updating composer, add the ServiceProvider to the providers array in config/app.php.

'providers' => [
    Froiden\LaravelInstaller\Providers\LaravelInstallerServiceProvider::class,
];

Usage

Before using this package you need to run :

php artisan vendor:publish --provider="Froiden\LaravelInstaller\Providers\LaravelInstallerServiceProvider"

You will notice additional files and folders appear in your project :

  • config/installer.php : Set the requirements along with the folders permissions for your application to run, by default the array contains the default requirements for a basic Laravel app.
  • public/installer/assets : This folder contains a css folder and inside it you will find a main.css file, this file is responsible for the styling of your installer, you can overide the default styling and add your own.
  • resources/views/vendor/installer : Contains the HTML code for your installer.
  • resources/lang/en/installer_messages.php : This file holds all the messages/text.

Installing your application

  • Install: In order to install your application, go to the /install url and follow the instructions.

Screenshots

Laravel web installer

Credits

RachidLaasri Installer

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].