imrostom / laravel-web-installer
A simple web installer
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
Language:Sass
Requires
- php: ^8.1
- illuminate/support: ^v10.48.2
Requires (Dev)
- phpunit/phpunit: ^10.1
This package is auto-updated.
Last update: 2024-11-13 18:33:07 UTC
README
Laravel Web Installer is a Laravel package that allows you to install your application easily, without having to worry about setting up your environment before starting with the installation process.
Installation
You can install the package via composer:
composer require imrostom/laravel-web-installer
Usage
To publish web installer package assets [This must be required]
php artisan vendor:publish --provider="Imrostom\LaravelWebInstaller\LaravelWebInstallerServiceProvider" --tag="assets"
To publish web installer package config
php artisan vendor:publish --provider="Imrostom\LaravelWebInstaller\LaravelWebInstallerServiceProvider" --tag="config"
To publish web installer package views
php artisan vendor:publish --provider="Imrostom\LaravelWebInstaller\LaravelWebInstallerServiceProvider" --tag="views"
To publish web installer package lang
php artisan vendor:publish --provider="Imrostom\LaravelWebInstaller\LaravelWebInstallerServiceProvider" --tag="lang"
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email rostomali4444@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.