amberstone / base-install-command
A base installer that can be run either from the command line once imported or you can publish the package and change the checks for the installer.
This package's canonical repository appears to be gone and the package has been frozen as a result.
Requires
- php: ^7.4|^8.0
- ext-pdo: *
- illuminate/console: ^8.0|^9.0
- illuminate/support: ^8.0|^9.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
README
Simple package to check the env file exists and you are able to connect to your MySQL database. Once it can connect, you will be prompted for your user details which will create a user account.
Installation
You can install the package via composer:
composer require amberstone/base-install-command
Usage
There are two usage options
Option 1 (preferred)
To make use of the package, once you ran the above require
command, you can simply run
php artisan base:install
This will run the installer checks and create a user account with the details entered.
Option 2
To publish the files locally do the below:
In your terminal, run php artisan vendor:publish --provider="Amberstone\BaseInstallCommand\BaseInstallCommandServiceProvider"
This will publish the file to your app/Console/Commands
directory
Security
If you discover any security related issues, please email jacques@my-web.me instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.