From 44d45ccf21ca8111309296f79d2cad1bdae19258 Mon Sep 17 00:00:00 2001 From: ashleyhindle <454975+ashleyhindle@users.noreply.github.com> Date: Thu, 4 Sep 2025 08:23:35 +0000 Subject: [PATCH 1/2] Update CHANGELOG --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 From 81c694b99359ed52b1a0bcd5682b26d5e50af534 Mon Sep 17 00:00:00 2001 From: Ashley Hindle Date: Thu, 4 Sep 2025 10:19:48 +0100 Subject: [PATCH 2/2] fix: package priorities should work on php8.1 --- src/Install/GuidelineComposer.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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); }