wijourdil / project-setup by wijourdil

This package provides a command to install and configure automatically all the useful packages for a Laravel / Lumen project
388
1
1
Package Data
Maintainer Username: wijourdil
Maintainer Contact: wijourdil@protonmail.com (Wilfried Jourdil)
Package Create Date: 2022-02-16
Package Last Update: 2024-04-10
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-23 03:04:20
Package Statistics
Total Downloads: 388
Monthly Downloads: 1
Daily Downloads: 0
Total Stars: 1
Total Watchers: 1
Total Forks: 0
Total Open Issues: 6

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