denpamusic / php-bitcoinrpc

Fully unit-tested Bitcoin JSON-RPC client based on GuzzleHttp.
MIT License
283 stars 100 forks source link

composer fails due to new Guzzle 7.0.1 with Laravel 7 #55

Closed michaelraasch closed 4 years ago

michaelraasch commented 4 years ago

Describe the bug The latest Laravel version comes with Guzzle 7.0.1 See Guzzle 7 Released Running composer fails with: Your requirements could not be resolved to an installable set of packages.

To Reproduce Run composer require denpa/php-bitcoinrpc with a fresh Laravel 7 installation

Expected behavior Dependency should be met

Logs composer require denpa/php-bitcoinrpc Using version ^2.1 for denpa/php-bitcoinrpc ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved to an installable set of packages.

Problem 1

Installation failed, reverting ./composer.json to its original content.

Environment Describe your runtime environment:

Laravel Framework 7.25.0 PHP 7.3.11 (cli) (built: Jun 5 2020 23:50:40) ( NTS )

denpamusic commented 4 years ago

Hi, sorry for late response and thanks for heads up!

I've bumped Guzzle to 7.0.* and released v2.1.3 of this package, tests with Laravel 7 check out fine now.

This should hopefully fix your issue.

michaelraasch commented 4 years ago

Works. Thanks for the quick turnaround.