From b07794ed5344d7979e149b28c9b45c8b0f389acd Mon Sep 17 00:00:00 2001 From: Jeroen Date: Sun, 23 Aug 2020 17:07:18 +0200 Subject: [PATCH] Release 2.5.2 --- changelog.md | 1 + readme.md | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/changelog.md b/changelog.md index e9d378a..3a760b8 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,7 @@ All Notable changes to Packager will be documented in this file. ### Updated - Support for Laravel 7 and PHPUnit 9. +- `packager:new` now also supports separating vendor and name with a forward slash. ## Version 2.4 diff --git a/readme.md b/readme.md index f4d63e3..4549a28 100644 --- a/readme.md +++ b/readme.md @@ -54,6 +54,11 @@ $ php artisan packager:new --i ``` The package will be created interactively, allowing to configure everything in the package's `composer.json`, such as the license and package description. +```bash +$ php artisan packager:new MyVendor/MyPackage +``` +Alternatively you may also define your vendor and name with a forward slash instead of a space. + **Remarks:** The new package will be based on [this custom skeleton](https://github.com/jeroen-g/packager-skeleton). If you want to use a different package skeleton, you can either: - (A) publish the configuration file and change the default skeleton that will be used by all `packager:new` calls.