Skip to content

Commit

Permalink
Merge pull request #1 from codenix-sv/bugs/fix-composer-dependencies
Browse files Browse the repository at this point in the history
Fix: Guzzle didn't work in prod because required only in dev
  • Loading branch information
codenix-sv committed Jul 29, 2020
2 parents 08c8ba2 + aef4481 commit 952fd62
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions composer.json
Expand Up @@ -18,12 +18,11 @@
],
"require": {
"php": "^7.2",
"ext-json": "*"

"ext-json": "*",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"guzzlehttp/guzzle": "~6.0"
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": { "Codenixsv\\BitfinexApi\\": "src/" }
Expand Down

0 comments on commit 952fd62

Please sign in to comment.