laravel
laravel copied to clipboard
Laravel 7 support
I tried to install the version 5.5 package, but it still has the same compatibility problem as the other versions. Has anyone managed to install on the Laravel 7 version?
This is ultimately an issue with the tus-php
package required by vimeo/vimeo-api
i have exactly the same issue as @DanielScapulatempo i've not found a way to get it to install yet
Your upgrade still gives me this error:
Problem 1
- Installation request for vimeo/laravel ^5.5 -> satisfiable by vimeo/laravel[5.5].
- Conclusion: remove symfony/console v5.0.5
- Conclusion: don't install symfony/console v5.0.5
- vimeo/laravel 5.5 requires vimeo/vimeo-api ^3.0.3 -> satisfiable by vimeo/vimeo-api[3.0.3, 3.0.4, 3.0.5].
- vimeo/vimeo-api 3.0.3 requires ankitpokhrel/tus-php ^v1.0.0 -> satisfiable by ankitpokhrel/tus-php[v1.0.0, v1.0.12, v1.0.4, v1.0.5, v1.0.8, v1.0.9, v1.1.0, v1.2.0].
- vimeo/vimeo-api 3.0.4 requires ankitpokhrel/tus-php ^v1.0.0 -> satisfiable by ankitpokhrel/tus-php[v1.0.0, v1.0.12, v1.0.4, v1.0.5, v1.0.8, v1.0.9, v1.1.0, v1.2.0].
- vimeo/vimeo-api 3.0.5 requires ankitpokhrel/tus-php ^v1.0.0 -> satisfiable by ankitpokhrel/tus-php[v1.0.0, v1.0.12, v1.0.4, v1.0.5, v1.0.8, v1.0.9, v1.1.0, v1.2.0].
- ankitpokhrel/tus-php v1.0.0 requires symfony/console ^3.4.11 || ^4.0 -> ...
Try this solution https://github.com/vimeo/vimeo.php/issues/244#issuecomment-598249711
@paul-a-byford still not working.
Same here, this does not work because of the following requirement in vimeo/vimeo-api
: ankitpokhrel/tus-php: ^v1.0.0
.
See https://github.com/vimeo/vimeo.php/issues/244#issuecomment-599386472
Unfortunately, in order not to delay the project, I had to go back to Laravel version 6.x. Anyway I continue to test some solutions given, but without success.
+1
As a temporary fix you can add "ankitpokhrel/tus-php": "dev-symfony-5 as 1.10.0"
to your project composer.json
. This will trick composer into thinking it's installing a tus-php version compatible with what vimeo-php
requires 🔥
Remember to remove it once https://github.com/ankitpokhrel/tus-php/tree/symfony-5 is merged. :-)
@rasmuscnielsen
Thanks for your response. I did a test now and it worked like a charm
Anyway, it looks like a new release with direct support is coming soon https://github.com/ankitpokhrel/tus-php/issues/253
Thanx