protonemedia / laravel-paddle

Paddle.com API integration for Laravel with support for webhooks/events
https://protone.media/en/blog/a-new-laravel-package-to-handle-payments-and-subscriptions-with-paddle
MIT License
203 stars 17 forks source link

Laravel 8 Support #15

Closed pktharindu closed 4 years ago

pktharindu commented 4 years ago

Installing this package on a Laravel 8 project throws this:

image

The problem is kitetail/zttp requires guzzlehttp/guzzle ^6.0 whereas Laravel 8 requires guzzlehttp/guzzle ^7.0.1.

It doesn't look like the kitetail/zttp package is maintained anymore.

https://twitter.com/adamwathan/status/1305644837698449408

Please consider dropping kitetail/zttp in favor of Laravel's baked in HTTP Client: https://laravel.com/docs/8.x/http-client

pascalbaljet commented 4 years ago

Could you try and test this branch:

composer require protonemedia/laravel-paddle:dev-laravel-8.0-http

pascalbaljet commented 4 years ago

Fixed with #16

pktharindu commented 4 years ago

Sorry, I wasn't able to get back to this until today. Everything seems to work fine now. 🚀 Thanks!