feat: Add Support for Filament 3.2+ and Laravel 12#14
Open
latiefdole wants to merge 1 commit intoTappNetwork:mainfrom
Open
feat: Add Support for Filament 3.2+ and Laravel 12#14latiefdole wants to merge 1 commit intoTappNetwork:mainfrom
latiefdole wants to merge 1 commit intoTappNetwork:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What is the problem?
The current package dependencies are constrained to older versions of Filament (e.g.,
^3.0-stable), which prevents its use in projects running on the latest versions of Filament (3.2+) and Laravel (11/12).This PR is the second part of a larger update and is dependent on the corresponding compatibility update for the core
tappnetwork/laravel-surveypackage.How does this PR solve the problem?
This Pull Request updates the
composer.jsonfile to align its dependencies with a modern Filament 3 and Laravel 12 stack.The following changes were made:
^8.2.filament/filamentandfilament/spatie-laravel-translatable-pluginwere updated to^3.2.spatie/laravel-package-toolsdependency was updated to^1.16for better Laravel 12 support.How can this be tested?
This PR must be tested alongside the corresponding PR for
tappnetwork/laravel-survey.composer.json, add therepositoriesentries for both the forkedlaravel-surveyand thisfilament-surveyfork.requiresection, point bothmatt-daneshvar/laravel-surveyandtapp/filament-surveyto their respectivedev-mainbranches from your forks.composer update.Context
This PR should be reviewed and merged in conjunction with the compatibility update for the core
laravel-surveypackage.Related PR: (TappNetwork/laravel-survey#5)