Show your composer.json
Updating to Laravel 10 with an old Laravel Spark Version
Hello there,
I just tried to update to laravel 10 for one of my side projects. The Project uses Laravel Spark ~2.4 which is not the newest Version but I bought it I think in 2020 and the project back then did not work out. (suprise) It does it's job and currently 99 or 200+ $ are not available because its just a small project.
While trying to update from laravel 9 to 10 composer tells me spark and l10 illuminate/contracts are not compatibel.
Are there any possibilities I can install both versions of illuminate/contracts? Or is my only possibility renewing the laravel spark licence? Thanks in advance!
Root composer.json requires laravel/framework ^10.0.0 -> satisfiable by laravel/framework[v10.0.0].
- laravel/spark-stripe v2.6.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.2, 0.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 laravel/spark-stripe 2.6 -> satisfiable by laravel/spark-stripe[v2.6.0].
It works with an alias.
"laravel/framework": "10.0.0 as 9.52.0",
Maybe not a long term solution but it works until we create our own "spark" pages.
Please or to participate in this conversation.