wijourdil/project-setup

This package provides a command to install and configure automatically all the useful packages for a Laravel / Lumen project
392 1
Install
composer require wijourdil/project-setup
Latest Version:3.0.0
PHP:^8.2
License:MIT
Last Updated:Apr 10, 2024
Links: GitHub  ·  Packagist
Maintainer: wijourdil

Latest Version on Packagist GitHub Tests Action Status Total Downloads Packagist PHP Version Support Packagist License gitmoji.dev

🪄 Laravel / Lumen project setup

Setup a new Laravel / Lumen project by installing and configuring all necessary packages.

Installation

composer require wijourdil/project-setup --dev

Laravel

Nothing to do,the package will be discovered automatically.

Lumen

Register the package service provider in your bootstrap/app.php file:

if ($app->environment() !== 'production') {
    $app->register(\Wijourdil\ProjectSetup\ProjectSetupServiceProvider::class);
}

Usage

php artisan project-setup:run

See all available options:

php artisan project-setup:run -h