Skip to content

Commit

Permalink
Merge pull request #2 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 authored Jul 28, 2020
2 parents 02071cc + 1310de3 commit 4b2a840
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
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\\CoinGeckoApi\\": "src/" }
Expand Down

0 comments on commit 4b2a840

Please sign in to comment.