Skip to content

Commit 3830ecb

Browse files
authored
Support Laravel 12.x (#25)
Support Laravel 12.x: - Added version constraints (`^12.0`) to `illuminate/collections` and 'illuminate/container'. Fixes #24
2 parents ded7c58 + 4dede59 commit 3830ecb

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased](https://github.com/yCodeTech/valet-windows/tree/master)
99

10+
## [3.2.1](https://github.com/yCodeTech/valet-windows/tree/v3.2.0) - 2025-08-03
11+
12+
### Added
13+
14+
- Added support for Laravel 12 in PR [#25](https://github.com/yCodeTech/valet-windows/pull/25).
15+
1016
## [3.2.0](https://github.com/yCodeTech/valet-windows/tree/v3.2.0) - 2025-05-14
1117

1218
This is a large [Release PR](https://github.com/yCodeTech/valet-windows/pull/18) that adds new `php:proxy` and `share-tool` commands, lots of refactoring for improved maintainability, dynamically downloading the latest versions of the required executables from GitHub, and brings a lot of the code inline with macOS Valet. For the full changelog please view the PR commits.

cli/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
/**
44
* @var string $version The version of Laravel Valet Windows.
55
*/
6-
$version = '3.2.0';
6+
$version = '3.2.1';

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
"php": "^7.4|>=8.0",
4040
"composer/ca-bundle": "^1.5",
4141
"guzzlehttp/guzzle": "^7.9",
42-
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0",
43-
"illuminate/container": "^8.0|^9.0|^10.0|^11.0",
42+
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0|^12.0",
43+
"illuminate/container": "^8.0|^9.0|^10.0|^11.0|^12.0",
4444
"mnapoli/silly": "^1.9",
4545
"phpseclib/phpseclib": "^3.0",
4646
"symfony/polyfill-php80": "^1.31",

0 commit comments

Comments
 (0)