Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/muetze42/package-init

Create a (Laravel) Composer package via cli.
https://github.com/muetze42/package-init

cli composer-package-builder console laravel-package-generator php

Last synced: about 1 month ago
JSON representation

Create a (Laravel) Composer package via cli.

Awesome Lists containing this project

README

        

# (Laravel) Package Init Command

Create a (Laravel) Composer package via cli.

Features:

* Same as `composer init`
* Add different authors (name, email, homepage)
* Add licence file
* Add optional Configuration, Migrations, Routes, View and Language Files for Laravel package

## Install

```bash
composer global require norman-huth/package-init
```

And register command in [Lura](https://github.com/Muetze42/lura):

```bash
lura register norman-huth/package-init
```

## Usage

Run Lura in cli.

```bash
lura
```

---

Many parts of the code were taken from the Composer package by Nils Adermann and Jordi Boggiano.