laravel
laravel copied to clipboard
Laravel 6.0 support
Any chance you can make this package compatible for Laravel 6 and publish in packagist as soon as you can
Just opened a PR on https://github.com/vimeo/laravel/pull/60
Actually, just bumping the version is not enough. Vimeo/laravel use the package vimeo/vimeo-api that use ankitpokhrel/tus-php locked to version 0.1.0. The problem is, ankitpokhrel/tus-php 0.1.0 require Carbon 1 and not Carbon 2 that is the main requirement of laravel 6
not supported yet. when support laravel6?
@asterism612 after the last PR it should work. Can you please define what's wrong about it?
I still get this
vimeo/laravel 5.4.0 requires illuminate/contracts ^5.8 -> satisfiable by illuminate/contracts[v5.8.0, v5.8.11, v5.8.12, v5.8.14, v5.8.15, v5.8.17, v5.8.18, v5.8.19, v5.8.2, v5.8.20, v5.8.22, v5.8.24, v5.8.27, v5.8.28, v5.8.29, v5.8.3, v5.8.30, v5.8.31, v5.8.32, v5.8.33, v5.8.34, v5.8.35, v5.8.4, v5.8.8, v5.8.9].
I've changed it on https://github.com/vimeo/laravel/blob/76c9cc73317bfe3c41324a9721c35dd3f4af13f9/composer.json#L19 so there should't be a problem.
I can see that, also it's been merged, hasn't it? However, has it been tagged? Because I am using
"vimeo/laravel": "^5.4"
in composer.json file. is that correct? if so, I still get this error!
Oh I see.
@muglug can you please tag and release latest commits on master as 5.4.1 ?
@hassanazimi can you try using dev-master on your composer for now?
can't do that! composer stops working when updating! My whole app upgrade stuck because of this!
Maybe the problem is only on 'how' it was tagged for packagist. I used ... "vimeo/laravel": "dev-master"
and works fine for me until this moment.
Well for me when I use
"vimeo/laravel": "dev-master"
and I run composer update, composer hangs and sticks!
I suggest deleting your composer.lock and try composer install while keeping vimeo/laravel on dev-master as it is.
@muglug can you please tag and release latest commits on master as 5.4.1 ?
Still no support for Laravel 6.
Same problem: - Installation request for vimeo/laravel ^5.4 -> satisfiable by vimeo/laravel[5.4.0]. - Conclusion: remove laravel/framework v6.4.1 - Conclusion: don't install laravel/framework v6.4.1 - vimeo/laravel 5.4.0 requires illuminate/support ^5.8 -> satisfiable by laravel/framework[5.8.x-dev], illuminate/support[5.8.x-dev, v5.8.0, v5.8.11, v5.8.12, v5.8.14, v5.8.15, v5.8.17, v5.8.18, v5.8.19, v5.8.2, v5.8.20, v5.8.22, v5.8.24, v5.8.27, v5.8.28, v5.8.29, v5.8.3, v5.8.30, v5.8.31, v5.8.32, v5.8.33, v5.8.34, v5.8.35, v5.8.4, v5.8.8, v5.8.9].
Is there any issue? Thanks!
@hassanazimi hassanazimi are You found a solution of this problem?
My fix for problem:
in composer.json:
"minimum-stability": "dev", "prefer-stable": true
then
/usr/local/bin/composer require vimeo/laravel:dev-master
@uapixart Thanks your solution worked for me.