cartalyst / stripe-laravel

Cartalyst Stripe package integration for Laravel.
BSD 3-Clause "New" or "Revised" License
335 stars 57 forks source link

v13.1.0 -> php8.0, but illuminate/support: ^8.0 isn't php8.0 compatible #73

Closed abuenosvinos closed 3 years ago

abuenosvinos commented 3 years ago

Hi,

I saw that you made stripe-laravel compatible with php8.0, but in the composer.json you are using "illuminate/support": "^8.0", and this version is not compatible with php8.0, so, I can't use your package in php8.0 environments.

Is it possible to fix that?

Thanks for all!

Regards, Antonio

GrahamCampbell commented 3 years ago

What? illuminate/support 6.x, 7.x, 8.x, and 9.x all work fine on PHP 8.0 (verified by automated testing).

abuenosvinos commented 3 years ago

In https://packagist.org/packages/illuminate/support#v8.0.0 you can see that illuminate/support works with php: ^7.3

And when I manage composer with stripe-laravel 13.1.0 I get that: Problem 1

For sure the execution of the code in php8.0 works, but the problems are with the operations with composer because of the dependencies.

I hope I explained well.

Thanks!

GrahamCampbell commented 3 years ago

You're looking at the wrong version. See https://packagist.org/packages/illuminate/support#v8.58.0.

abuenosvinos commented 3 years ago

Ok Graham, so, there will be something in my project. I'll check.

Thanks for your support.