Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.44 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.44 KB

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