Skip to content

Commit d58e38c

Browse files
authored
Laravel 13.x Compatibility (#487)
1 parent db21c2b commit d58e38c

3 files changed

Lines changed: 23 additions & 9 deletions

File tree

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
php-versions: ['8.3', '8.4']
16+
php-versions: ['8.3', '8.4', '8.5']
1717

1818
steps:
1919
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55

66
## [Unreleased]
77

8+
## [v3.0.0] - 2026-04-06
9+
### Changed
10+
- Requires `northwestern-sysdev/lodash-php` ^4.0.0, which removes the global `__()` function that conflicted with Laravel's `__()` (trans) helper.
11+
- Dropped support for Laravel 8, 9, and 10 (incompatible with PHP ^8.3 and Carbon ^3).
12+
- Dropped support for Symfony Finder ^6.
13+
### Added
14+
- Updated composer requirements to support Laravel 13.
15+
- Added PHP 8.5 to CI test matrix.
16+
817
## [v2.0.0] - 2025-08-29
918
### Changed
1019
- The minimum PHP version is now 8.3.
@@ -232,7 +241,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
232241
## [v0.1.0] - 2021-05-04
233242
- Initial release.
234243

235-
[Unreleased]: https://github.com/NIT-Administrative-Systems/dynamic-forms/compare/v1.1.0...HEAD
244+
[Unreleased]: https://github.com/NIT-Administrative-Systems/dynamic-forms/compare/v3.0.0...HEAD
245+
[v3.0.0]: https://github.com/NIT-Administrative-Systems/dynamic-forms/compare/v2.0.0...v3.0.0
246+
[v2.0.0]: https://github.com/NIT-Administrative-Systems/dynamic-forms/compare/v1.2.2...v2.0.0
247+
[v1.2.2]: https://github.com/NIT-Administrative-Systems/dynamic-forms/compare/v1.2.1...v1.2.2
248+
[v1.2.1]: https://github.com/NIT-Administrative-Systems/dynamic-forms/compare/v1.2.0...v1.2.1
249+
[v1.2.0]: https://github.com/NIT-Administrative-Systems/dynamic-forms/compare/v1.1.0...v1.2.0
236250
[v1.1.0]: https://github.com/NIT-Administrative-Systems/dynamic-forms/compare/v1.0.1...v1.1.0
237251
[v1.0.1]: https://github.com/NIT-Administrative-Systems/dynamic-forms/compare/v1.0.0...v1.0.1
238252
[v1.0.0]: https://github.com/NIT-Administrative-Systems/dynamic-forms/compare/v0.15.1...v1.0.0

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@
2121
"require": {
2222
"php": "^8.3",
2323
"aws/aws-sdk-php": "^3.80|^4",
24-
"illuminate/support": "^8|^9|^10|^11|^12",
25-
"illuminate/validation": "^8|^9|^10|^11|^12",
26-
"illuminate/contracts": "^8|^9|^10|^11|^12",
27-
"illuminate/http": "^8|^9|^10|^11|^12",
28-
"symfony/finder": "^6|^7",
24+
"illuminate/support": "^11|^12|^13",
25+
"illuminate/validation": "^11|^12|^13",
26+
"illuminate/contracts": "^11|^12|^13",
27+
"illuminate/http": "^11|^12|^13",
28+
"symfony/finder": "^7|^8",
2929
"nesbot/carbon": "^3",
3030
"jwadhams/json-logic-php": "^1.4",
31-
"northwestern-sysdev/lodash-php": "^3.0.0"
31+
"northwestern-sysdev/lodash-php": "^4.0.0"
3232
},
3333
"require-dev": {
34-
"orchestra/testbench": "^10",
34+
"orchestra/testbench": "^11",
3535
"phpunit/phpunit": "^11.0",
3636
"php-coveralls/php-coveralls": "^2.4"
3737
},

0 commit comments

Comments
 (0)