I'm following the guide for upgrading from 9.x.x to 10.x.x, and am running into issues when trying to update.
A lot of composer packages depend on illuminate/contracts, and apparently laravel/framework[v10.0.0] replaces these. This is the error I'm facing right now (and it's not just this package, but many others as well):
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires laravel/framework ^10.0 -> satisfiable by laravel/framework[v10.0.0].
- ryangjchandler/laravel-cloudflare-turnstile v0.2.0 requires illuminate/contracts ^9.0 -> satisfiable by illuminate/contracts[v9.0.0, ..., v9.52.0].
- Only one of these can be installed: illuminate/contracts[v6.0.0, ..., v6.20.44, v7.0.0, ..., v7.30.6, v8.0.0, ..., v8.83.27, v9.0.0, ..., v9.52.0, v10.0.0], laravel/framework[v10.0.0]. laravel/framework replaces illuminate/contracts and thus cannot coexist with it.
- Root composer.json requires ryangjchandler/laravel-cloudflare-turnstile ^0.2.0 -> satisfiable by ryangjchandler/laravel-cloudflare-turnstile[v0.2.0].
Do I just have to wait for all these packages to push updates fixing their dependency, or is it a problem on my side?