diff --git a/CHANGELOG.md b/CHANGELOG.md index 54269d31..7b3f76ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Release Notes -## [Unreleased](https://github.com/laravel/boost/compare/v1.1.1...main) +## [Unreleased](https://github.com/laravel/boost/compare/v1.1.2...main) + +## [v1.1.2](https://github.com/laravel/boost/compare/v1.1.1...v1.1.2) - 2025-09-04 + +### What's Changed + +* feat: add package priority guideline inclusion by [@ashleyhindle](https://github.com/ashleyhindle) in https://github.com/laravel/boost/pull/242 + +**Full Changelog**: https://github.com/laravel/boost/compare/v1.1.1...v1.1.2 ## [v1.1.1](https://github.com/laravel/boost/compare/v1.1.0...v1.1.1) - 2025-09-04 diff --git a/src/Install/GuidelineComposer.php b/src/Install/GuidelineComposer.php index 982542b6..020eb903 100644 --- a/src/Install/GuidelineComposer.php +++ b/src/Install/GuidelineComposer.php @@ -28,12 +28,13 @@ class GuidelineComposer * * @var array */ - protected array $packagePriorities = [ - Packages::PEST->value => [Packages::PHPUNIT->value], - ]; + protected array $packagePriorities; public function __construct(protected Roster $roster, protected Herd $herd) { + $this->packagePriorities = [ + Packages::PEST->value => [Packages::PHPUNIT->value], + ]; $this->config = new GuidelineConfig; $this->guidelineAssist = new GuidelineAssist($roster); }