-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dump dependencies: drop Laravel 10 and PHP 8.1 support #388
Conversation
Just curious what is the issue with |
Not sure tbh... |
This is caused by the way this plugin uses $stubs_generator_command = new GeneratorCommand(
$config,
$fake_filesystem,
- ViewFactoryProvider::get(),
+ $app->make('view')
); But there are some more issues, also caused by |
@alies-dev checkin to see how its going and if I'd be able to help. I tried to pull in your branch but psalm crashes with "event loop is already running" |
fixes: Psalm requires a PHP version ">= 8.3.16". You are running 8.3.6.
…ns only fixes an issues with undefined `$factory` property
Hey @tm1000 Thanks for checking in! Your interest actually helps validate that this plugin is still relevant to the community. I've been wondering about its place given Larastan's inclusion in Laravel's default stack. I'm planning to spend some time on the plugin this weekend. If you're interested in contributing, I'll share some easy-wins we can solve together. WDYT? Having active contributors would definitely help maintain momentum on this project. 🤍 |
factory handler will be fixed in next PRs
This ensures that the view system is ready before IdeHelperServiceProvider tries to register its views, resolving the "View [helper] not found" error in both local and CI environments.
avoid deprecation notes on CI
deprecations from other packages breaks tests by adding output to console
Drop Laravel 10 to focus on limited resources for better Laravel 11 support.
Closes #387