Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/muetze42/package-init
- Owner: Muetze42
- License: mit
- Created: 2023-10-20T17:23:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-06T08:52:22.000Z (over 1 year ago)
- Last Synced: 2024-12-25T19:44:58.073Z (about 1 month ago)
- Topics: cli, composer-package-builder, console, laravel-package-generator, php
- Language: PHP
- Homepage:
- Size: 159 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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.