From aa50900f12b37a46da2764ec34e9d5b916416088 Mon Sep 17 00:00:00 2001 From: Jasper Tey Date: Tue, 5 Dec 2023 10:27:09 -0500 Subject: [PATCH] Update dependencies, namely larastan. --- CHANGELOG.md | 10 +++++++--- composer.json | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af7d478..413d142 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,11 @@ All notable changes to `laravel-ddd` will be documented in this file. -## [0.8.0] - 2023-11-12 -### BREAKING -- The default domain model stub `model.php.stub` has changed. If stubs were published prior to this release, you may have to delete and re-publish; unless the published `model.php.stub` has been entirely customized with independent logic for your respective application. +## [0.8.1] - 2023-12-05 +### Chore +- Update dependencies. +## [0.8.0] - 2023-11-12 ### Changed - Implement proper support for custom base models when using `ddd:model`: - If the configured `ddd.base_model` exists (evaluated using `class_exists`), base model generation is skipped. @@ -19,6 +20,9 @@ All notable changes to `laravel-ddd` will be documented in this file. ### Chore - Update composer dependencies. +### BREAKING +- The default domain model stub `model.php.stub` has changed. If stubs were published prior to this release, you may have to delete and re-publish; unless the published `model.php.stub` has been entirely customized with independent logic for your respective application. + ## [0.7.0] - 2023-10-22 ### Added - Formal support for subdomains (nested domains). For example, to generate model `Domain\Reporting\Internal\Models\InvoiceReport`, the domain argument can be specified with dot notation: `ddd:model Reporting.Internal InvoiceReport`. Specifying `Reporting/Internal` or `Reporting\\Internal` will also be accepted and normalized to dot notation internally. diff --git a/composer.json b/composer.json index 49a48f4..080d893 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "require-dev": { "laravel/pint": "^1.0", "nunomaduro/collision": "^6.0|^7.0", - "nunomaduro/larastan": "^2.0.1", + "larastan/larastan": "^2.0.1", "orchestra/testbench": "^7|^8", "pestphp/pest": "^1.22|^2.0", "pestphp/pest-plugin-laravel": "^1.1|^2.0",